-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.61 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "youtubelive",
"version": "0.0.2",
"description": "YouTube Live Auth-less Scraping",
"main": "./dist/index.js",
"scripts": {
"build:all": "tsc && typedoc",
"build": "tsc",
"build:docs": "typedoc",
"build:tsc": "tsc",
"start": "tsc && node dist/index.js",
"prepare": "npm run build-ts",
"build-ts": "tsc",
"test:login": "npm run build && node test/login.mjs",
"test:user": "npm run build && node test/user.mjs",
"test:sample": "npm run build && node test/sample.mjs"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/isaackogan/YouTubeLive.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"youtube-scraper",
"youtube-downloader",
"youtube-saver",
"yt-scraper",
"youtube",
"yt-scraper",
"yt-api",
"youtube-private-api",
"youtube-api",
"youtube-scraping"
],
"author": "Isaac Kogan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/isaackogan/YouTubeLive/issues"
},
"homepage": "https://github.com/isaackogan/YouTubeLive",
"dependencies": {
"@types/tough-cookie": "^4.0.5",
"axios": "^1.7.2",
"axios-cookiejar-support": "^5.0.2",
"http-cookie-agent": "^6.0.5",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.5",
"insta-fetcher": "^1.3.35",
"tough-cookie": "^4.1.4",
"undici": "^6.19.2"
},
"devDependencies": {
"tsx": "^4.16.2",
"@types/node": "^20.14.10",
"dotenv": "^16.4.5",
"typedoc": "^0.26.4",
"typescript": "^5.5.3"
}
}