{
  "name": "@farcade/game-sdk",
  "version": "0.3.0",
  "main": "./src/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "license": "MIT",
  "files": ["dist/**"],
  "scripts": {
    "build": "bun run scripts/build.ts && tsup src/index.ts --dts-only",
    "dev": "tsup src/index.ts --format esm,cjs --watch --dts",
    "lint": "eslint \"src/**/*.ts*\"",
    "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
    "test": "bun test --timeout 10000 --coverage",
    "test:build": "bun run build && bun test"
  },
  "devDependencies": {
    "puppeteer": "24.22.0",
    "tsup": "8.0.1",
    "typescript": "5.8.3"
  }
}
