-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 852 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 852 Bytes
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
{
"name": "webssh-frontend",
"version": "0.0.0",
"private": true,
"description": "Frontend vendor dependencies for webssh. These packages are copied into static/vendor/ by `npm run vendor` and served as static assets. Node is only needed to update vendored assets, never at runtime.",
"scripts": {
"vendor": "node scripts/vendor.js",
"vendor:check": "node scripts/vendor.js --check",
"lint:js": "eslint static/js",
"test:js": "node --test tests/js/*.test.js",
"test:e2e": "playwright test --forbid-only"
},
"dependencies": {
"@highlightjs/cdn-assets": "11.11.2",
"material-icons": "1.13.14",
"socket.io-client": "4.8.3",
"@xterm/addon-fit": "0.11.0",
"@xterm/addon-search": "0.16.0",
"@xterm/xterm": "6.0.0"
},
"devDependencies": {
"eslint": "10.8.1",
"playwright": "^1.62.1"
}
}