@tdanks2000/tmdb-wrapper
Version:
A powerful and easy-to-use TypeScript wrapper for The Movie Database (TMDb) API
73 lines (72 loc) • 1.86 kB
JSON
{
"name": "@tdanks2000/tmdb-wrapper",
"version": "1.3.2",
"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.0.0-beta.6",
"@types/bun": "^1.2.15",
"@types/node": "^22.15.29",
"tsdown": "^0.12.6",
"typescript": "^5.8.3"
}
}