-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 763 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 763 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
33
34
35
36
37
{
"name": "codeagent",
"version": "0.1.0",
"description": "A terminal-native AI coding agent — describe a goal, watch it build.",
"type": "module",
"bin": {
"codeagent": "./bin/cli.js"
},
"engines": {
"node": ">=22.0.0"
},
"files": [
"bin",
"src",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src test",
"prepublishOnly": "npm run lint && npm test"
},
"dependencies": {
"commander": "^12.0.0",
"ink": "^7.1.1",
"ink-text-input": "^6.0.0",
"react": "^19.2.7",
"zod": "^3.23.0"
},
"devDependencies": {
"eslint": "^9.0.0",
"ink-testing-library": "^4.0.0",
"vitest": "^2.0.0"
},
"license": "MIT"
}