-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.99 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
{
"name": "@logcat/analysis-agent",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "npm@11.10.0",
"bin": {
"logcat-agent": "dist/cli/main.js"
},
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"ai:smoke": "tsx scripts/ai-smoke.ts",
"ai:smoke:noai": "tsx scripts/ai-smoke.ts --provider noop",
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"cli:cleanup": "tsx src/cli/main.ts cleanup",
"cli:devices": "tsx src/cli/main.ts devices",
"cli:patterns": "tsx src/cli/main.ts patterns",
"cli:realtime": "tsx src/cli/main.ts realtime",
"cli:stream": "tsx src/cli/main.ts stream",
"cli:stream-all": "tsx src/cli/main.ts stream-all",
"cli:summarize": "tsx src/cli/main.ts summarize",
"cli:tcp": "tsx src/cli/main.ts tcp",
"cli:wifi": "tsx src/cli/main.ts wifi",
"dev": "tsx src/cli/main.ts",
"format": "prettier -w .",
"format:check": "prettier -c .",
"lint": "eslint src test website/src website/*.ts",
"start": "node dist/cli/main.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@devicefarmer/adbkit": "^3.3.8",
"@devicefarmer/adbkit-logcat": "^2.1.3",
"@google/generative-ai": "^0.24.1",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"dotenv": "^17.3.1",
"eventemitter3": "^5.0.4",
"fast-redact": "^3.5.0",
"multicast-dns": "^7.2.5",
"openai": "^6.29.0",
"p-limit": "^7.3.0",
"qrcode-terminal": "^0.12.0",
"string-hash": "^1.1.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.2",
"@types/string-hash": "^1.1.3",
"esbuild": "^0.28.0",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.3",
"prettier-plugin-packagejson": "^3.0.2",
"tsc-alias": "^1.8.17",
"tsx": "^4.22.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.60.1",
"vitest": "^4.1.7"
}
}