-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.1 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
{
"name": "cagent",
"version": "1.0.7",
"description": "It writes code, runs it, reads the output, and iterates.",
"license": "MIT",
"author": "stepan.rutz",
"type": "module",
"main": "/dist/agent.js",
"engines": {
"node": ">=22.0.0"
},
"files": [
"dist/",
"package.json"
],
"bin": {
"cagent": "dist/agent.js"
},
"scripts": {
"prepublishOnly": "tsc && chmod +x dist/agent.js",
"build": "tsc && chmod +x dist/agent.js",
"start": "node dist/agent.js",
"dev": "npx tsx src/agent.ts",
"check": "npx tsc --noEmit",
"lint": "npx @biomejs/biome lint ./src",
"format": "npx @biomejs/biome format --write ./src",
"fix": "npx @biomejs/biome check --write ./src",
"install-global": "npm run build && npm link",
"uninstall-global": "npm unlink -g customagent"
},
"devDependencies": {
"@biomejs/biome": "2.4.9",
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"dependencies": {
"@types/react": "^19.2.14",
"ink": "^6.8.0",
"react": "^19.2.4",
"readline": "^1.3.0",
"zod": "^4.3.6"
}
}