-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "tabby-port-knocking",
"version": "1.2.0",
"description": "TCP and UDP port knocking for Tabby SSH profiles",
"keywords": [
"tabby-plugin",
"tabby",
"ssh",
"port-knocking"
],
"main": "dist/index.js",
"typings": "typings/index.d.ts",
"files": [
"dist",
"typings",
"README.md",
"LICENSE"
],
"scripts": {
"build": "webpack --config webpack.config.mjs --progress --color",
"build:typings": "tsc --project tsconfig.typings.json",
"pack:plugin": "npm run build && npm run build:typings && npm pack"
},
"author": "Zypr",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zypr/tabby-port-knocking.git"
},
"bugs": {
"url": "https://github.com/zypr/tabby-port-knocking/issues"
},
"homepage": "https://github.com/zypr/tabby-port-knocking#readme",
"peerDependencies": {
"@angular/common": "^15",
"@angular/core": "^15",
"@angular/forms": "^15",
"tabby-core": "*",
"tabby-settings": "*",
"tabby-ssh": "*",
"tabby-terminal": "*"
},
"devDependencies": {
"@angular/common": "^15.2.10",
"@angular/compiler": "^15.2.10",
"@angular/compiler-cli": "^15.2.10",
"@angular/core": "^15.2.10",
"@angular/forms": "^15.2.10",
"@angular/animations": "^15.2.10",
"@angular/platform-browser": "^15.2.10",
"@angular/platform-browser-dynamic": "^15.2.10",
"@ngtools/webpack": "^15.2.10",
"@ng-bootstrap/ng-bootstrap": "^14.2.0",
"@ngx-translate/core": "^14.0.0",
"@tabby-gang/to-string-loader": "^1.1.7-beta.2",
"@types/node": "^20.3.1",
"apply-loader": "2.0.0",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"pug": "3",
"pug-loader": "^2.4.0",
"rxjs": "^7.8.1",
"sass": "^1.63.4",
"sass-loader": "^13.2.0",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.1",
"tabby-core": "1.0.231-nightly.0",
"tabby-settings": "1.0.231-nightly.0",
"tabby-ssh": "1.0.231-nightly.0",
"tabby-terminal": "1.0.231-nightly.0",
"tslib": "^2.5.0",
"typescript": "4.9.5",
"webpack": "^5.90.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.1.4"
}
}