reasonix 0.16.1 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dashboard/app.css +148 -1
- package/dashboard/app.js +226 -0
- package/dist/cli/index.js +537 -280
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +12 -0
- package/dist/index.js +89 -63
- package/dist/index.js.map +1 -1
- package/package.json +113 -110
package/package.json
CHANGED
|
@@ -1,110 +1,113 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "reasonix",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "DeepSeek-native coding agent: cache-first loop, flash-first cost control, tool-call repair.",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"reasonix": "dist/cli/index.js"
|
|
8
|
-
},
|
|
9
|
-
"main": "./dist/index.js",
|
|
10
|
-
"module": "./dist/index.js",
|
|
11
|
-
"types": "./dist/index.d.ts",
|
|
12
|
-
"exports": {
|
|
13
|
-
".": {
|
|
14
|
-
"types": "./dist/index.d.ts",
|
|
15
|
-
"import": "./dist/index.js"
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
"files": [
|
|
19
|
-
"dist",
|
|
20
|
-
"data/deepseek-tokenizer.json.gz",
|
|
21
|
-
"dashboard/index.html",
|
|
22
|
-
"dashboard/app.js",
|
|
23
|
-
"dashboard/app.css",
|
|
24
|
-
"dashboard/codemirror.js",
|
|
25
|
-
"README.md",
|
|
26
|
-
"LICENSE"
|
|
27
|
-
],
|
|
28
|
-
"scripts": {
|
|
29
|
-
"build": "tsup",
|
|
30
|
-
"build:cm": "node scripts/bundle-codemirror.mjs",
|
|
31
|
-
"dev": "tsx src/cli/index.ts",
|
|
32
|
-
"chat": "tsx src/cli/index.ts chat",
|
|
33
|
-
"test": "vitest run",
|
|
34
|
-
"test:watch": "vitest",
|
|
35
|
-
"lint": "biome check src tests",
|
|
36
|
-
"lint:fix": "biome check --write src tests",
|
|
37
|
-
"format": "biome format --write src tests",
|
|
38
|
-
"typecheck": "tsc --noEmit",
|
|
39
|
-
"verify": "npm run lint && npm run typecheck && npm run test --silent",
|
|
40
|
-
"prepare": "simple-git-hooks || true",
|
|
41
|
-
"prepublishOnly": "npm run lint && npm run typecheck && npm run test && npm run build"
|
|
42
|
-
},
|
|
43
|
-
"simple-git-hooks": {
|
|
44
|
-
"pre-commit": "npm run lint",
|
|
45
|
-
"pre-push": "npm run verify"
|
|
46
|
-
},
|
|
47
|
-
"keywords": [
|
|
48
|
-
"agent",
|
|
49
|
-
"llm",
|
|
50
|
-
"deepseek",
|
|
51
|
-
"r1",
|
|
52
|
-
"tool-use",
|
|
53
|
-
"prompt-cache",
|
|
54
|
-
"cli",
|
|
55
|
-
"tui"
|
|
56
|
-
],
|
|
57
|
-
"author": "esengine",
|
|
58
|
-
"license": "MIT",
|
|
59
|
-
"repository": {
|
|
60
|
-
"type": "git",
|
|
61
|
-
"url": "git+https://github.com/esengine/reasonix.git"
|
|
62
|
-
},
|
|
63
|
-
"bugs": {
|
|
64
|
-
"url": "https://github.com/esengine/reasonix/issues"
|
|
65
|
-
},
|
|
66
|
-
"homepage": "https://github.com/esengine/reasonix#readme",
|
|
67
|
-
"engines": {
|
|
68
|
-
"node": ">=20.10"
|
|
69
|
-
},
|
|
70
|
-
"dependencies": {
|
|
71
|
-
"commander": "^12.1.0",
|
|
72
|
-
"eventsource-parser": "^3.0.0",
|
|
73
|
-
"
|
|
74
|
-
"ink
|
|
75
|
-
"ink-
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
"@
|
|
83
|
-
"@codemirror/
|
|
84
|
-
"@codemirror/
|
|
85
|
-
"@codemirror/lang-
|
|
86
|
-
"@codemirror/lang-
|
|
87
|
-
"@codemirror/lang-
|
|
88
|
-
"@codemirror/lang-
|
|
89
|
-
"@codemirror/lang-
|
|
90
|
-
"@codemirror/lang-
|
|
91
|
-
"@codemirror/lang-
|
|
92
|
-
"@codemirror/lang-
|
|
93
|
-
"@codemirror/lang-
|
|
94
|
-
"@codemirror/lang-
|
|
95
|
-
"@codemirror/lang-
|
|
96
|
-
"@codemirror/
|
|
97
|
-
"@codemirror/
|
|
98
|
-
"@codemirror/
|
|
99
|
-
"@codemirror/
|
|
100
|
-
"@codemirror/
|
|
101
|
-
"@
|
|
102
|
-
"@
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
|
|
110
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "reasonix",
|
|
3
|
+
"version": "0.17.0",
|
|
4
|
+
"description": "DeepSeek-native coding agent: cache-first loop, flash-first cost control, tool-call repair.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"reasonix": "dist/cli/index.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "./dist/index.js",
|
|
10
|
+
"module": "./dist/index.js",
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"data/deepseek-tokenizer.json.gz",
|
|
21
|
+
"dashboard/index.html",
|
|
22
|
+
"dashboard/app.js",
|
|
23
|
+
"dashboard/app.css",
|
|
24
|
+
"dashboard/codemirror.js",
|
|
25
|
+
"README.md",
|
|
26
|
+
"LICENSE"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "tsup",
|
|
30
|
+
"build:cm": "node scripts/bundle-codemirror.mjs",
|
|
31
|
+
"dev": "tsx src/cli/index.ts",
|
|
32
|
+
"chat": "tsx src/cli/index.ts chat",
|
|
33
|
+
"test": "vitest run",
|
|
34
|
+
"test:watch": "vitest",
|
|
35
|
+
"lint": "biome check src tests",
|
|
36
|
+
"lint:fix": "biome check --write src tests",
|
|
37
|
+
"format": "biome format --write src tests",
|
|
38
|
+
"typecheck": "tsc --noEmit",
|
|
39
|
+
"verify": "npm run lint && npm run typecheck && npm run test --silent",
|
|
40
|
+
"prepare": "simple-git-hooks || true",
|
|
41
|
+
"prepublishOnly": "npm run lint && npm run typecheck && npm run test && npm run build"
|
|
42
|
+
},
|
|
43
|
+
"simple-git-hooks": {
|
|
44
|
+
"pre-commit": "npm run lint",
|
|
45
|
+
"pre-push": "npm run verify"
|
|
46
|
+
},
|
|
47
|
+
"keywords": [
|
|
48
|
+
"agent",
|
|
49
|
+
"llm",
|
|
50
|
+
"deepseek",
|
|
51
|
+
"r1",
|
|
52
|
+
"tool-use",
|
|
53
|
+
"prompt-cache",
|
|
54
|
+
"cli",
|
|
55
|
+
"tui"
|
|
56
|
+
],
|
|
57
|
+
"author": "esengine",
|
|
58
|
+
"license": "MIT",
|
|
59
|
+
"repository": {
|
|
60
|
+
"type": "git",
|
|
61
|
+
"url": "git+https://github.com/esengine/reasonix.git"
|
|
62
|
+
},
|
|
63
|
+
"bugs": {
|
|
64
|
+
"url": "https://github.com/esengine/reasonix/issues"
|
|
65
|
+
},
|
|
66
|
+
"homepage": "https://github.com/esengine/reasonix#readme",
|
|
67
|
+
"engines": {
|
|
68
|
+
"node": ">=20.10"
|
|
69
|
+
},
|
|
70
|
+
"dependencies": {
|
|
71
|
+
"commander": "^12.1.0",
|
|
72
|
+
"eventsource-parser": "^3.0.0",
|
|
73
|
+
"ignore": "^7.0.5",
|
|
74
|
+
"ink": "^5.1.0",
|
|
75
|
+
"ink-spinner": "^5.0.0",
|
|
76
|
+
"ink-text-input": "^6.0.0",
|
|
77
|
+
"picomatch": "^4.0.4",
|
|
78
|
+
"react": "^18.3.1",
|
|
79
|
+
"string-width": "^7.2.0"
|
|
80
|
+
},
|
|
81
|
+
"devDependencies": {
|
|
82
|
+
"@biomejs/biome": "^1.9.4",
|
|
83
|
+
"@codemirror/autocomplete": "^6.16.0",
|
|
84
|
+
"@codemirror/commands": "^6.5.0",
|
|
85
|
+
"@codemirror/lang-cpp": "^6.0.2",
|
|
86
|
+
"@codemirror/lang-css": "^6.2.1",
|
|
87
|
+
"@codemirror/lang-go": "^6.0.1",
|
|
88
|
+
"@codemirror/lang-html": "^6.4.9",
|
|
89
|
+
"@codemirror/lang-javascript": "^6.2.2",
|
|
90
|
+
"@codemirror/lang-json": "^6.0.1",
|
|
91
|
+
"@codemirror/lang-markdown": "^6.2.5",
|
|
92
|
+
"@codemirror/lang-php": "^6.0.1",
|
|
93
|
+
"@codemirror/lang-python": "^6.1.6",
|
|
94
|
+
"@codemirror/lang-rust": "^6.0.1",
|
|
95
|
+
"@codemirror/lang-sql": "^6.6.4",
|
|
96
|
+
"@codemirror/lang-xml": "^6.1.0",
|
|
97
|
+
"@codemirror/lang-yaml": "^6.1.1",
|
|
98
|
+
"@codemirror/language": "^6.10.1",
|
|
99
|
+
"@codemirror/search": "^6.5.6",
|
|
100
|
+
"@codemirror/state": "^6.4.1",
|
|
101
|
+
"@codemirror/theme-one-dark": "^6.1.2",
|
|
102
|
+
"@codemirror/view": "^6.26.0",
|
|
103
|
+
"@types/node": "^22.9.0",
|
|
104
|
+
"@types/picomatch": "^4.0.3",
|
|
105
|
+
"@types/react": "^18.3.12",
|
|
106
|
+
"esbuild": "^0.21.5",
|
|
107
|
+
"simple-git-hooks": "^2.13.1",
|
|
108
|
+
"tsup": "^8.3.5",
|
|
109
|
+
"tsx": "^4.19.2",
|
|
110
|
+
"typescript": "^5.6.3",
|
|
111
|
+
"vitest": "^2.1.5"
|
|
112
|
+
}
|
|
113
|
+
}
|