@ipation/specbridge 2.3.0 → 2.4.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/CHANGELOG.md +28 -0
- package/README.md +2 -0
- package/dist/cli.js +334 -283
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +120 -64
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ipation/specbridge",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.0",
|
|
4
4
|
"description": "Architecture Decision Runtime - Transform architectural decisions into executable, verifiable constraints",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"version:major": "npm version major",
|
|
35
35
|
"docs": "typedoc --out docs/api src/index.ts",
|
|
36
36
|
"docs:serve": "npm run docs && npx http-server docs/api",
|
|
37
|
-
"prepare": "husky
|
|
37
|
+
"prepare": "husky",
|
|
38
38
|
"prepublishOnly": "npm run build"
|
|
39
39
|
},
|
|
40
40
|
"keywords": [
|
|
@@ -81,6 +81,7 @@
|
|
|
81
81
|
"fast-glob": "^3.3.0",
|
|
82
82
|
"minimatch": "^10.1.2",
|
|
83
83
|
"ora": "^9.3.0",
|
|
84
|
+
"pino": "^9.9.5",
|
|
84
85
|
"table": "^6.8.0",
|
|
85
86
|
"ts-morph": "^27.0.2",
|
|
86
87
|
"vscode-languageserver": "^9.0.1",
|