-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.92 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "zcode-acp-server",
"version": "0.38.0",
"description": "Agent Client Protocol (ACP) server bridging headless ZCode to editors like Zed and JetBrains.",
"type": "module",
"license": "Apache-2.0",
"author": "ZCode ACP Server Contributors",
"repository": {
"type": "git",
"url": "https://github.com/william0wang/zcode-acp.git"
},
"homepage": "https://github.com/william0wang/zcode-acp#readme",
"bugs": {
"url": "https://github.com/william0wang/zcode-acp/issues"
},
"keywords": [
"acp",
"agent-client-protocol",
"zed",
"jetbrains",
"coding-agent",
"llm",
"zcode"
],
"bin": {
"zcode-acp": "dist/cli.js",
"zcode-acp-server": "dist/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"assets",
"README.md",
"LICENSE",
"docs"
],
"scripts": {
"build": "tsc && node scripts/write-code-fingerprint.mjs && node dist/remote/hub-upgrade-notify.js",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"format": "prettier --write src",
"lint": "eslint .",
"smoke": "node dist/index.js < /dev/null",
"smoke:tui": "node dist/cli.js tui --check",
"prepublishOnly": "pnpm run build && pnpm run test",
"postinstall": "node dist/remote/hub-upgrade-notify.js 2>/dev/null || true"
},
"dependencies": {
"@agentclientprotocol/sdk": "^1.3.0",
"ws": "^8.21.3",
"zcode-acp-martty": "0.2.39-zcode.3"
},
"peerDependencies": {
"zod": "^3.25.0 || ^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"prettier": "^3.3.0",
"typescript": "^5.4.0",
"vitest": "^2.0.0",
"zod": "^3.25.0"
},
"engines": {
"node": ">=22.0.0"
}
}