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
576 B
JSON
30 lines
576 B
JSON
{
|
|
"name": "@uncaged/workflow-protocol",
|
|
"version": "0.4.3",
|
|
"files": [
|
|
"src",
|
|
"dist",
|
|
"package.json"
|
|
],
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"bun": "./src/index.ts",
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./moderator-table.js": {
|
|
"bun": "./src/moderator-table.ts",
|
|
"types": "./dist/moderator-table.d.ts",
|
|
"import": "./dist/moderator-table.js"
|
|
}
|
|
},
|
|
"peerDependencies": {
|
|
"zod": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"zod": "^4.0.0",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|