youtube-search-without-api-key
Version:
Search videos on YouTube without API key
56 lines (55 loc) • 1.46 kB
JSON
{
"name": "youtube-search-without-api-key",
"version": "2.0.1",
"description": "Search videos on YouTube without API key",
"exports": "./lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appit-online/youtube-search.git"
},
"keywords": [
"youtube",
"youtube search",
"angular youtube search",
"youtube api",
"youtube crawler"
],
"funding": {
"url": "https://paypal.me/dave7117",
"type": "paypal"
},
"author": "David Koller",
"license": "ISC",
"files": [
"lib/**/*"
],
"bugs": {
"url": "https://github.com/appit-online/youtube-search/issues"
},
"homepage": "https://github.com/appit-online/youtube-search#readme",
"devDependencies": {
"@types/got": "^9.6.12",
"@types/node": "^20.9.2",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"prettier": "^3.1.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.2.2"
},
"dependencies": {
"got": "^13.0.0"
}
}