add changes, credits, search
This commit is contained in:
50
package.json
50
package.json
@@ -1,27 +1,55 @@
|
||||
{
|
||||
"name": "tmdb-ts",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"version": "0.0.3",
|
||||
"description": "TMDB v3 library wrapper",
|
||||
"main": "dist/index.ts",
|
||||
"types": "dist/types/index.d.ts",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"start": "ts-node"
|
||||
"compile": "rm -rf dist && tsc -d && npm run copy-types",
|
||||
"lint": "eslint --ext .ts src/",
|
||||
"lint:fix": "eslint --ext .ts src/ --fix",
|
||||
"prepublish": "tsc",
|
||||
"copy-types": "mkdir dist/types && cp src/types/*.d.ts dist/types"
|
||||
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"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": "^15.3.0",
|
||||
"@types/node-fetch": "^2.5.10",
|
||||
"@typescript-eslint/eslint-plugin": "^4.23.0",
|
||||
"@typescript-eslint/parser": "^4.23.0",
|
||||
"dotenv": "^9.0.2",
|
||||
"eslint": "^7.26.0",
|
||||
"eslint-config-airbnb-base": "^14.2.1",
|
||||
"eslint-plugin-import": "^2.23.1",
|
||||
"ts-node": "^9.1.1",
|
||||
"typescript": "^4.2.4"
|
||||
},
|
||||
"dependencies": {
|
||||
"dotenv": "^9.0.2",
|
||||
"node-fetch": "^2.6.1"
|
||||
},
|
||||
"volta": {
|
||||
"node": "15.13.0",
|
||||
"yarn": "1.19.2"
|
||||
}
|
||||
"yarn": "1.19.2",
|
||||
"npm": "7.12.1"
|
||||
},
|
||||
"files": [
|
||||
"dist"
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user