botmux-workflow-core 3.18.0-canary.3 → 3.18.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -54,7 +54,7 @@ Build a real npm tarball from the Botmux checkout:
54
54
 
55
55
  ```bash
56
56
  cd /path/to/botmux
57
- pnpm workflow-core:pack
57
+ bun run workflow-core:pack
58
58
  ```
59
59
 
60
60
  The command prints the absolute `.tgz` path. Install that artifact from the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "botmux-workflow-core",
3
- "version": "3.18.0-canary.3",
3
+ "version": "3.18.0",
4
4
  "description": "Daemon-independent Workflow v3 schema, scheduler, control policy, and host contracts",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -62,10 +62,10 @@
62
62
  ],
63
63
  "scripts": {
64
64
  "build": "node ../../scripts/build-workflow-core-package.mjs",
65
- "test": "pnpm run build && node ../../scripts/test-workflow-core-package.mjs",
66
- "pack:local": "pnpm run build && node ../../scripts/pack-workflow-core-package.mjs",
67
- "prepare": "pnpm run build",
68
- "prepublishOnly": "pnpm run test"
65
+ "test": "npm run build && node ../../scripts/test-workflow-core-package.mjs",
66
+ "pack:local": "npm run build && node ../../scripts/pack-workflow-core-package.mjs",
67
+ "prepare": "npm run build",
68
+ "prepublishOnly": "npm run test"
69
69
  },
70
70
  "publishConfig": {
71
71
  "registry": "https://registry.npmjs.org/",