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
50 lines (50 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.37 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
{
"name": "simobytedaemontool",
"version": "0.2.0",
"description": "SimoByteDaemon — AI coding tool by Simo",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/simo8902/deepcode-cli.git"
},
"bin": {
"sbdt": "./dist/cli.js"
},
"main": "./dist/cli.js",
"files": [
"dist/cli.js",
"docs/tools/**",
"docs/prompts/**",
"README.md",
"LICENSE"
],
"engines": {
"bun": ">=1.0.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": "bun run typecheck && bun run bundle && bun -e \"require('fs').chmodSync('dist/cli.js', 0o755)\"",
"test": "bun test src/tests/*.test.ts"
},
"dependencies": {
"@hackylabs/deep-redact": "^3.0.5",
"chalk": "^5.6.2",
"ejs": "^5.0.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",
"typescript": "^6.0.3"
}
}