-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.08 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
{
"name": "dev-terminal",
"version": "0.1.0",
"description": "Persistent terminal session management for AI assistants",
"type": "module",
"main": "src/index.ts",
"scripts": {
"start-server": "npx tsx scripts/start-server.ts",
"dev": "npx tsx watch scripts/start-server.ts",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"postinstall": "chmod +x node_modules/node-pty/prebuilds/*/spawn-helper 2>/dev/null || true"
},
"lint-staged": {
"*.{js,ts,json,md,yml,yaml}": "prettier --write"
},
"imports": {
"@/*": "./src/*"
},
"dependencies": {
"ansi_up": "^6.0.6",
"express": "^4.21.0",
"node-pty": "^1.0.0",
"ssh2": "^1.17.0",
"strip-ansi": "^7.1.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.0.0",
"@types/ssh2": "^1.15.5",
"@types/ws": "^8.18.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}