flowtify
Version:
A flexible workflow orchestration library with TypeScript support
51 lines (50 loc) • 1.31 kB
JSON
{
"name": "flowtify",
"version": "1.0.16",
"description": "A flexible workflow orchestration library with TypeScript support",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"workflow",
"orchestration",
"typescript",
"saga",
"compensation"
],
"repository": {
"type": "git",
"url": "https://github.com/specture48/flowtify.git"
},
"license": "MIT",
"scripts": {
"build": "tsup",
"dev": "node --loader ts-node/esm src/demo.ts",
"clean": "rm -rf dist",
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --watch",
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --coverage",
"prepublishOnly": "yarn clean && yarn build && yarn test"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^18.0.0",
"jest": "^29.7.0",
"reflect-metadata": "^0.2.2",
"ts-jest": "^29.2.6",
"ts-node": "^10.0.0",
"tsup": "^8.4.0",
"typedi": "^0.10.0",
"typescript": "^5.0.0"
},
"dependencies": {
"awilix": "^12.0.4",
"ulid": "^2.3.0"
}
}