-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 787 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 787 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
{
"name": "cycode",
"version": "0.1.0",
"description": "Minimal AI coding agent with OpenAI-compatible API",
"type": "module",
"main": "dist/cli.js",
"types": "dist/index.d.ts",
"bin": {
"cycode": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"dev": "tsc && node dist/cli.js",
"test": "npm run build && node --test tests/*.test.mjs"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"glob": "^13.0.6",
"ink": "^5.2.1",
"ink-text-input": "^6.0.0",
"openai": "^4.70.0",
"react": "^18.3.1"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^18.3.31",
"typescript": "^5.6.0"
}
}