opencode-swarm-plugin 0.12.0 → 0.12.2
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 +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-swarm-plugin",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.2",
|
|
4
4
|
"description": "Multi-agent swarm coordination for OpenCode with learning capabilities, beads integration, and Agent Mail",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -22,7 +22,11 @@
|
|
|
22
22
|
"test:integration": "bun test src/*.integration.test.ts",
|
|
23
23
|
"test:all": "bun test",
|
|
24
24
|
"typecheck": "tsc --noEmit",
|
|
25
|
-
"clean": "rm -rf dist"
|
|
25
|
+
"clean": "rm -rf dist",
|
|
26
|
+
"release": "npm run build && npm version patch && git push && npm run publish:otp",
|
|
27
|
+
"release:minor": "npm run build && npm version minor && git push && npm run publish:otp",
|
|
28
|
+
"release:major": "npm run build && npm version major && git push && npm run publish:otp",
|
|
29
|
+
"publish:otp": "bash -c 'source .env && npm publish --otp=$(op item get $NPM_1P_ITEM --otp)'"
|
|
26
30
|
},
|
|
27
31
|
"dependencies": {
|
|
28
32
|
"@clack/prompts": "^0.11.0",
|