@stablebaseline/cli 0.1.0 → 0.2.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.
- package/dist/sb.js +0 -0
- package/package.json +10 -6
package/dist/sb.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stablebaseline/cli",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "sb — command-line client for Stable Baseline. End-to-end agent-managed company brain (docs, diagrams, plans, Knowledge Graph).
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "sb — command-line client for Stable Baseline. End-to-end agent-managed company brain (docs, diagrams, plans, Knowledge Graph). 179 tools across 18 categories, all exposed at the CLI.",
|
|
5
5
|
"homepage": "https://stablebaseline.io",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
],
|
|
27
27
|
"type": "module",
|
|
28
28
|
"bin": {
|
|
29
|
-
"sb": "
|
|
29
|
+
"sb": "dist/sb.js"
|
|
30
30
|
},
|
|
31
31
|
"files": [
|
|
32
32
|
"dist",
|
|
@@ -36,10 +36,13 @@
|
|
|
36
36
|
"scripts": {
|
|
37
37
|
"build": "tsup src/bin/sb.ts --format esm --dts --clean --shims",
|
|
38
38
|
"dev": "tsx src/bin/sb.ts",
|
|
39
|
-
"prepublishOnly": "npm run build"
|
|
39
|
+
"prepublishOnly": "npm run build",
|
|
40
|
+
"test": "vitest run",
|
|
41
|
+
"test:watch": "vitest",
|
|
42
|
+
"pretest": "npm run build"
|
|
40
43
|
},
|
|
41
44
|
"dependencies": {
|
|
42
|
-
"@stablebaseline/sdk": "^0.
|
|
45
|
+
"@stablebaseline/sdk": "^0.2.0",
|
|
43
46
|
"commander": "^12.1.0",
|
|
44
47
|
"kleur": "^4.1.5",
|
|
45
48
|
"open": "^10.1.0"
|
|
@@ -48,7 +51,8 @@
|
|
|
48
51
|
"tsup": "^8.3.5",
|
|
49
52
|
"tsx": "^4.19.2",
|
|
50
53
|
"typescript": "^5.6.3",
|
|
51
|
-
"@types/node": "^22.10.0"
|
|
54
|
+
"@types/node": "^22.10.0",
|
|
55
|
+
"vitest": "^2.1.8"
|
|
52
56
|
},
|
|
53
57
|
"engines": {
|
|
54
58
|
"node": ">=20"
|