-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 771 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 771 Bytes
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
{
"name": "v2ray-scraper",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun run scraper.ts",
"dns:dev": "bun run dns.ts",
"start": "bun run ./dist/scraper/scraper.js",
"dns:start": "bun run ./dist/dns/dns.js",
"bundle": "bun run build.ts",
"compile": "bun run bundle && bun build --compile --minify --target=node --sourcemap ./dist/index.js --outfile ./scraper",
"lint": "biome lint ./src"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@biomejs/biome": "2.0.5",
"axios": "^1.10.0",
"chalk": "^5.4.1",
"cheerio": "^1.1.0",
"csv-parse": "^5.6.0",
"ora": "^8.2.0",
"zod": "^3.25.67"
}
}