@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/mcp/index.js
CHANGED
|
@@ -958,6 +958,8 @@ var require_package = __commonJS({
|
|
|
958
958
|
test: "jest",
|
|
959
959
|
"test:watch": "jest --watch",
|
|
960
960
|
"test:coverage": "jest --coverage",
|
|
961
|
+
"test:vitest": "vitest run",
|
|
962
|
+
"test:vitest:watch": "vitest",
|
|
961
963
|
lint: "eslint .",
|
|
962
964
|
"lint:fix": "eslint . --fix",
|
|
963
965
|
typecheck: "tsc --noEmit",
|
|
@@ -977,6 +979,7 @@ var require_package = __commonJS({
|
|
|
977
979
|
"@swc/core": "^1.15.13",
|
|
978
980
|
"@swc/jest": "^0.2.39",
|
|
979
981
|
"@types/node": "^25.3.1",
|
|
982
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
980
983
|
eslint: "^9.39.2",
|
|
981
984
|
globals: "^17.3.0",
|
|
982
985
|
jest: "^29.7.0",
|