UNPKG

@flowlab/all

Version:

A cool library focusing on handling various flows

58 lines (57 loc) 1.37 kB
{ "name": "@flowlab/root", "version": "0.1.0", "description": "A flexible and extensible workflow engine core library.", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsup --config tsup.config.ts", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src/**/*.ts", "prepublishOnly": "npm run build" }, "keywords": [ "workflow", "orchestration", "state machine", "flowlab", "typescript" ], "author": "Luke <countstarss404@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/countstarss/flowlab.git" }, "bugs": { "url": "https://github.com/countstarss/flowlab/issues" }, "homepage": "https://github.com/countstarss/flowlab#readme", "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^20.17.28", "@types/uuid": "^9.0.8", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "cross-env": "^7.0.3", "eslint": "^8.0.0", "jest": "^29.5.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.2", "tsup": "^8.4.0", "typescript": "^5.0.0" }, "dependencies": { "uuid": "^9.0.1" }, "files": [ "dist", "README.md", "LICENSE" ], "engines": { "node": ">=18.0.0" } }