-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.81 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
{
"name": "@aindong/social-media-scraper",
"version": "0.4.1",
"description": "This project is for research purposes, not intended to steal content or data from any social media platform. It can only be used to scrape public data from social media platforms. The project is still under development, so it is not recommended to use it in production.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"lint": "tsc",
"build": "tsc --module commonjs",
"start": "node build/index.js",
"dev": "ts-node-dev -r tsconfig-paths/register ./src/cli.ts"
},
"keywords": [],
"author": "Alleo Indong",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"conventional-changelog": "^4.0.0",
"conventional-changelog-conventionalcommits": "^6.0.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.3",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"tsup": "^7.0.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@json2csv/plainjs": "^7.0.1",
"chalk": "4.1.2",
"dotenv": "^16.1.4",
"puppeteer": "^20.7.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aindong/social-media-scraper.git"
},
"bugs": {
"url": "https://github.com/aindong/social-media-scraper/issues"
},
"homepage": "https://github.com/aindong/social-media-scraper#readme"
}