-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 847 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 847 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
{
"name": "pocketshell",
"version": "1.0.0",
"description": "Multi-mode terminal in your browser — Claude Code, GitHub Copilot, or plain bash",
"license": "MIT",
"main": "server.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "node server.js",
"setup": "bash prerequisites.sh",
"start:remote": "bash pocketshell.sh start --remote",
"start:noauth": "node server.js --no-auth",
"test": "NODE_ENV=test jest",
"test:auth": "NODE_ENV=test jest tests/auth.test.js",
"test:parsers": "NODE_ENV=test jest tests/parsers.test.js",
"test:server": "NODE_ENV=test jest tests/server.test.js"
},
"dependencies": {
"express": "^4.21.0",
"node-pty": "^1.0.0",
"otplib": "^12.0.1",
"qrcode": "^1.5.4",
"ws": "^8.18.0"
},
"devDependencies": {
"jest": "^29.7.0"
}
}