@ipation/specbridge 2.4.3 → 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 +6 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ipation/specbridge",
3
- "version": "2.4.3",
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",
@@ -33,6 +33,7 @@
33
33
  "lint:check": "eslint . --max-warnings=0",
34
34
  "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
35
35
  "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
36
+ "docs:validate": "node scripts/docs/validate-runtime-policy.mjs",
36
37
  "type-check": "tsc --noEmit",
37
38
  "version:patch": "npm version patch",
38
39
  "version:minor": "npm version minor",
@@ -41,7 +42,8 @@
41
42
  "docs:serve": "npm run docs && npx http-server docs/api",
42
43
  "pack:check": "npm_config_cache=.cache/npm npm pack --ignore-scripts && npm_config_cache=.cache/npm HUSKY=0 npm pack --dry-run",
43
44
  "deps:outdated": "npm_config_cache=.cache/npm npm outdated --long",
44
- "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",
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",
45
47
  "prepare": "husky",
46
48
  "prepublishOnly": "npm run build"
47
49
  },
@@ -89,7 +91,7 @@
89
91
  "fast-glob": "^3.3.0",
90
92
  "minimatch": "^10.1.2",
91
93
  "ora": "^9.3.0",
92
- "pino": "^9.9.5",
94
+ "pino": "^10.3.0",
93
95
  "table": "^6.8.0",
94
96
  "ts-morph": "^27.0.2",
95
97
  "vscode-languageserver": "^9.0.1",
@@ -100,7 +102,7 @@
100
102
  "devDependencies": {
101
103
  "@eslint/js": "^9.39.2",
102
104
  "@types/express": "^5.0.6",
103
- "@types/node": "^25.2.1",
105
+ "@types/node": "^25.2.2",
104
106
  "@typescript-eslint/eslint-plugin": "^8.54.0",
105
107
  "@typescript-eslint/parser": "^8.54.0",
106
108
  "@vitest/coverage-v8": "^4.0.18",