{
  "name": "pixi-reels",
  "version": "1.6.0",
  "description": "A batteries-included slot machine reel engine for PixiJS v8 — fluent builder, typed events, spin phases, speed modes, win spotlight, and a headless testing harness.",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    },
    "./spine": {
      "import": "./dist/spine.js",
      "require": "./dist/spine.cjs",
      "types": "./dist/spine/index.d.ts"
    },
    "./testing": {
      "import": "./dist/testing.js",
      "require": "./dist/testing.cjs",
      "types": "./dist/testing/index.d.ts"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
    "CONTRIBUTING.md"
  ],
  "sideEffects": false,
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "peerDependencies": {
    "@esotericsoftware/spine-pixi-v8": "~4.2.110",
    "gsap": "^3.15.0",
    "pixi.js": "^8.18.1"
  },
  "peerDependenciesMeta": {
    "@esotericsoftware/spine-pixi-v8": {
      "optional": true
    }
  },
  "devDependencies": {
    "@esotericsoftware/spine-pixi-v8": "~4.2.110",
    "gsap": "^3.15.0",
    "pixi.js": "^8.18.1",
    "typescript": "^6.0.3",
    "vite": "^8.0.9",
    "vite-plugin-dts": "^4.5.4",
    "vitest": "^4.1.7"
  },
  "license": "MIT",
  "author": "schmooky",
  "homepage": "https://pixi-reels.schmooky.dev",
  "bugs": {
    "url": "https://github.com/schmooky/pixi-reels/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/schmooky/pixi-reels.git",
    "directory": "packages/pixi-reels"
  },
  "keywords": [
    "pixi",
    "pixijs",
    "pixi.js",
    "slot",
    "reel",
    "reels",
    "casino",
    "slot-machine",
    "game",
    "gamedev",
    "html5-game",
    "spine",
    "animation",
    "gsap",
    "typescript"
  ],
  "scripts": {
    "build": "vite build",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src/"
  }
}