@ipation/specbridge 2.2.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 +60 -0
- package/README.md +2 -0
- package/dist/cli.js +409 -325
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +147 -542
- package/dist/index.js +203 -108
- package/dist/index.js.map +1 -1
- package/package.json +14 -13
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": [
|
|
@@ -75,23 +75,24 @@
|
|
|
75
75
|
"dependencies": {
|
|
76
76
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
77
77
|
"chalk": "^5.3.0",
|
|
78
|
-
"chokidar": "^
|
|
79
|
-
"commander": "^
|
|
80
|
-
"express": "^
|
|
78
|
+
"chokidar": "^5.0.0",
|
|
79
|
+
"commander": "^14.0.3",
|
|
80
|
+
"express": "^5.2.1",
|
|
81
81
|
"fast-glob": "^3.3.0",
|
|
82
|
-
"minimatch": "^
|
|
83
|
-
"ora": "^
|
|
82
|
+
"minimatch": "^10.1.2",
|
|
83
|
+
"ora": "^9.3.0",
|
|
84
|
+
"pino": "^9.9.5",
|
|
84
85
|
"table": "^6.8.0",
|
|
85
|
-
"ts-morph": "^
|
|
86
|
+
"ts-morph": "^27.0.2",
|
|
86
87
|
"vscode-languageserver": "^9.0.1",
|
|
87
88
|
"vscode-languageserver-textdocument": "^1.0.8",
|
|
88
89
|
"yaml": "^2.4.0",
|
|
89
|
-
"zod": "^3.
|
|
90
|
+
"zod": "^4.3.6"
|
|
90
91
|
},
|
|
91
92
|
"devDependencies": {
|
|
92
93
|
"@eslint/js": "^9.39.2",
|
|
93
|
-
"@types/express": "^
|
|
94
|
-
"@types/node": "^
|
|
94
|
+
"@types/express": "^5.0.6",
|
|
95
|
+
"@types/node": "^25.2.1",
|
|
95
96
|
"@typescript-eslint/eslint-plugin": "^8.54.0",
|
|
96
97
|
"@typescript-eslint/parser": "^8.54.0",
|
|
97
98
|
"@vitest/coverage-v8": "^4.0.18",
|
|
@@ -100,8 +101,8 @@
|
|
|
100
101
|
"husky": "^9.0.0",
|
|
101
102
|
"prettier": "^3.2.0",
|
|
102
103
|
"tsup": "^8.0.0",
|
|
103
|
-
"typedoc": "^0.
|
|
104
|
-
"typescript": "^5.
|
|
104
|
+
"typedoc": "^0.28.16",
|
|
105
|
+
"typescript": "^5.9.3",
|
|
105
106
|
"vitest": "^4.0.18"
|
|
106
107
|
}
|
|
107
108
|
}
|