b4584cbaa6
bun runtime resolves the 'bun' exports condition to ./src/index.ts, but src/ was not in the files array so consumers got ENOENT.
26 lines
480 B
JSON
26 lines
480 B
JSON
{
|
|
"name": "@uncaged/workflow-agent-hermes",
|
|
"version": "0.4.3",
|
|
"files": [
|
|
"src",
|
|
"dist",
|
|
"package.json"
|
|
],
|
|
"type": "module",
|
|
"types": "src/index.ts",
|
|
"scripts": {
|
|
"test": "bun test"
|
|
},
|
|
"dependencies": {
|
|
"@uncaged/workflow-runtime": "workspace:^",
|
|
"@uncaged/workflow-util-agent": "workspace:^"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"bun": "./src/index.ts",
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
}
|
|
}
|