{
  "name": "chaimu",
  "description": "✨ Chaimu is an audio player that synchronizes audio with video",
  "version": "1.1.0",
  "license": "MIT",
  "author": "Toil",
  "type": "module",
  "types": "./dist/index.d.ts",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "homepage": "https://github.com/ilyhalight/chaimu",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ilyhalight/chaimu"
  },
  "bugs": {
    "url": "https://github.com/ilyhalight/chaimu/issues"
  },
  "devDependencies": {
    "@playwright/test": "^1.61.1",
    "@types/bun": "^1.2.15",
    "lefthook": "^2.1.10",
    "oxfmt": "^0.59.0",
    "oxlint": "^1.74.0",
    "tsc-esm-fix": "^3.1.2",
    "typedoc": "^0.28.5",
    "typedoc-plugin-rename-defaults": "^0.7.3",
    "typescript": "^6.0.3"
  },
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./player": {
      "require": "./dist/player.js",
      "import": "./dist/player.js",
      "types": "./dist/player.d.ts"
    },
    "./client": {
      "require": "./dist/client.js",
      "import": "./dist/client.js",
      "types": "./dist/client.d.ts"
    },
    "./debug": {
      "require": "./dist/debug.js",
      "import": "./dist/debug.js",
      "types": "./dist/debug.d.ts"
    },
    "./config": {
      "require": "./dist/config.js",
      "import": "./dist/config.js",
      "types": "./dist/config.d.ts"
    },
    "./types/*": {
      "require": "./dist/types/*.js",
      "import": "./dist/types/*.js",
      "types": "./dist/types/*.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "chaimu",
    "sync",
    "audio",
    "video",
    "player",
    "web"
  ],
  "scripts": {
    "demo": "bun run demo/server.ts",
    "gen:cfg": "bun run scripts/generate-config.ts",
    "test": "playwright test",
    "build:default": "tsc --project tsconfig.build.json --outdir ./dist && tsc-esm-fix --tsconfig tsconfig.build.json",
    "build:doc": "typedoc --options typedoc.json --tsconfig tsconfig.build.json",
    "build:bun": "bun gen:cfg && bun build:default && bun build:doc",
    "build:min": "bun run ./scripts/build.ts",
    "lint": "bunx oxlint",
    "lint:fix": "bunx oxlint --fix",
    "fmt": "oxfmt",
    "fmt:check": "oxfmt --check"
  }
}
