-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 793 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 793 Bytes
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": "@zed-industries/codex-acp-agent",
"version": "0.1.0",
"description": "Codex-powered Agent Client Protocol bridge for Zed IDE",
"type": "module",
"bin": {
"codex-acp-agent": "dist/bin.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc --project tsconfig.json",
"dev": "tsx src/bin.ts",
"test": "vitest run",
"typecheck": "tsc --noEmit --project tsconfig.json"
},
"dependencies": {
"@openai/codex-sdk": "^0.45.0",
"@zed-industries/agent-client-protocol": "^0.4.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^24.1.0",
"tsx": "^4.20.5",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18"
}
}