-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 921 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 921 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
31
32
33
34
{
"name": "terminal-farm",
"version": "0.1.0",
"type": "module",
"description": "Terminal-based QQ/WeChat farm automation with full-screen UI",
"main": "src/main.ts",
"scripts": {
"start": "bun run src/main.ts",
"dev": "bun run --watch src/main.ts",
"build:proto": "bun run scripts/build-proto.ts",
"build": "bun run scripts/build.ts",
"check": "bunx biome check .",
"format": "bunx biome format --write .",
"lint": "bunx biome lint ."
},
"dependencies": {
"axios": "^1.13.5",
"ink": "^6.7.0",
"long": "^5.3.2",
"protobufjs": "^8.0.0",
"qrcode-terminal": "^0.12.0",
"react": "^19.2.4",
"ws": "^8.19.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.2.4",
"@types/qrcode-terminal": "^0.12.2",
"@types/react": "^18.3.18",
"@types/ws": "^8.5.14",
"protobufjs-cli": "^2.0.0"
}
}