{
  "name": "reflow-ts",
  "version": "0.5.0",
  "description": "Durable workflow execution for TypeScript",
  "author": "Daniel Fry",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/danfry1/reflow-ts.git"
  },
  "homepage": "https://danfry1.github.io/reflow-ts/",
  "bugs": "https://github.com/danfry1/reflow-ts/issues",
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "engines": {
    "node": ">=18.18.0"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs"
    },
    "./sqlite-node": {
      "types": "./dist/storage/sqlite-node.d.mts",
      "import": "./dist/storage/sqlite-node.mjs"
    },
    "./sqlite-bun": {
      "types": "./dist/storage/sqlite-bun.d.mts",
      "import": "./dist/storage/sqlite-bun.mjs"
    },
    "./sqlite-node-builtin": {
      "types": "./dist/storage/sqlite-node-builtin.d.mts",
      "import": "./dist/storage/sqlite-node-builtin.mjs"
    },
    "./test": {
      "types": "./dist/test/index.d.mts",
      "import": "./dist/test/index.mjs"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "tsdown",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "lint:deps": "syncpack lint",
    "fix:deps": "syncpack fix",
    "dev:website": "vitepress dev website",
    "build:website": "vitepress build website",
    "preview:website": "vitepress preview website",
    "prepublishOnly": "bun run lint:deps && bun run typecheck && bun run test && bun run build"
  },
  "keywords": [
    "workflow",
    "durable",
    "sqlite",
    "background-jobs",
    "retry",
    "typescript",
    "pipeline"
  ],
  "peerDependencies": {
    "better-sqlite3": ">=9.0.0"
  },
  "peerDependenciesMeta": {
    "better-sqlite3": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/better-sqlite3": "7.6.13",
    "@vitest/coverage-v8": "4.0.18",
    "better-sqlite3": "12.6.2",
    "syncpack": "15.3.1",
    "tsdown": "0.21.2",
    "typescript": "5.9.3",
    "vitepress": "1.6.4",
    "vitest": "4.0.18",
    "zod": "4.3.6"
  },
  "dependencies": {
    "@standard-schema/spec": "^1.1.0"
  }
}
