-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.03 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.03 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
{
"name": "sealos-tty-agent",
"type": "module",
"version": "0.0.1",
"private": "true",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "pnpm -C packages/protocol-client run build",
"publish:protocol-client": "cd packages/protocol-client && pnpm publish",
"dev": "node --watch --watch-path=src --experimental-strip-types src/index.ts",
"start": "node --experimental-strip-types src/index.ts",
"lint": "pnpm run build && eslint \"src/**/*.ts\" \"packages/**/*.ts\" --ignore-pattern \"**/*.d.ts\" --ignore-pattern \"**/dist/**\"",
"typecheck": "pnpm run build && tsc --noEmit && pnpm -C packages/protocol-client run typecheck",
"check": "pnpm run lint && pnpm run typecheck"
},
"dependencies": {
"@kubernetes/client-node": "^1.4.0",
"@labring/sealos-tty-client": "workspace:*",
"ws": "^8.19.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@antfu/eslint-config": "^7.2.0",
"@types/node": "^22.13.4",
"@types/ws": "^8.18.1",
"eslint": "^9.39.2",
"eslint-plugin-format": "^1.3.1",
"typescript": "^5.9.3"
}
}