-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.95 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
{
"name": "@geallenboy/code-cli",
"version": "4.2.0",
"description": "A minimal CLI programming agent inspired by Claude Code",
"type": "module",
"main": "dist/index.js",
"bin": {
"code-cli": "dist/index.js"
},
"files": [
"dist/",
"src/system-prompt.md",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/ tests/",
"format": "prettier --write src/ tests/",
"format:check": "prettier --check src/ tests/",
"typecheck": "tsc --noEmit",
"check-all": "pnpm run typecheck && pnpm run lint && pnpm test",
"prepublishOnly": "pnpm run check-all && pnpm run build",
"release": "pnpm run prepublishOnly && npm publish --access public"
},
"keywords": [
"cli",
"agent",
"ai",
"programming-assistant"
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.69",
"@ai-sdk/deepseek": "^2.0.29",
"@ai-sdk/google": "^3.0.63",
"@ai-sdk/openai": "^3.0.53",
"@ai-sdk/openai-compatible": "^2.0.41",
"ai": "^6.0.162",
"chalk": "^5.6.2",
"cli-highlight": "^2.1.11",
"diff": "^9.0.0",
"dotenv": "^17.4.2",
"ink": "^7.0.1",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"react": "^19.2.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"fast-check": "^4.6.0",
"ink-testing-library": "^4.0.0",
"prettier": "^3.8.3",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.2",
"vitest": "^4.1.4"
}
}