ca644dabaa
- All @uncaged/* packages → 0.4.0 - Internal deps: workspace:* → workspace:^ (resolves to ^0.4.0 on publish) - Fix exports: add 'bun' condition for local dev (src), 'import' for consumers (dist) - Remove stale 'main: src/index.ts' from 6 packages - Fix publish.sh topo sort to match workspace:^ prefix 星月 <xingyue@shazhou.work>
26 lines
481 B
JSON
26 lines
481 B
JSON
{
|
|
"name": "@uncaged/workflow-util-agent",
|
|
"version": "0.4.0",
|
|
"files": [
|
|
"dist",
|
|
"package.json"
|
|
],
|
|
"type": "module",
|
|
"types": "src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"bun": "./src/index.ts",
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "bun test"
|
|
},
|
|
"dependencies": {
|
|
"@uncaged/workflow-runtime": "workspace:^",
|
|
"@uncaged/workflow-cas": "workspace:^",
|
|
"zod": "^4.0.0"
|
|
}
|
|
}
|