@orkestrel/program 0.0.10 → 0.0.11
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 +19 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orkestrel/program",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"description": "A program composition layer that orchestrates @orkestrel/qualifier and @orkestrel/rater into one execute workflow with notices, authority, status, decisions, and batch aggregation. Part of the @orkestrel line.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"aggregate",
|
|
@@ -60,35 +60,39 @@
|
|
|
60
60
|
"format": "oxfmt --config .oxfmtrc.json --write .",
|
|
61
61
|
"format:check": "oxfmt --config .oxfmtrc.json --check .",
|
|
62
62
|
"lint:check": "oxlint --config .oxlintrc.json --deny-warnings .",
|
|
63
|
-
"test": "npm run test:src && npm run test:policy && npm run test:config && npm run test:guides",
|
|
63
|
+
"test": "npm run test:src && npm run test:policy && npm run test:config && npm run test:setup && npm run test:guides",
|
|
64
64
|
"test:src": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core",
|
|
65
65
|
"test:src:core": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core",
|
|
66
66
|
"test:policy": "vitest run --config vite.config.ts --no-cache --reporter=dot --project policy",
|
|
67
67
|
"test:config": "vitest run --config vite.config.ts --no-cache --reporter=dot --project config",
|
|
68
|
-
"test:guides": "vitest run --config vite.config.ts --reporter=dot --project guides",
|
|
68
|
+
"test:guides": "vitest run --config vite.config.ts --no-cache --reporter=dot --project guides",
|
|
69
69
|
"build": "npm run clean && npm run build:src",
|
|
70
70
|
"build:src": "npm run build:src:core",
|
|
71
71
|
"build:src:core": "vite build --config configs/src/vite.core.config.ts && npm run copy dist/src/core/index.d.ts dist/src/core/index.d.cts",
|
|
72
72
|
"prepack": "npm run build",
|
|
73
|
-
"prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test"
|
|
73
|
+
"prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test && npm run test:distribution -- --mode release",
|
|
74
|
+
"test:distribution": "vitest run --config vite.config.ts --no-cache --reporter=dot --project distribution",
|
|
75
|
+
"test:probe": "vitest run --config vite.config.ts --no-cache --reporter=verbose --project probe",
|
|
76
|
+
"test:bench": "vitest bench --config vite.config.ts --no-cache --project probe",
|
|
77
|
+
"test:setup": "vitest run --config vite.config.ts --no-cache --reporter=dot --project setup"
|
|
74
78
|
},
|
|
75
79
|
"dependencies": {
|
|
76
80
|
"@orkestrel/contract": "^0.0.13",
|
|
77
|
-
"@orkestrel/emitter": "^0.0.
|
|
78
|
-
"@orkestrel/qualifier": "^0.0.
|
|
79
|
-
"@orkestrel/rater": "^0.0.
|
|
80
|
-
"@orkestrel/reason": "^0.0.
|
|
81
|
+
"@orkestrel/emitter": "^0.0.8",
|
|
82
|
+
"@orkestrel/qualifier": "^0.0.12",
|
|
83
|
+
"@orkestrel/rater": "^0.0.12",
|
|
84
|
+
"@orkestrel/reason": "^0.0.8"
|
|
81
85
|
},
|
|
82
86
|
"devDependencies": {
|
|
83
87
|
"@microsoft/api-extractor": "^7.59.0",
|
|
84
|
-
"@orkestrel/guide": "^0.0.
|
|
85
|
-
"@orkestrel/probe": "^0.0.
|
|
86
|
-
"@orkestrel/scaffold": "^0.0.
|
|
87
|
-
"@orkestrel/test": "^0.0.
|
|
88
|
-
"@types/node": "^26.
|
|
88
|
+
"@orkestrel/guide": "^0.0.15",
|
|
89
|
+
"@orkestrel/probe": "^0.0.9",
|
|
90
|
+
"@orkestrel/scaffold": "^0.0.57",
|
|
91
|
+
"@orkestrel/test": "^0.0.11",
|
|
92
|
+
"@types/node": "^26.4.0",
|
|
89
93
|
"@vitest/browser-playwright": "^4.1.11",
|
|
90
|
-
"oxfmt": "^0.
|
|
91
|
-
"oxlint": "^1.
|
|
94
|
+
"oxfmt": "^0.65.0",
|
|
95
|
+
"oxlint": "^1.80.0",
|
|
92
96
|
"typescript": "^6.0.3",
|
|
93
97
|
"vite": "^8.2.2",
|
|
94
98
|
"vite-plugin-dts": "^5.0.3",
|