@ipation/specbridge 2.1.0 → 2.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/CHANGELOG.md +96 -0
- package/README.md +1 -1
- package/dist/cli.js +149 -5199
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +181 -7
- package/dist/index.js +1464 -5716
- package/dist/index.js.map +1 -1
- package/package.json +12 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ipation/specbridge",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Architecture Decision Runtime - Transform architectural decisions into executable, verifiable constraints",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"test:integration": "vitest run --config vitest.integration.config.ts",
|
|
24
24
|
"test:coverage": "vitest run --coverage",
|
|
25
25
|
"test:ui": "vitest --ui",
|
|
26
|
-
"lint": "eslint .
|
|
27
|
-
"lint:fix": "eslint . --
|
|
28
|
-
"lint:check": "eslint .
|
|
26
|
+
"lint": "eslint .",
|
|
27
|
+
"lint:fix": "eslint . --fix",
|
|
28
|
+
"lint:check": "eslint .",
|
|
29
29
|
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
30
30
|
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
31
31
|
"type-check": "tsc --noEmit",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"node": ">=18.0.0"
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
76
|
+
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
77
77
|
"chalk": "^5.3.0",
|
|
78
78
|
"chokidar": "^3.6.0",
|
|
79
79
|
"commander": "^12.0.0",
|
|
@@ -89,17 +89,19 @@
|
|
|
89
89
|
"zod": "^3.25.0"
|
|
90
90
|
},
|
|
91
91
|
"devDependencies": {
|
|
92
|
+
"@eslint/js": "^9.39.2",
|
|
92
93
|
"@types/express": "^4.17.0",
|
|
93
94
|
"@types/node": "^20.0.0",
|
|
94
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
95
|
-
"@typescript-eslint/parser": "^
|
|
96
|
-
"@vitest/coverage-v8": "^
|
|
97
|
-
"eslint": "^
|
|
95
|
+
"@typescript-eslint/eslint-plugin": "^8.54.0",
|
|
96
|
+
"@typescript-eslint/parser": "^8.54.0",
|
|
97
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
98
|
+
"eslint": "^9.39.2",
|
|
99
|
+
"globals": "^17.3.0",
|
|
98
100
|
"husky": "^9.0.0",
|
|
99
101
|
"prettier": "^3.2.0",
|
|
100
102
|
"tsup": "^8.0.0",
|
|
101
103
|
"typedoc": "^0.25.0",
|
|
102
104
|
"typescript": "^5.4.0",
|
|
103
|
-
"vitest": "^
|
|
105
|
+
"vitest": "^4.0.18"
|
|
104
106
|
}
|
|
105
107
|
}
|