d81a30f051
- IPC parse functions: replace whole-object 'as' casts with per-field narrowing - WorkflowConfig: remove duplicate from core, re-export from @uncaged/workflow - drainTimeoutMs: change from optional param to T | null convention - Remove duplicate WorkflowWorkerOutboundMessage, keep WorkflowChildToParentMessage Fixes #325
32 lines
647 B
JSON
32 lines
647 B
JSON
{
|
|
"name": "@uncaged/nerve-core",
|
|
"version": "0.5.0",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": ["dist"],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"prepublishOnly": "bash ../../scripts/prepublish-check.sh",
|
|
"build": "rslib build",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"@uncaged/workflow": "workspace:*",
|
|
"yaml": "^2.8.3"
|
|
},
|
|
"devDependencies": {
|
|
"@rslib/core": "^0.21.3",
|
|
"@types/node": "^22.0.0",
|
|
"vitest": "^4.1.5"
|
|
}
|
|
}
|