@orkestrel/workflow 0.0.3 → 0.0.5

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/workflow",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "description": "A typed workflow engine for the @orkestrel line — a serializable Workflow → Phase → Task tree run by a composed runner on a cooperative scheduler. Part of the @orkestrel line.",
5
5
  "keywords": [
6
6
  "orchestration",
@@ -62,7 +62,7 @@
62
62
  "copy": "node -e \"const fs=require('node:fs'),p=require('node:path'),a=process.argv[1],b=process.argv[2];fs.mkdirSync(p.dirname(b),{recursive:true});fs.cpSync(a,b,{force:true});console.log('Copied: '+a+' to '+b)\"",
63
63
  "tmp:txt": "node -e \"const fs=require('node:fs'),p=require('node:path');function walk(d){for(const e of fs.readdirSync(d,{withFileTypes:true})){const f=p.join(d,e.name);if(e.isDirectory()){walk(f)}else if(!e.name.endsWith('.md')&&!e.name.endsWith('.txt')){const t=f+'.txt';if(!fs.existsSync(t)){fs.renameSync(f,t)}else{console.warn('Skipping '+f+' — target exists: '+t)}}}}try{walk('tmp')}catch(e){if(e.code!=='ENOENT')throw e}\"",
64
64
  "lint": "oxlint --config .oxlintrc.json --fix .",
65
- "check": "tsc --noEmit --project tsconfig.json",
65
+ "check": "tsc --noEmit --project tsconfig.json && npm run check:src",
66
66
  "check:src": "npm run check:src:core && npm run check:src:browser && npm run check:src:server",
67
67
  "check:src:core": "tsc --noEmit -p configs/src/tsconfig.core.json",
68
68
  "check:src:browser": "tsc --noEmit -p configs/src/tsconfig.browser.json",
@@ -81,30 +81,30 @@
81
81
  "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",
82
82
  "build:src:browser": "vite build --config configs/src/vite.browser.config.ts",
83
83
  "build:src:server": "vite build --config configs/src/vite.server.config.ts && npm run copy dist/src/server/index.d.ts dist/src/server/index.d.cts",
84
- "prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run check:src && npm run build && npm test"
84
+ "prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test"
85
85
  },
86
86
  "dependencies": {
87
- "@orkestrel/abort": "^0.0.1",
88
- "@orkestrel/budget": "^0.0.1",
89
- "@orkestrel/contract": "^0.0.1",
90
- "@orkestrel/database": "^0.0.2",
91
- "@orkestrel/emitter": "^0.0.1",
92
- "@orkestrel/queue": "^0.0.1",
93
- "@orkestrel/timeout": "^0.0.1"
87
+ "@orkestrel/abort": "^0.0.2",
88
+ "@orkestrel/budget": "^0.0.2",
89
+ "@orkestrel/contract": "^0.0.2",
90
+ "@orkestrel/database": "^0.0.4",
91
+ "@orkestrel/emitter": "^0.0.2",
92
+ "@orkestrel/queue": "^0.0.2",
93
+ "@orkestrel/timeout": "^0.0.2"
94
94
  },
95
95
  "devDependencies": {
96
- "@microsoft/api-extractor": "^7.58.9",
97
- "@orkestrel/guide": "^0.0.1",
96
+ "@microsoft/api-extractor": "^7.58.11",
97
+ "@orkestrel/guide": "^0.0.2",
98
98
  "@types/node": "^26.1.1",
99
99
  "@vitest/browser-playwright": "^4.1.10",
100
- "oxfmt": "^0.58.0",
101
- "oxlint": "^1.73.0",
100
+ "oxfmt": "^0.59.0",
101
+ "oxlint": "^1.74.0",
102
102
  "typescript": "^6.0.3",
103
- "vite": "^8.1.4",
103
+ "vite": "^8.1.5",
104
104
  "vite-plugin-dts": "^5.0.3",
105
105
  "vitest": "^4.1.10"
106
106
  },
107
107
  "engines": {
108
- "node": ">=24"
108
+ "node": ">=22"
109
109
  }
110
110
  }