@cardor/agent-harness-kit 1.1.3 → 1.1.5

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 (1) hide show
  1. package/package.json +6 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cardor/agent-harness-kit",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "description": "CLI scaffolding for multi-agent harness systems",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -63,11 +63,13 @@
63
63
  "node": ">=22.5.0"
64
64
  },
65
65
  "scripts": {
66
- "build": "npm run build:ui && tsup && npm run copy-assets",
67
- "build:ui": "cd dashboard && npm install --prefer-offline && npm run build",
66
+ "build": "pnpm run build:ui && tsup && pnpm run copy-assets",
67
+ "build:ui": "cd dashboard && pnpm install --prefer-offline && pnpm run build",
68
68
  "copy-assets": "node scripts/copy-assets.mjs",
69
69
  "dev": "tsup --watch",
70
70
  "test": "node --test --import tsx/esm src/tests/*.test.ts",
71
- "lint": "eslint . --fix"
71
+ "lint": "eslint . --fix",
72
+ "release": "bash scripts/publish.sh",
73
+ "release:dry": "bash scripts/publish.sh --dry-run"
72
74
  }
73
75
  }