-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.51 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.51 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "reasonix",
"version": "0.44.2-rc.4",
"description": "DeepSeek-native coding agent: cache-first loop, flash-first cost control, tool-call repair.",
"type": "module",
"bin": {
"reasonix": "dist/cli/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"data/deepseek-tokenizer.json.gz",
"dashboard/index.html",
"dashboard/app.css",
"dashboard/dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup && node scripts/copy-dashboard-vendor-css.mjs",
"rust:build": "cargo build --release --bin reasonix-render",
"render:versions:sync": "node scripts/sync-render-versions.mjs",
"render:versions:check": "node scripts/sync-render-versions.mjs --check",
"dev:prepare": "node scripts/dev-prepare.mjs",
"dev": "npm run dev:prepare && tsx src/cli/index.ts",
"chat": "npm run dev:prepare && tsx src/cli/index.ts chat",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:mutation": "stryker run",
"lint": "biome check src tests",
"lint:fix": "biome check --write src tests",
"format": "biome format --write src tests",
"typecheck": "tsc --noEmit && tsc --noEmit -p dashboard",
"verify": "npm run render:versions:check && npm run build && npm run lint && npm run typecheck && npm run test --silent",
"prepare": "simple-git-hooks || true",
"prepublishOnly": "npm run render:versions:check && npm run lint && npm run typecheck && npm run test && npm run build"
},
"simple-git-hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run verify"
},
"keywords": [
"agent",
"llm",
"deepseek",
"r1",
"tool-use",
"prompt-cache",
"cli",
"tui"
],
"author": "esengine",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/esengine/DeepSeek-Reasonix.git"
},
"bugs": {
"url": "https://github.com/esengine/DeepSeek-Reasonix/issues"
},
"homepage": "https://github.com/esengine/DeepSeek-Reasonix#readme",
"engines": {
"node": ">=22"
},
"dependencies": {
"cli-highlight": "^2.1.11",
"commander": "^12.1.0",
"eventsource-parser": "^3.0.0",
"ignore": "^7.0.5",
"ink": "^7.0.2",
"ink-text-input": "^6.0.0",
"node-html-parser": "^7.1.0",
"picomatch": "^4.0.4",
"react": "^19.2.6",
"string-width": "^7.2.0",
"undici": "^8.2.0",
"ws": "^8.20.1",
"zod": "^4.4.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@types/node": "^22.9.0",
"@types/picomatch": "^4.0.3",
"@types/react": "^19.2.14",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^2.1.5",
"esbuild": "^0.21.5",
"highlight.js": "^11.10.0",
"htm": "^3.1.1",
"ink-testing-library": "^4.0.0",
"marked": "^15.0.12",
"preact": "^10.22.0",
"simple-git-hooks": "^2.13.1",
"strip-ansi": "^7.1.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"uplot": "^1.6.31",
"vitest": "^2.1.5"
},
"optionalDependencies": {
"@reasonix/render-darwin-arm64": "0.44.2-rc.4",
"@reasonix/render-darwin-x64": "0.44.2-rc.4",
"@reasonix/render-linux-arm64": "0.44.2-rc.4",
"@reasonix/render-linux-x64": "0.44.2-rc.4",
"@reasonix/render-win32-x64": "0.44.2-rc.4"
}
}