{
  "name": "@ricsam/formula-engine",
  "version": "0.2.10",
  "module": "./dist/mjs/lib.mjs",
  "scripts": {
    "test": "bun test",
    "agent:test": "CLAUDECODE=1 bun test",
    "test:e2e": "npx playwright test",
    "test:e2e:ui": "npx playwright test --ui",
    "test:e2e:debug": "npx playwright test --debug",
    "test:e2e:headed": "npx playwright test --headed",
    "test:e2e:debug-visible": "npx playwright test --headed --debug",
    "test:e2e:with-logs": "./scripts/run-test.sh",
    "typecheck": "tsc --noEmit",
    "demo:dev": "bun demo/index.tsx",
    "demo:start": "NODE_ENV=production bun demo/index.tsx",
    "demo:build": "tsr generate && bun run build.ts",
    "demo:generate-routes": "tsr generate",
    "demo:watch-routes": "tsr watch",
    "knip": "knip",
    "build": "bun build-lib.ts",
    "install:local": "bun scripts/install-local-build.ts"
  },
  "peerDependencies": {
    "typescript": "^5"
  },
  "main": "./dist/cjs/lib.cjs",
  "types": "./dist/types/lib.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/lib.d.ts",
      "require": "./dist/cjs/lib.cjs",
      "import": "./dist/mjs/lib.mjs"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ricsam/formula-engine.git"
  }
}