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