reasonix 0.25.1 → 0.26.1
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/README.md +106 -68
- package/README.zh-CN.md +107 -69
- package/dist/cli/index.js +1801 -1595
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +125 -10
- package/dist/index.js +697 -492
- package/dist/index.js.map +1 -1
- package/package.json +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reasonix",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.26.1",
|
|
4
4
|
"description": "DeepSeek-native coding agent: cache-first loop, flash-first cost control, tool-call repair.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -30,6 +30,8 @@
|
|
|
30
30
|
"chat": "tsx src/cli/index.ts chat",
|
|
31
31
|
"test": "vitest run",
|
|
32
32
|
"test:watch": "vitest",
|
|
33
|
+
"test:coverage": "vitest run --coverage",
|
|
34
|
+
"test:mutation": "stryker run",
|
|
33
35
|
"lint": "biome check src tests",
|
|
34
36
|
"lint:fix": "biome check --write src tests",
|
|
35
37
|
"format": "biome format --write src tests",
|
|
@@ -79,10 +81,13 @@
|
|
|
79
81
|
},
|
|
80
82
|
"devDependencies": {
|
|
81
83
|
"@biomejs/biome": "^1.9.4",
|
|
84
|
+
"@stryker-mutator/core": "^9.6.1",
|
|
85
|
+
"@stryker-mutator/vitest-runner": "^9.6.1",
|
|
82
86
|
"@types/node": "^22.9.0",
|
|
83
87
|
"@types/picomatch": "^4.0.3",
|
|
84
88
|
"@types/react": "^18.3.12",
|
|
85
89
|
"@types/react-reconciler": "^0.28.9",
|
|
90
|
+
"@vitest/coverage-v8": "^2.1.5",
|
|
86
91
|
"esbuild": "^0.21.5",
|
|
87
92
|
"highlight.js": "^11.10.0",
|
|
88
93
|
"htm": "^3.1.1",
|