{
  "name": "node-workflow-engine",
  "version": "1.0.3",
  "description": "🌊 Simple workflow framework for Node.js backends - Easy integration with Express, Fastify, Koa",
  "main": "dist/index.js",
  "bin": {
    "node-workflow-engine": "./dist/cli.js",
    "workflow": "./dist/cli.js"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "start": "node dist/index.js",
    "test": "jest",
    "lint": "eslint src/**/*.ts",
    "prepare": "npm run build",
    "clean": "rm -rf dist",
    "rebuild": "npm run clean && npm run build",
    "demo": "npm run build && node dist/examples/SimpleExamples.js",
    "docs:build": "echo 'Documentation is already built in docs/ directory'",
    "docs:deploy": "./scripts/deploy-github-pages.sh",
    "docs:serve": "cd docs && python3 -m http.server 8080",
    "docs:preview": "cd docs && open index.html",
    "publish:npm": "./scripts/publish-npm.sh",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "workflow",
    "backend",
    "express",
    "fastify",
    "koa",
    "middleware",
    "api",
    "framework",
    "nodejs",
    "typescript",
    "simple",
    "easy",
    "integration",
    "steps",
    "pipeline"
  ],
  "author": "Prashant Mishra",
  "license": "MIT",
  "dependencies": {
    "express": "^4.18.2",
    "uuid": "^9.0.1"
  },
  "devDependencies": {
    "@types/express": "^4.17.21",
    "@types/node": "^20.10.5",
    "@types/uuid": "^9.0.7",
    "@typescript-eslint/eslint-plugin": "^6.15.0",
    "@typescript-eslint/parser": "^6.15.0",
    "eslint": "^8.56.0",
    "jest": "^29.7.0",
    "typescript": "^5.3.3"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/programsmagic/flow-engine.git"
  },
  "bugs": {
    "url": "https://github.com/programsmagic/flow-engine/issues"
  },
  "homepage": "https://programsmagic.github.io/flow-engine",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/programsmagic"
  }
}
