forked from LXGIC-Studios/xfetch
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.52 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.52 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
{
"name": "xreach-cli",
"version": "0.3.3",
"description": "Fast X/Twitter CLI — search, read, and extract. Part of the Agent Reach ecosystem.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"xreach": "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",
"agent-reach",
"tweets",
"search",
"graphql",
"social-media"
],
"author": "Neo Reid <neo@panniantong.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Panniantong/xfetch.git"
},
"homepage": "https://github.com/Panniantong/xfetch#readme",
"bugs": {
"url": "https://github.com/Panniantong/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"
}
}