@synapsync/cli 0.1.2 → 0.1.4
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 +243 -109
- package/dist/index.js.map +1 -1
- package/package.json +8 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synapsync/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Neural AI Orchestration Platform - CLI for managing AI skills across multiple providers",
|
|
5
5
|
"author": "SynapSync",
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,7 +31,12 @@
|
|
|
31
31
|
"format:check": "prettier --check \"src/**/*.ts\"",
|
|
32
32
|
"typecheck": "tsc --noEmit",
|
|
33
33
|
"prepublishOnly": "npm run typecheck && npm run build && npm test",
|
|
34
|
-
"prepare": "npm run build"
|
|
34
|
+
"prepare": "npm run build",
|
|
35
|
+
"docs:install": "cd website && npm install",
|
|
36
|
+
"docs:start": "cd website && npm start",
|
|
37
|
+
"docs:build": "cd website && npm run build",
|
|
38
|
+
"docs:serve": "cd website && npm run serve",
|
|
39
|
+
"docs:clear": "cd website && npm run clear"
|
|
35
40
|
},
|
|
36
41
|
"engines": {
|
|
37
42
|
"node": ">=20.0.0"
|
|
@@ -54,7 +59,7 @@
|
|
|
54
59
|
"bugs": {
|
|
55
60
|
"url": "https://github.com/synapsync/cli/issues"
|
|
56
61
|
},
|
|
57
|
-
"homepage": "https://synapsync.github.io/
|
|
62
|
+
"homepage": "https://synapsync.github.io/synapsync-cli/",
|
|
58
63
|
"dependencies": {
|
|
59
64
|
"@clack/prompts": "^0.11.0",
|
|
60
65
|
"commander": "^12.1.0",
|