@ipation/specbridge 2.4.2 → 2.4.4

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.
Files changed (1) hide show
  1. package/package.json +10 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ipation/specbridge",
3
- "version": "2.4.2",
3
+ "version": "2.4.4",
4
4
  "description": "Architecture Decision Runtime - Transform architectural decisions into executable, verifiable constraints",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -23,6 +23,9 @@
23
23
  "test:integration": "npm run test:integration:core && npm run test:integration:cli",
24
24
  "test:integration:core": "vitest run --config vitest.integration.core.config.ts",
25
25
  "test:integration:cli": "vitest run --config vitest.integration.cli.config.ts",
26
+ "test:integration:cli:smoke": "vitest run --config vitest.integration.cli.config.ts tests/integration/cli/smoke.test.ts",
27
+ "test:integration:cli:core": "vitest run --config vitest.integration.cli.config.ts tests/integration/cli/init-verify.test.ts tests/integration/cli/infer-decision.test.ts",
28
+ "test:integration:cli:aux": "vitest run --config vitest.integration.cli.config.ts tests/integration/cli/hook-report-context.test.ts tests/integration/cli/errors.test.ts",
26
29
  "test:coverage": "vitest run --coverage",
27
30
  "test:ui": "vitest --ui",
28
31
  "lint": "eslint .",
@@ -30,6 +33,7 @@
30
33
  "lint:check": "eslint . --max-warnings=0",
31
34
  "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
32
35
  "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
36
+ "docs:validate": "node scripts/docs/validate-runtime-policy.mjs",
33
37
  "type-check": "tsc --noEmit",
34
38
  "version:patch": "npm version patch",
35
39
  "version:minor": "npm version minor",
@@ -37,7 +41,9 @@
37
41
  "docs": "typedoc --out docs/api src/index.ts",
38
42
  "docs:serve": "npm run docs && npx http-server docs/api",
39
43
  "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",
44
+ "deps:outdated": "npm_config_cache=.cache/npm npm outdated --long",
45
+ "health:quick": "npm run type-check && npm run lint:check && npm run format:check && npm run test:unit",
46
+ "health:check": "npm run docs:validate && 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
47
  "prepare": "husky",
42
48
  "prepublishOnly": "npm run build"
43
49
  },
@@ -85,7 +91,7 @@
85
91
  "fast-glob": "^3.3.0",
86
92
  "minimatch": "^10.1.2",
87
93
  "ora": "^9.3.0",
88
- "pino": "^9.9.5",
94
+ "pino": "^10.3.0",
89
95
  "table": "^6.8.0",
90
96
  "ts-morph": "^27.0.2",
91
97
  "vscode-languageserver": "^9.0.1",
@@ -96,7 +102,7 @@
96
102
  "devDependencies": {
97
103
  "@eslint/js": "^9.39.2",
98
104
  "@types/express": "^5.0.6",
99
- "@types/node": "^25.2.1",
105
+ "@types/node": "^25.2.2",
100
106
  "@typescript-eslint/eslint-plugin": "^8.54.0",
101
107
  "@typescript-eslint/parser": "^8.54.0",
102
108
  "@vitest/coverage-v8": "^4.0.18",