@ipation/specbridge 2.3.0 → 2.4.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ipation/specbridge",
3
- "version": "2.3.0",
3
+ "version": "2.4.2",
4
4
  "description": "Architecture Decision Runtime - Transform architectural decisions into executable, verifiable constraints",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -20,12 +20,14 @@
20
20
  "test": "vitest run",
21
21
  "test:watch": "vitest",
22
22
  "test:unit": "vitest run tests/unit/",
23
- "test:integration": "vitest run --config vitest.integration.config.ts",
23
+ "test:integration": "npm run test:integration:core && npm run test:integration:cli",
24
+ "test:integration:core": "vitest run --config vitest.integration.core.config.ts",
25
+ "test:integration:cli": "vitest run --config vitest.integration.cli.config.ts",
24
26
  "test:coverage": "vitest run --coverage",
25
27
  "test:ui": "vitest --ui",
26
28
  "lint": "eslint .",
27
29
  "lint:fix": "eslint . --fix",
28
- "lint:check": "eslint .",
30
+ "lint:check": "eslint . --max-warnings=0",
29
31
  "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
30
32
  "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
31
33
  "type-check": "tsc --noEmit",
@@ -34,7 +36,9 @@
34
36
  "version:major": "npm version major",
35
37
  "docs": "typedoc --out docs/api src/index.ts",
36
38
  "docs:serve": "npm run docs && npx http-server docs/api",
37
- "prepare": "husky install",
39
+ "pack:check": "npm_config_cache=.cache/npm npm pack --ignore-scripts && npm_config_cache=.cache/npm HUSKY=0 npm pack --dry-run",
40
+ "health:check": "npm run type-check && npm run lint:check && npm run format:check && npm run test && npm run test:integration && npm run test:coverage && npm audit --audit-level=high",
41
+ "prepare": "husky",
38
42
  "prepublishOnly": "npm run build"
39
43
  },
40
44
  "keywords": [
@@ -70,7 +74,7 @@
70
74
  "CHANGELOG.md"
71
75
  ],
72
76
  "engines": {
73
- "node": ">=18.0.0"
77
+ "node": ">=20.19.0"
74
78
  },
75
79
  "dependencies": {
76
80
  "@modelcontextprotocol/sdk": "^1.26.0",
@@ -81,6 +85,7 @@
81
85
  "fast-glob": "^3.3.0",
82
86
  "minimatch": "^10.1.2",
83
87
  "ora": "^9.3.0",
88
+ "pino": "^9.9.5",
84
89
  "table": "^6.8.0",
85
90
  "ts-morph": "^27.0.2",
86
91
  "vscode-languageserver": "^9.0.1",