-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.55 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.55 KB
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
65
66
{
"name": "xfetch-cli",
"version": "0.2.1",
"description": "Fast X/Twitter CLI scraper. No API keys. Just cookies and go.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"xfetch": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"build:binary": "bun build --compile --minify src/cli.ts --outfile xfetch",
"dev": "tsx src/cli.ts",
"test": "vitest",
"lint": "eslint src/",
"typecheck": "tsc --noEmit"
},
"keywords": [
"twitter",
"x",
"scraper",
"cli",
"graphql",
"tweets",
"twitter-scraper",
"x-scraper",
"tweet-scraper",
"social-media",
"data-extraction"
],
"author": "LXGIC Studios <hello@lxgic.studio>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LXGIC-Studios/xfetch.git"
},
"homepage": "https://github.com/LXGIC-Studios/xfetch#readme",
"bugs": {
"url": "https://github.com/LXGIC-Studios/xfetch/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@types/better-sqlite3": "^7.6.13",
"better-sqlite3": "^12.6.2",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"conf": "^12.0.0",
"csv-stringify": "^6.6.0",
"ora": "^8.0.0",
"sql.js": "^1.13.0",
"undici": "^6.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/sql.js": "^1.4.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.3.0",
"vitest": "^1.0.0"
}
}