4a43a7f3dd
- workflow-utils, workflow-meta: import workflow types from @uncaged/workflow - adapter-cursor, adapter-hermes: same - cli: same - core: remove workflow re-exports, no longer depends on @uncaged/workflow Phase 5+6 of #320, Testing: #323
36 lines
858 B
JSON
36 lines
858 B
JSON
{
|
|
"name": "@uncaged/workflow",
|
|
"version": "0.5.0",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./public-types": {
|
|
"types": "./dist/public-types.d.ts",
|
|
"default": "./dist/public-types.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": ["dist"],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"prepublishOnly": "bash ../../scripts/prepublish-check.sh",
|
|
"build": "rslib build && pnpm run build:public-types",
|
|
"build:public-types": "tsc -p tsconfig.public-types.json"
|
|
},
|
|
"dependencies": {
|
|
"@uncaged/nerve-core": "^0.5.0",
|
|
"@uncaged/nerve-store": "^0.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@rslib/core": "^0.21.3",
|
|
"@types/node": "^22.0.0"
|
|
}
|
|
}
|