-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 807 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 807 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
{
"name": "cc-bud-qodercli-plugin",
"version": "0.2.1",
"private": true,
"description": "Run Claude Code / Codex on Qoder via the official `qodercli --acp` agent (ACP), using a Qoder CLI login or personal access token.",
"license": "GPL-3.0-only",
"type": "module",
"engines": {
"node": ">=20"
},
"bin": {
"cc-bud-qodercli-plugin": "dist/main.mjs"
},
"scripts": {
"build": "node scripts/build.mjs",
"dev": "node --experimental-strip-types src/main.ts serve",
"test": "npm run build && node --test test/*.test.mjs",
"typecheck": "tsc --noEmit",
"start": "node dist/main.mjs serve"
},
"dependencies": {
"@qoder-ai/qodercli": "^1.1.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"esbuild": "^0.24.0",
"typescript": "^5.6.0"
}
}