{
  "name": "@michaelrwalker/stagehand",
  "version": "0.8.0",
  "description": "Fully typesafe saga-style script framework with modern terminal visuals",
  "homepage": "https://michaelrwalker.netlify.app/stagehand",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "skills",
    "!skills/_artifacts"
  ],
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "typecheck": "tsc && npm run build && tsc -p examples && tsc -p test && tsc -p scripts",
    "test": "npm run build && node --experimental-strip-types --test test/*.test.ts",
    "prerelease": "node --experimental-strip-types scripts/preflight.ts",
    "release": "release-it"
  },
  "keywords": [
    "saga",
    "script",
    "cli",
    "typescript",
    "rollback",
    "compensation",
    "tanstack-intent"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/miaklwalker/stagehand"
  },
  "devDependencies": {
    "@tanstack/intent": "^0.3.6",
    "@types/node": "^22.10.0",
    "release-it": "^20.2.1",
    "typescript": "^5.7.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "release-it": {
    "$schema": "https://unpkg.com/release-it/schema/release-it.json",
    "git": {
      "commit": true,
      "tag": true,
      "push": true,
      "commitMessage": "chore: release v${version}"
    },
    "github": {
      "release": true
    },
    "npm": {
      "publish": true
    },
    "hooks": {
      "after:bump": "node --experimental-strip-types scripts/preflight.ts --allow-dirty"
    }
  },
  "author": "Michael Walker",
  "dependencies": {
    "@standard-schema/spec": "^1.1.0"
  }
}
