-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 910 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 910 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "@qkunio/browser-cli",
"version": "0.1.2",
"description": "Run and manage local terminal sessions from the browser.",
"private": false,
"type": "module",
"bin": {
"browser-cli": "bin/browser-cli.js"
},
"files": [
"bin",
"server",
"dist",
"favicons",
"README.md",
"package.json"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "cross-env NODE_ENV=development node server/index.js",
"build": "vite build",
"prepack": "npm run build",
"start": "cross-env NODE_ENV=production node server/index.js"
},
"dependencies": {
"express": "^5.2.1",
"node-pty": "^1.1.0-beta34",
"ws": "^8.18.3"
},
"devDependencies": {
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"cross-env": "^10.1.0",
"typescript": "^5.9.3",
"vite": "^7.3.0"
}
}