@gobing-ai/superskill 0.2.13 → 0.2.14
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/dist/index.js +3767 -2835
- package/package.json +7 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gobing-ai/superskill",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.14",
|
|
4
4
|
"description": "A manager for multi-agent skill, slash command, subagent, hook, MCP and etc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -31,15 +31,16 @@
|
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
33
|
"start": "bun run src/index.ts",
|
|
34
|
-
"build": "bun build src/index.ts --
|
|
35
|
-
"
|
|
34
|
+
"build": "bun build src/index.ts --compile --outfile ../../dist/superskill",
|
|
35
|
+
"build:bundle": "bun build src/index.ts --outfile dist/index.js --target bun && bun run ../../scripts/builder.ts postbuild dist/index.js && rm -rf templates rubrics && cp -r src/templates templates && cp -r ../../packages/core/src/rubrics rubrics",
|
|
36
|
+
"prepublishOnly": "bun run build:bundle && cp ../../README.md README.md",
|
|
36
37
|
"test": "NODE_ENV=test bun test --reporter=dots",
|
|
37
38
|
"typecheck": "tsc --noEmit"
|
|
38
39
|
},
|
|
39
40
|
"dependencies": {
|
|
40
|
-
"@gobing-ai/ts-ai-runner": "
|
|
41
|
-
"@gobing-ai/ts-db": "
|
|
42
|
-
"@gobing-ai/ts-utils": "
|
|
41
|
+
"@gobing-ai/ts-ai-runner": "catalog:",
|
|
42
|
+
"@gobing-ai/ts-db": "catalog:",
|
|
43
|
+
"@gobing-ai/ts-utils": "catalog:",
|
|
43
44
|
"commander": "^14.0.0",
|
|
44
45
|
"drizzle-orm": "^0.44.0",
|
|
45
46
|
"drizzle-zod": "^0.7.0",
|