-
Notifications
You must be signed in to change notification settings - Fork 578
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 3.93 KB
/
Copy pathpackage.json
File metadata and controls
135 lines (135 loc) · 3.93 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "webssh2-server",
"version": "5.0.1",
"ignore": [
".gitignore"
],
"bin": {
"webssh2-server": "./dist/index.js"
},
"description": "A Websocket to SSH2 gateway using xterm.js, socket.io, ssh2",
"homepage": "https://github.com/billchurch/WebSSH2",
"keywords": [
"ssh",
"webssh",
"terminal",
"webterminal"
],
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/billchurch/WebSSH2.git"
},
"contributors": [
"Bill Church <wmchurch@gmail.com>"
],
"engines": {
"node": ">= 22"
},
"packageManager": "npm@11.6.4",
"bugs": {
"url": "https://github.com/billchurch/WebSSH2/issues"
},
"files": [
"dist",
"LICENSE",
"README.md",
"ChangeLog.md"
],
"dependencies": {
"basic-auth": "^2.0.1",
"better-sqlite3": "12.9.0",
"body-parser": "^2.2.1",
"debug": "^4.4.3",
"express": "^5.2.1",
"express-session": "^1.18.2",
"jsmasker": "^2.0.0",
"socket.io": "^4.8.1",
"ssh2": "1.17",
"validator": "^13.15.35",
"webssh2_client": "5.1.0",
"zod": "^4.1.12"
},
"scripts": {
"postinstall": "node scripts/postinstall.js",
"prepare:runtime": "node scripts/postinstall.js",
"prestart": "node scripts/prestart.js",
"start": "node dist/index.js",
"lint": "eslint app tests scripts",
"lint:fix": "eslint app tests scripts --fix",
"lint:complexity": "eslint app scripts --config eslint.config.complexity.mjs",
"lint:sonar": "eslint app tests scripts --config eslint.config.sonar.mjs",
"dev": "NODE_ENV=development DEBUG=webssh2:* tsx watch index.ts",
"watch": "npm run dev",
"test": "npm run build && vitest run",
"test:e2e": "npm run build && CONTAINER_RUNTIME=apple ENABLE_E2E_SSH=1 playwright test -c playwright.config.ts tests/playwright",
"test:all": "npm run test && npm run test:e2e",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"check": "npm run lint && npm run typecheck && npm run test:all",
"check:fix": "npm run lint:fix && npm run typecheck && npm run test:all",
"verify": "npm run check",
"e2e:setup": "playwright install --with-deps",
"typecheck": "tsc -p tsconfig.build.json --noEmit",
"build": "tsc -p tsconfig.build.json",
"ci": "npm run test",
"security:audit": "npm audit",
"security:verify-bundle": "tsx scripts/verify-client-bundle.ts",
"hostkeys": "tsx scripts/host-key-seed.ts",
"hostkeys:prod": "node dist/scripts/host-key-seed.js"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@playwright/test": "^1.59.1",
"@types/basic-auth": "^1.1.8",
"@types/better-sqlite3": "^7.6.13",
"@types/debug": "4.1.13",
"@types/express": "^5.0.6",
"@types/express-session": "^1.19.0",
"@types/node": "^24.12.2",
"@types/ssh2": "^1.15.5",
"@types/supertest": "^7.2.0",
"@types/validator": "^13.15.10",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "8.58.2",
"@typescript-eslint/parser": "8.58.2",
"@vitest/coverage-v8": "4.1.9",
"baseline-browser-mapping": "^2.8.32",
"eslint": "9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-sonarjs": "^4.0.3",
"eslint-plugin-unicorn": "^64.0.0",
"supertest": "^7.1.4",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "4.1.9"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"directories": {
"test": "tests"
},
"author": "Bill Church",
"type": "module",
"overrides": {
"socket.io-parser": "4.2.6",
"flatted": "3.4.2",
"picomatch": "4.0.4",
"path-to-regexp": "8.4.0",
"vite": "7.3.5",
"esbuild": "^0.28.1",
"qs": "6.15.2"
},
"optionalDependencies": {
"@rollup/rollup-darwin-arm64": "^4.60.2"
}
}