@braingrid/cli 0.2.11 → 0.2.13
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/CHANGELOG.md +33 -0
- package/README.md +61 -0
- package/dist/cli.js +162 -2
- package/dist/cli.js.map +1 -1
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@braingrid/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.13",
|
|
4
4
|
"description": "BrainGrid - Turn thoughts into AI-ready specs. Command-line interface for spec-driven development.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cli.js",
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"commander": "^12.0.0",
|
|
41
41
|
"conf": "13.0.1",
|
|
42
42
|
"node-machine-id": "1.1.12",
|
|
43
|
+
"omelette": "^0.4.17",
|
|
43
44
|
"open": "^10.1.0",
|
|
44
45
|
"zod": "^4.1.11"
|
|
45
46
|
},
|
|
@@ -98,15 +99,14 @@
|
|
|
98
99
|
"format": "prettier --write 'src/**/*.{ts,tsx}'",
|
|
99
100
|
"validate:fix": "pnpm lint:fix && pnpm format && pnpm type-check",
|
|
100
101
|
"type-check": "tsc --noEmit",
|
|
101
|
-
"test": "vitest",
|
|
102
|
+
"test": "vitest run",
|
|
102
103
|
"test:watch": "vitest --watch",
|
|
103
104
|
"test:coverage": "vitest --coverage",
|
|
104
105
|
"test:coverage:ci": "vitest run --coverage",
|
|
105
|
-
"test:all": "vitest run",
|
|
106
106
|
"test:cli": "bash scripts/test-cli.sh",
|
|
107
107
|
"test:cli:verbose": "bash scripts/test-cli.sh --verbose",
|
|
108
108
|
"clean": "rm -rf dist",
|
|
109
|
-
"preversion": "pnpm validate:fix && pnpm test
|
|
109
|
+
"preversion": "pnpm validate:fix && pnpm test",
|
|
110
110
|
"release:patch": "npm version patch && git push && git push --tags",
|
|
111
111
|
"release:minor": "npm version minor && git push && git push --tags",
|
|
112
112
|
"release:major": "npm version major && git push && git push --tags"
|