@swarp/cli 0.1.0 → 0.1.1-rc.36
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/.claude-plugin/plugin.json +1 -1
- package/.mcp.json +1 -1
- package/dist/mcp-server.mjs +45826 -0
- package/package.json +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swarp/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1-rc.36",
|
|
4
4
|
"description": "SWARP agent orchestration platform — CLI, MCP server, generator",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -20,9 +20,12 @@
|
|
|
20
20
|
"hooks/",
|
|
21
21
|
"skills/",
|
|
22
22
|
"bin/",
|
|
23
|
+
"dist/",
|
|
23
24
|
"src/"
|
|
24
25
|
],
|
|
25
26
|
"scripts": {
|
|
27
|
+
"build": "esbuild src/mcp-server/index.mjs --bundle --platform=node --format=esm --outfile=dist/mcp-server.mjs --external:node:* --banner:js=\"import{createRequire}from'module';const require=createRequire(import.meta.url);\"",
|
|
28
|
+
"prepublishOnly": "npm run build",
|
|
26
29
|
"test": "vitest run",
|
|
27
30
|
"test:watch": "vitest"
|
|
28
31
|
},
|
|
@@ -34,6 +37,7 @@
|
|
|
34
37
|
"zod": "^3.23.8"
|
|
35
38
|
},
|
|
36
39
|
"devDependencies": {
|
|
40
|
+
"esbuild": "^0.28.0",
|
|
37
41
|
"vitest": "^2.0.0"
|
|
38
42
|
},
|
|
39
43
|
"repository": {
|