-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "tiktok-scraper",
"version": "1.0.0",
"description": "A Nodejs script that scrapes data from TikTok profiles.",
"main": "index.js",
"scripts": {
"start:dev": "nodemon",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ranbot-ai/tiktok-scraper.git"
},
"keywords": [
"TikTok",
"TikTok Scraper",
"Data Scraper",
"Encore Shao",
"RanBOT"
],
"author": "Encore Shao",
"license": "ISC",
"bugs": {
"url": "https://github.com/ranbot-ai/tiktok-scraper/issues"
},
"homepage": "https://github.com/ranbot-ai/tiktok-scraper#readme",
"devDependencies": {
"@types/node": "^18.7.23",
"nodemon": "^2.0.20",
"puppeteer": "^18.0.5",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"fs-extra": "^10.1.0",
"puppeteer-extra": "^3.3.4",
"puppeteer-extra-plugin-stealth": "^2.11.1"
}
}