-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "tiktok-scraper-ts",
"version": "1.4.2",
"description": "A scraper for tiktok videos, users and more",
"main": "dist/main.js",
"scripts": {
"start": "tsc && node dist/main.js",
"build:docs": "npx typedoc src/main.ts",
"build:lib": "npx tsup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/naseif/tiktok-scraper.git"
},
"author": "naseif",
"license": "MIT",
"bugs": {
"url": "https://github.com/naseif/tiktok-scraper/issues"
},
"keywords": [
"tiktok-videos-downloader",
"tiktok-video-downloader",
"tiktok-scraper",
"tiktok-downloader",
"tiktok-api",
"tiktok-videos-scraper"
],
"homepage": "https://github.com/naseif/tiktok-scraper#readme",
"devDependencies": {
"@types/node": "^17.0.45",
"@types/node-fetch": "^2.6.11",
"tsup": "^5.12.9",
"typedoc": "^0.22.18",
"typescript": "^4.9.5"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"miniget": "^4.2.2",
"netscape-cookies-parser": "^1.0.2",
"node-fetch": "^2.6.7",
"puppeteer": "^22.11.2",
"tiktok-signature": "^1.7.3"
}
}