reasonix 0.18.1 → 0.19.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reasonix",
3
- "version": "0.18.1",
3
+ "version": "0.19.0",
4
4
  "description": "DeepSeek-native coding agent: cache-first loop, flash-first cost control, tool-call repair.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -19,15 +19,13 @@
19
19
  "dist",
20
20
  "data/deepseek-tokenizer.json.gz",
21
21
  "dashboard/index.html",
22
- "dashboard/app.js",
23
22
  "dashboard/app.css",
24
- "dashboard/codemirror.js",
23
+ "dashboard/dist",
25
24
  "README.md",
26
25
  "LICENSE"
27
26
  ],
28
27
  "scripts": {
29
- "build": "tsup",
30
- "build:cm": "node scripts/bundle-codemirror.mjs",
28
+ "build": "tsup && node scripts/copy-dashboard-vendor-css.mjs",
31
29
  "dev": "tsx src/cli/index.ts",
32
30
  "chat": "tsx src/cli/index.ts chat",
33
31
  "test": "vitest run",
@@ -35,8 +33,8 @@
35
33
  "lint": "biome check src tests",
36
34
  "lint:fix": "biome check --write src tests",
37
35
  "format": "biome format --write src tests",
38
- "typecheck": "tsc --noEmit",
39
- "verify": "npm run lint && npm run typecheck && npm run test --silent",
36
+ "typecheck": "tsc --noEmit && tsc --noEmit -p dashboard",
37
+ "verify": "npm run build && npm run lint && npm run typecheck && npm run test --silent",
40
38
  "prepare": "simple-git-hooks || true",
41
39
  "prepublishOnly": "npm run lint && npm run typecheck && npm run test && npm run build"
42
40
  },
@@ -75,7 +73,6 @@
75
73
  "ink": "^5.1.0",
76
74
  "ink-spinner": "^5.0.0",
77
75
  "ink-text-input": "^6.0.0",
78
- "marked": "^15.0.12",
79
76
  "picomatch": "^4.0.4",
80
77
  "react": "^18.3.1",
81
78
  "string-width": "^7.2.0",
@@ -83,34 +80,19 @@
83
80
  },
84
81
  "devDependencies": {
85
82
  "@biomejs/biome": "^1.9.4",
86
- "@codemirror/autocomplete": "^6.16.0",
87
- "@codemirror/commands": "^6.5.0",
88
- "@codemirror/lang-cpp": "^6.0.2",
89
- "@codemirror/lang-css": "^6.2.1",
90
- "@codemirror/lang-go": "^6.0.1",
91
- "@codemirror/lang-html": "^6.4.9",
92
- "@codemirror/lang-javascript": "^6.2.2",
93
- "@codemirror/lang-json": "^6.0.1",
94
- "@codemirror/lang-markdown": "^6.2.5",
95
- "@codemirror/lang-php": "^6.0.1",
96
- "@codemirror/lang-python": "^6.1.6",
97
- "@codemirror/lang-rust": "^6.0.1",
98
- "@codemirror/lang-sql": "^6.6.4",
99
- "@codemirror/lang-xml": "^6.1.0",
100
- "@codemirror/lang-yaml": "^6.1.1",
101
- "@codemirror/language": "^6.10.1",
102
- "@codemirror/search": "^6.5.6",
103
- "@codemirror/state": "^6.4.1",
104
- "@codemirror/theme-one-dark": "^6.1.2",
105
- "@codemirror/view": "^6.26.0",
106
83
  "@types/node": "^22.9.0",
107
84
  "@types/picomatch": "^4.0.3",
108
85
  "@types/react": "^18.3.12",
109
86
  "esbuild": "^0.21.5",
87
+ "highlight.js": "^11.10.0",
88
+ "htm": "^3.1.1",
89
+ "marked": "^12.0.2",
90
+ "preact": "^10.22.0",
110
91
  "simple-git-hooks": "^2.13.1",
111
92
  "tsup": "^8.3.5",
112
93
  "tsx": "^4.19.2",
113
94
  "typescript": "^5.6.3",
95
+ "uplot": "^1.6.31",
114
96
  "vitest": "^2.1.5"
115
97
  }
116
98
  }