-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·49 lines (49 loc) · 1.23 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@sirubot/yt-related-scraper",
"version": "0.3.21",
"description": "YouTube related video scraper with a ip rotation",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc --project ./tsconfig.json",
"build:publish": "yarn run build && yarn publish"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SiruBOT/youtube-related-scraper.git"
},
"keywords": [
"scraper",
"ipRotation",
"crawler"
],
"author": "Sannoob#3144",
"license": "MIT",
"bugs": {
"url": "https://github.com/SiruBOT/youtube-related-scraper/issues"
},
"homepage": "https://github.com/SiruBOT/youtube-related-scraper#readme",
"devDependencies": {
"@types/ip": "^1.1.0",
"@types/node": "^17.0.21",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"typescript": "^4.6.2"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"abort-controller": "^3.0.0",
"ip": "^1.1.5",
"node-fetch": "^2.6.7"
}
}