forked from lessweb/deepcode-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.42 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
{
"name": "@vegamo/deepcode-cli",
"version": "0.1.15",
"description": "Deep Code CLI - Vibe coding for the deepseek-v4 model in your terminal",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/lessweb/deepcode-cli.git"
},
"homepage": "https://deepcode.vegamo.cn",
"bin": {
"deepcode": "./dist/cli.js"
},
"main": "./dist/cli.js",
"files": [
"dist/cli.js",
"docs/tools/**",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.17.0"
},
"scripts": {
"typecheck": "tsc -p ./ --noEmit",
"bundle": "esbuild ./src/cli.tsx --bundle --platform=node --format=esm --target=node18 --outfile=dist/cli.js --banner:js='#!/usr/bin/env node' --jsx=automatic --jsx-import-source=react --packages=external --log-override:empty-import-meta=silent",
"build": "npm run typecheck && npm run bundle && chmod +x dist/cli.js",
"test": "tsx --test src/tests/*.test.ts",
"test:single": "tsx --test",
"prepack": "npm run build"
},
"dependencies": {
"chalk": "^5.6.2",
"gradient-string": "^3.0.0",
"gray-matter": "^4.0.3",
"ignore": "^7.0.5",
"ink": "^7.0.1",
"ink-gradient": "^4.0.0",
"openai": "^6.35.0",
"react": "^19.2.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"esbuild": "^0.28.0",
"tsx": "^4.21.0",
"typescript": "^6.0.3"
}
}