{
  "name": "chaimu",
  "description": "✨ Chaimu is an audio player that synchronizes audio with video",
  "version": "1.0.6",
  "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": {
    "@types/bun": "^1.2.15",
    "eslint": "^9.28.0",
    "husky": "^9.1.7",
    "oxlint": "^0.18.0",
    "pino-pretty": "^13.0.0",
    "prettier": "^3.5.3",
    "tsc-esm-fix": "^3.1.2",
    "typedoc": "^0.28.5",
    "typedoc-plugin-rename-defaults": "^0.7.3",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.33.0"
  },
  "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": {
    "gen:cfg": "bun run scripts/generate-config.ts",
    "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 --ignore-path=.oxlintignore && bunx eslint"
  }
}
