522afdd4bd
- Install @changesets/cli with fixed mode (all @uncaged/* packages sync version) - Fix package exports: add bun condition, point import to dist/ - Bump all packages to 0.4.0 via changeset version - Auto-generated CHANGELOG.md for each package - Ignore workflow-dashboard (private) - Add npm scripts: changeset, version, release - publish.sh: support workspace:^ prefix matching Closes #241, Closes #242
29 lines
531 B
JSON
29 lines
531 B
JSON
{
|
|
"name": "@uncaged/workflow-cas",
|
|
"version": "0.4.0",
|
|
"files": [
|
|
"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"
|
|
}
|
|
}
|