@girardmedia/bootspring 2.0.24 → 2.0.26
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/dist/cli/index.d.ts +1 -1
- package/dist/cli/index.js +1539 -1697
- package/dist/cli/index.js.map +1 -1
- package/dist/core/index.js +3 -0
- package/dist/core/index.js.map +1 -1
- package/dist/{index-DlXygBAE.d.ts → index-DJD8HAyK.d.ts} +1 -1
- package/dist/index.d.ts +199 -2
- package/dist/index.js +1542 -1697
- package/dist/index.js.map +1 -1
- package/dist/mcp/index.js +3 -0
- package/dist/mcp/index.js.map +1 -1
- package/intelligence/learning/insights.json +1 -1
- package/mcp/contracts/mcp-contract.v1.json +1 -1
- package/package.json +7 -4
- package/src/cli/org.ts +82 -50
- package/src/core/organizations.ts +42 -69
- package/src/core/policy-matrix.ts +25 -34
- package/src/types/index.ts +3 -0
- package/src/types/policy.ts +216 -0
- package/src/version.ts +1 -1
package/dist/core/index.js
CHANGED
|
@@ -421,6 +421,8 @@ var require_package = __commonJS({
|
|
|
421
421
|
test: "jest",
|
|
422
422
|
"test:watch": "jest --watch",
|
|
423
423
|
"test:coverage": "jest --coverage",
|
|
424
|
+
"test:vitest": "vitest run",
|
|
425
|
+
"test:vitest:watch": "vitest",
|
|
424
426
|
lint: "eslint .",
|
|
425
427
|
"lint:fix": "eslint . --fix",
|
|
426
428
|
typecheck: "tsc --noEmit",
|
|
@@ -440,6 +442,7 @@ var require_package = __commonJS({
|
|
|
440
442
|
"@swc/core": "^1.15.13",
|
|
441
443
|
"@swc/jest": "^0.2.39",
|
|
442
444
|
"@types/node": "^25.3.1",
|
|
445
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
443
446
|
eslint: "^9.39.2",
|
|
444
447
|
globals: "^17.3.0",
|
|
445
448
|
jest: "^29.7.0",
|