{
  "name": "@stepperize/core",
  "version": "1.2.6",
  "private": false,
  "publishConfig": {
    "access": "public"
  },
  "description": "Core utilities and TypeScript types for building step-based workflows with stepperize",
  "author": "damianricobelli",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/damianricobelli/stepperize.git",
    "directory": "packages/core"
  },
  "homepage": "https://stepperize.vercel.app",
  "sideEffects": false,
  "files": [
    "dist"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "exports": {
    ".": "./dist/index.js"
  },
  "peerDependencies": {
    "typescript": ">=5.0.2"
  },
  "devDependencies": {
    "tsup": "^8.4.0",
    "terser": "^5.39.0",
    "typescript": "^5.8.2"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "lint": "turbo lint",
    "clean": "rm -rf .turbo && rm -rf node_modules dist"
  }
}