-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.5 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.5 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
{
"name": "@mrdistore/ds-code",
"version": "1.1.1",
"description": "AI-powered coding assistant CLI using DeepSeek API",
"type": "module",
"bin": {
"ds-code": "dist/bin/ds-code.js"
},
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx bin/ds-code.tsx",
"build": "tsup",
"prepublishOnly": "pnpm build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qddidi/ds-code.git"
},
"homepage": "https://github.com/qddidi/ds-code#readme",
"keywords": [
"cli",
"ai",
"deepseek",
"coding-assistant"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^20.14.0",
"@types/react": "^19.2.15",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^9.5.0",
"tsup": "^8.1.0",
"tsx": "^4.15.0",
"typescript": "^5.5.0",
"vitest": "^1.6.0"
},
"dependencies": {
"chalk": "^5.6.2",
"cli-highlight": "^2.1.11",
"fast-glob": "3.3.2",
"ink": "^7.0.3",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"marked": "^18.0.3",
"marked-terminal": "^7.3.0",
"react": "^19.2.6",
"readline": "^1.3.0"
}
}