{
  "name": "video-worker",
  "version": "3.0.0",
  "description": "API wrapper for Youtube, Vimeo and Self-Hosted videos",
  "license": "MIT",
  "homepage": "https://github.com/nk-o/video-worker",
  "author": "nK <https://nkdev.info>",
  "main": "dist/video-worker.cjs",
  "module": "dist/video-worker.esm.js",
  "types": "dist/types/video-worker.d.ts",
  "unpkg": "dist/video-worker.min.js",
  "exports": {
    ".": {
      "types": "./dist/types/video-worker.d.ts",
      "import": "./dist/video-worker.esm.js",
      "require": "./dist/video-worker.cjs",
      "default": "./dist/video-worker.esm.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "src",
    "dist"
  ],
  "scripts": {
    "dev": "cross-env NODE_ENV=dev rollup --config --sourcemap --watch",
    "build": "rollup --config --sourcemap && tsc -p tsconfig.build.json && node ./scripts/validate-dist.mjs",
    "lint": "biome check .",
    "lint:fix": "biome check --write .",
    "format": "biome format --write .",
    "format:check": "biome format .",
    "test": "vitest",
    "test:run": "vitest run",
    "test:artifacts": "vitest run tests/build-artifacts.test.ts",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc -p tsconfig.json && tsc -p tsconfig.tests.json",
    "prepare": "husky"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/nk-o/video-worker.git"
  },
  "bugs": {
    "url": "https://github.com/nk-o/video-worker/issues"
  },
  "keywords": [
    "video",
    "mp4",
    "youtube",
    "vimeo",
    "api",
    "wrapper"
  ],
  "devDependencies": {
    "@biomejs/biome": "^2.4.7",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "@rollup/plugin-replace": "^6.0.3",
    "@rollup/plugin-terser": "^1.0.0",
    "@types/jsdom": "^28.0.0",
    "@types/node": "^25.5.0",
    "@vitest/coverage-v8": "^4.1.0",
    "cross-env": "^10.1.0",
    "husky": "^9.1.7",
    "jsdom": "^29.0.0",
    "lint-staged": "^16.4.0",
    "rollup": "^4.59.0",
    "rollup-plugin-esbuild": "^6.2.1",
    "rollup-plugin-serve": "^3.0.0",
    "tslib": "^2.8.1",
    "typescript": "^5.9.3",
    "vitest": "^4.1.0"
  }
}
