@code-insights/cli 3.4.0 → 3.4.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/CHANGELOG.md +6 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@code-insights/cli` will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [3.4.1] - 2026-03-02
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- **Missing `jsonrepair` runtime dependency** — `code-insights dashboard` failed for npm-installed users because `jsonrepair` (used by server LLM response parsing) was in `server/package.json` but not `cli/package.json`.
|
|
10
|
+
|
|
5
11
|
## [3.4.0] - 2026-03-02
|
|
6
12
|
|
|
7
13
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@code-insights/cli",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.1",
|
|
4
4
|
"description": "AI coding session analytics with built-in dashboard",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -73,6 +73,7 @@
|
|
|
73
73
|
"hono": "^4.7.4",
|
|
74
74
|
"inquirer": "^12.6.1",
|
|
75
75
|
"ora": "^8.2.0",
|
|
76
|
+
"jsonrepair": "^3.13.2",
|
|
76
77
|
"posthog-node": "^4.18.0"
|
|
77
78
|
},
|
|
78
79
|
"devDependencies": {
|