-
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) · 975 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 975 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": "deepseek-code",
"version": "0.1.0",
"description": "Terminal-native AI coding agent powered by DeepSeek",
"module": "src/index.tsx",
"type": "module",
"private": true,
"license": "MIT",
"scripts": {
"dev": "bun run src/index.tsx",
"build": "bun build src/index.tsx --outdir ./dist --target bun --external react-devtools-core && printf '#!/usr/bin/env bun\\n' | cat - ./dist/index.js > ./dist/tmp && mv ./dist/tmp ./dist/index.js && chmod +x ./dist/index.js",
"typecheck": "tsc --noEmit"
},
"bin": {
"deepseek-code": "./dist/index.js"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^25.3.0",
"react-devtools-core": "^7.0.1"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.31",
"ai": "^6.0.97",
"chalk": "^5.6.2",
"chokidar": "^5.0.0",
"ink": "^6.8.0",
"ora": "^9.3.0",
"react": "^19.2.4",
"zod": "^4.3.6"
}
}