@orkestrel/scaffold 0.0.6 → 0.0.8

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orkestrel/scaffold",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "description": "Blueprint-to-plan package scaffolding, auditing, dependency guide/version pulling, and fleet-wide shared-file upkeep for the @orkestrel line.",
5
5
  "keywords": [
6
6
  "audit",
@@ -75,14 +75,15 @@
75
75
  "format": "oxfmt --config .oxfmtrc.json --write .",
76
76
  "format:check": "oxfmt --config .oxfmtrc.json --check .",
77
77
  "lint:check": "oxlint --config .oxlintrc.json --deny-warnings .",
78
- "test": "npm run test:src && npm run test:guides",
78
+ "test": "npm run test:src && npm run test:policy && npm run test:guides",
79
79
  "test:src": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core --project src:server --project src:bin",
80
80
  "test:src:core": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core",
81
81
  "test:src:server": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:server",
82
82
  "test:src:bin": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:bin",
83
83
  "test:integration": "vitest run --config vite.config.ts --no-cache --reporter=dot --project integration",
84
+ "test:equivalence": "node -e \"const c=require('node:child_process'),n=process.platform==='win32'?'npm.cmd':'npm',r=c.spawnSync(n,['run','test:integration'],{stdio:'inherit',env:{...process.env,SCAFFOLD_BOUNDARY_EQUIVALENCE:'1'}});process.exit(r.status??1)\"",
85
+ "test:policy": "vitest run --config vite.config.ts --no-cache --reporter=dot --project policy",
84
86
  "test:guides": "vitest run --config vite.config.ts --reporter=dot --project guides",
85
- "pin": "vitest run --config vite.config.ts --no-cache --project src:core -t pinPlan -u",
86
87
  "build": "npm run clean && npm run build:src && npm run build:host",
87
88
  "build:src": "npm run build:src:core && npm run build:src:server && npm run build:src:bin",
88
89
  "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",
@@ -92,20 +93,21 @@
92
93
  "prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test && npm run test:integration"
93
94
  },
94
95
  "dependencies": {
95
- "@orkestrel/console": "^0.0.3",
96
+ "@orkestrel/console": "^0.0.4",
96
97
  "@orkestrel/contract": "^0.0.8",
97
- "@orkestrel/emitter": "^0.0.3",
98
- "@orkestrel/markdown": "^0.0.5",
99
- "@orkestrel/template": "^0.0.1",
100
- "@orkestrel/terminal": "^0.0.4"
98
+ "@orkestrel/emitter": "^0.0.4",
99
+ "@orkestrel/markdown": "^0.0.6",
100
+ "@orkestrel/template": "^0.0.2",
101
+ "@orkestrel/terminal": "^0.0.5"
101
102
  },
102
103
  "devDependencies": {
103
104
  "@microsoft/api-extractor": "^7.58.12",
104
- "@orkestrel/guide": "^0.0.5",
105
+ "@orkestrel/guide": "^0.0.7",
105
106
  "@types/node": "^26.1.2",
106
107
  "@vitest/browser-playwright": "^4.1.10",
107
108
  "oxfmt": "^0.61.0",
108
109
  "oxlint": "^1.76.0",
110
+ "playwright": "^1.62.0",
109
111
  "typescript": "^6.0.3",
110
112
  "vite": "^8.1.5",
111
113
  "vite-plugin-dts": "^5.0.3",