-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.52 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.52 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "pocket-server",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "esbuild src/index.ts src/cli.ts --bundle --platform=node --target=node22 --outdir=dist --format=esm --packages=external --sourcemap",
"build:old": "tsc",
"start": "node dist/index.js",
"run": "tsx src/cli.ts",
"test": "tsx --test src/**/*.test.ts",
"rebuild:native": "npm rebuild node-pty",
"lint": "npx -p @biomejs/biome@2.2.0 biome check --reporter=summary --max-diagnostics=0 ."
},
"engines": {
"node": ">=22.18.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.67.0",
"@hono/node-server": "^1.18.1",
"@hono/node-ws": "^1.0.4",
"@xterm/headless": "^5.5.0",
"chokidar": "^3.6.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"fuzzysort": "^3.1.0",
"hono": "^4.9.0",
"ignore": "^7.0.5",
"jose": "^6.0.12",
"node-pty": "^1.0.0",
"openai": "^5.19.1",
"ws": "^8.18.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/node": "^20.11.17",
"@types/ws": "^8.5.13",
"esbuild": "^0.25.9",
"tsx": "^4.7.1",
"typescript": "^5.8.3"
},
"description": "Server-authoritative Node.js + Hono HTTP/WS server for Pocket Agent",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/yayasoumah/pocket-server.git"
},
"bugs": {
"url": "https://github.com/yayasoumah/pocket-server/issues"
},
"homepage": "https://github.com/yayasoumah/pocket-server#readme"
}