63 lines
1.4 KiB
JSON
63 lines
1.4 KiB
JSON
{
|
|
"name": "tmdb-ts",
|
|
"version": "1.6.0",
|
|
"description": "TMDB v3 library wrapper",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"compile": "rm -rf dist && tsc -d",
|
|
"lint": "eslint --ext .ts src/",
|
|
"lint:fix": "eslint --ext .ts src/ --fix",
|
|
"format": "npx prettier --write src",
|
|
"pre-commit": "npm run lint"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/blakejoy/tmdb-ts/issues",
|
|
"email": "blake@bjoynes.com"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/blakejoy/tmdb-ts.git"
|
|
},
|
|
"keywords": [
|
|
"tmdb",
|
|
"movies",
|
|
"database",
|
|
"api",
|
|
"typescript"
|
|
],
|
|
"author": "Blake Joynes",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^18.15.11",
|
|
"@types/node-fetch": "^2.5.10",
|
|
"@typescript-eslint/eslint-plugin": "^5.58.0",
|
|
"@typescript-eslint/parser": "^5.58.0",
|
|
"dotenv": "^9.0.2",
|
|
"eslint": "^8.38.0",
|
|
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"husky": "^8.0.3",
|
|
"prettier": "^2.8.7",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"dependencies": {
|
|
"cross-fetch": "^3.1.4"
|
|
},
|
|
"volta": {
|
|
"node": "18.16.0",
|
|
"yarn": "1.22.4",
|
|
"npm": "9.5.1"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm run pre-commit"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|