@jterrats/open-orchestra 0.3.0 → 0.3.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +3 -4
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.3.1 - 2026-05-06
6
+
7
+ ### Fixed
8
+
9
+ - Moved `chart.js` from `dependencies` to `devDependencies`. It is bundled by esbuild into `dist/assets/web-console.js` at build time and does not need to be installed as a runtime dependency. This resolves an `ERR_INVALID_ARG_TYPE` crash in npm 11 / Node 25 arborist when installing the package.
10
+
5
11
  ## 0.3.0 - 2026-05-06
6
12
 
7
13
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jterrats/open-orchestra",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "orchestra": "bin/orchestra.js"
@@ -27,11 +27,10 @@
27
27
  "eslint": "^10.2.1",
28
28
  "prettier": "^3.8.3",
29
29
  "typescript": "^6.0.3",
30
- "typescript-eslint": "^8.59.0"
31
- },
32
- "dependencies": {
30
+ "typescript-eslint": "^8.59.0",
33
31
  "chart.js": "^4.5.1"
34
32
  },
33
+ "dependencies": {},
35
34
  "description": "Local control plane for AI-assisted development orchestration, evidence gates, and agent workflows.",
36
35
  "repository": {
37
36
  "type": "git",