@orkestrel/worker 0.0.1 → 0.0.3

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.
Files changed (1) hide show
  1. package/package.json +14 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orkestrel/worker",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "A typed, resource-backed job worker for the @orkestrel line — a Queue paired with a Pool over an execution seam, plus a node:worker_threads server surface for CPU-parallel jobs. Part of the @orkestrel line.",
5
5
  "keywords": [
6
6
  "async",
@@ -57,7 +57,7 @@
57
57
  "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)\"",
58
58
  "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}\"",
59
59
  "lint": "oxlint --config .oxlintrc.json --fix .",
60
- "check": "tsc --noEmit --project tsconfig.json",
60
+ "check": "tsc --noEmit --project tsconfig.json && npm run check:src",
61
61
  "check:src": "npm run check:src:core && npm run check:src:server",
62
62
  "check:src:core": "tsc --noEmit -p configs/src/tsconfig.core.json",
63
63
  "check:src:server": "tsc --noEmit -p configs/src/tsconfig.server.json",
@@ -73,27 +73,27 @@
73
73
  "build:src": "npm run build:src:core && npm run build:src:server",
74
74
  "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",
75
75
  "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",
76
- "prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run check:src && npm run build && npm test"
76
+ "prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test"
77
77
  },
78
78
  "dependencies": {
79
- "@orkestrel/contract": "^0.0.1",
80
- "@orkestrel/database": "^0.0.2",
81
- "@orkestrel/emitter": "^0.0.1",
82
- "@orkestrel/pool": "^0.0.1",
83
- "@orkestrel/queue": "^0.0.1"
79
+ "@orkestrel/contract": "^0.0.5",
80
+ "@orkestrel/database": "^0.0.5",
81
+ "@orkestrel/emitter": "^0.0.3",
82
+ "@orkestrel/pool": "^0.0.3",
83
+ "@orkestrel/queue": "^0.0.3"
84
84
  },
85
85
  "devDependencies": {
86
- "@microsoft/api-extractor": "^7.58.9",
87
- "@orkestrel/guide": "^0.0.1",
86
+ "@microsoft/api-extractor": "^7.58.11",
87
+ "@orkestrel/guide": "^0.0.5",
88
88
  "@types/node": "^26.1.1",
89
- "oxfmt": "^0.58.0",
90
- "oxlint": "^1.73.0",
89
+ "oxfmt": "^0.59.0",
90
+ "oxlint": "^1.74.0",
91
91
  "typescript": "^6.0.3",
92
- "vite": "^8.1.4",
92
+ "vite": "^8.1.5",
93
93
  "vite-plugin-dts": "^5.0.3",
94
94
  "vitest": "^4.1.10"
95
95
  },
96
96
  "engines": {
97
- "node": ">=24"
97
+ "node": ">=22"
98
98
  }
99
99
  }