b59a239a82
* feat(plugin-workflow): add base client entry for workflow * fix(plugin-workflow): workflow table * feat: custom ui route (#227) * feat(plugin-workflow): add execution table * refactor(actions): expose utils of actions * fix(repo): move ".editorconfig" to root * feat(plugin-workflow): base workflow management able to add node * fix(plugin-workflow): fix empty workflow * feat(plugin-workfow): add flow canvas and style * fix(plugin-workflow): fix type for building * feat(plugin-workflow): fix add node in branch and add branch ui * feat(plugin-workflow): add calculation structure to condition config * fix(plugin-workflow): fix branch line style * feat(plugin-workflow): remove node with sub-branch * feat(plugin-workflow): add parallel node type * fix(plugin-workflow): fix dependency in client Co-authored-by: chenos <chenlinxh@gmail.com>
24 lines
725 B
JSON
24 lines
725 B
JSON
{
|
|
"name": "@nocobase/plugin-workflow",
|
|
"version": "0.6.0-alpha.0",
|
|
"main": "lib/index.js",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "rimraf -rf lib esm dist && npm run build:cjs && npm run build:esm",
|
|
"build:cjs": "tsc --project tsconfig.build.json",
|
|
"build:esm": "tsc --project tsconfig.build.json --module es2015 --outDir esm"
|
|
},
|
|
"dependencies": {
|
|
"@nocobase/actions": "^0.6.0-alpha.0",
|
|
"@nocobase/database": "^0.6.0-alpha.0",
|
|
"@nocobase/server": "^0.6.0-alpha.0",
|
|
"@nocobase/utils": "^0.6.0-alpha.0",
|
|
"json-templates": "^4.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@nocobase/test": "^0.6.0-alpha.0"
|
|
},
|
|
"gitHead": "f0b335ac30f29f25c95d7d137655fa64d8d67f1e"
|
|
}
|