{
  "name": "@schmooky/zvuk",
  "version": "1.14.1",
  "description": "Audio Engine for the Web — Wwise-grade routing, sprites, sidechain ducking. Tiny, ESM-only, type-safe.",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "sideEffects": false,
  "repository": {
    "type": "git",
    "url": "git+https://github.com/schmooky/zvuk.git"
  },
  "homepage": "https://zvuk.schmooky.dev",
  "bugs": {
    "url": "https://github.com/schmooky/zvuk/issues"
  },
  "keywords": [
    "audio",
    "web-audio",
    "audio-engine",
    "mixer",
    "wwise",
    "fmod",
    "spatial-audio",
    "ducking",
    "sidechain",
    "game-audio",
    "slot",
    "casino"
  ],
  "author": "schmooky (https://github.com/schmooky)",
  "license": "MIT",
  "engines": {
    "node": ">=20"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.3.0",
    "@changesets/changelog-github": "^0.5.0",
    "@changesets/cli": "^2.27.10",
    "@size-limit/preset-small-lib": "^13.0.3",
    "@types/node": "^22.10.0",
    "@vitest/browser": "^2.1.9",
    "@vitest/coverage-v8": "^2.1.9",
    "happy-dom": "^15.11.6",
    "playwright": "^1.62.1",
    "size-limit": "^13.0.3",
    "tsup": "^8.3.5",
    "typescript": "^5.9.0",
    "vite": "^5.4.0",
    "vitest": "^2.1.8"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:conformance": "vitest run --workspace vitest.conformance.workspace.ts",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "bench": "vitest bench --config vitest.bench.config.ts --run",
    "size": "size-limit",
    "lint": "biome check src test conformance",
    "lint:fix": "biome check --write src test conformance",
    "docs:dev": "pnpm --dir docs dev",
    "docs:build": "pnpm --dir docs build",
    "docs:preview": "pnpm --dir docs preview",
    "examples": "vite --config vite.examples.config.ts",
    "changeset": "changeset",
    "changeset:status": "changeset status",
    "version-packages": "changeset version && pnpm install --lockfile-only",
    "release": "pnpm build && changeset publish",
    "snapshot": "pnpm build && changeset version --snapshot \"${SNAPSHOT_TAG:-snapshot}\" && changeset publish --tag \"${SNAPSHOT_TAG:-snapshot}\" --no-git-tag"
  },
  "bin": {
    "zvuk": "./dist/cli.js"
  }
}