-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.17 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "codebase-cli",
"version": "2.0.0-pre.86",
"description": "Codebase CLI — a TypeScript coding agent on the pi-mono runtime. OAuth-aware, any LLM provider, single install.",
"keywords": [
"ai",
"agent",
"cli",
"coding",
"claude",
"openai",
"anthropic",
"developer-tools",
"terminal",
"tui"
],
"homepage": "https://codebase.design",
"bugs": {
"url": "https://github.com/codebase/codebase-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codebase/codebase-cli.git"
},
"license": "MIT",
"author": "Codebase Foundation",
"type": "module",
"bin": {
"codebase": "bin/codebase"
},
"main": "./dist/cli.js",
"files": [
"bin/",
"bench/",
"dist/",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "tsx src/cli.tsx",
"build": "tsc && shx chmod +x dist/cli.js",
"clean": "shx rm -rf dist",
"typecheck": "tsc --noEmit",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"format": "biome format --write src/",
"test": "vitest --run",
"test:watch": "vitest",
"check": "npm run typecheck && npm run lint && npm test",
"bench": "node bench/run.mjs",
"bench:report": "node bench/aggregate.mjs",
"bench:micro": "vitest bench --run",
"smoke:help": "node scripts/help-smoke.mjs",
"smoke:context": "node scripts/context-smoke.mjs",
"smoke:web-build": "node scripts/web-build-smoke.mjs",
"prepublishOnly": "npm run clean && npm run check && npm run build",
"prepack": "npm run build"
},
"dependencies": {
"@agentclientprotocol/sdk": "^1.3.0",
"@earendil-works/pi-agent-core": "0.74.0",
"@earendil-works/pi-ai": "0.74.0",
"@earendil-works/pi-tui": "^0.74.0",
"@types/diff": "^7.0.2",
"@types/proper-lockfile": "^4.1.4",
"diff": "^9.0.0",
"glob": "^13.0.1",
"ignore": "^7.0.0",
"ink": "^5.2.1",
"proper-lockfile": "^4.1.2",
"react": "^18.3.1",
"typebox": "^1.1.24",
"typescript": "^5.9.2"
},
"devDependencies": {
"@biomejs/biome": "2.3.5",
"@types/node": "^22.10.5",
"@types/react": "^18.3.18",
"shx": "^0.4.0",
"tsx": "^4.20.3",
"vitest": "^2.1.8"
}
}