{
  "name": "@ts-flow/core",
  "version": "2.0.3",
  "description": "Simple, data driven workflow system leveraging an IoC container and event manager",
  "author": "paulingalls",
  "repository": {
    "type": "git",
    "url": "https://github.com/paulingalls/ts-flow/tree/main/packages/core"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/paulingalls/ts-flow/issues"
  },
  "homepage": "https://github.com/paulingalls/ts-flow#readme",
  "publishConfig": {
    "access": "public"
  },
  "main": "./dist/index.js",
  "source": "./src/index.ts",
  "types": "./dist/index.d.ts",
  "files": [
    "dist/**"
  ],
  "jest": {
    "preset": "jest-presets/jest/node",
    "collectCoverage": true,
    "coverageDirectory": "coverage"
  },
  "dependencies": {
    "express": "5.0.1"
  },
  "devDependencies": {
    "@types/express": "5.0.0",
    "@types/jest": "29.5.14",
    "@types/node": "22.13.4",
    "eslint": "9.20.1",
    "jest": "29.7.0",
    "typescript": "5.7.3",
    "jest-presets": "1.0.0",
    "tsconfig": "1.0.0"
  },
  "scripts": {
    "build": "tsc",
    "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
    "dev": "tsc -w",
    "lint": "eslint \"src/**/*.ts*\"",
    "test": "jest",
    "prepublish": "tsc"
  }
}