{
  "name": "@tdanks2000/tmdb-wrapper",
  "version": "2.0.0",
  "description": "A powerful and easy-to-use TypeScript wrapper for The Movie Database (TMDb) API",
  "module": "./dist/index.mjs",
  "type": "module",
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.mts",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tdanks2000/tmdb-wrapper.git"
  },
  "homepage": "https://github.com/tdanks2000/tmdb-wrapper#readme",
  "bugs": {
    "url": "https://github.com/tdanks2000/tmdb-wrapper/issues"
  },
  "files": [
    "dist/**/*",
    "README.md"
  ],
  "keywords": [
    "tmdb",
    "tmdbWrapper",
    "tmdb wrapper",
    "tmdb-wrapper",
    "api wrapper",
    "node",
    "typescript",
    "movies",
    "tv shows",
    "movie database",
    "themoviedb",
    "tmdb api",
    "entertainment",
    "media"
  ],
  "engines": {
    "node": ">=16"
  },
  "author": "TDanks2000",
  "license": "MIT",
  "private": false,
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "test": "bun test",
    "release": "npm run test && npm run build && npm version patch && npm publish",
    "release:minor": "npm run test && npm run build && npm version minor && npm publish",
    "release:major": "npm run test && npm run build && npm version major && npm publish",
    "preversion": "npm run test && npm run build",
    "check": "biome check .",
    "check:unsafe": "biome check --write --unsafe .",
    "check:write": "biome check --write ."
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.6",
    "@types/bun": "^1.3.10",
    "@types/node": "^22.19.15",
    "tsdown": "^0.12.9",
    "typescript": "^5.9.3"
  }
}
