-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.62 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
{
"name": "zcode-acp-server",
"version": "0.1.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-server": "dist/index.js",
"zcode-quota": "dist/bin/quota.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"docs"
],
"scripts": {
"build": "tsc",
"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",
"prepublishOnly": "pnpm run build && pnpm run test"
},
"dependencies": {
"@agentclientprotocol/sdk": "^1.1.0"
},
"peerDependencies": {
"zod": "^3.25.0 || ^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^22.0.0",
"@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"
}
}