-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.38 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.38 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
{
"name": "cybergroupmate",
"version": "0.1.0",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"start": "tsx src/main.ts",
"dev": "tsx watch src/main.ts",
"test": "tsx scripts/run-tests.ts",
"test:sandbox": "tsx --test tests/*sandbox*.test.ts",
"cli": "tsx src/cli.ts",
"tg-convert": "tsx src/tools/tg-to-jsonl.ts",
"dashboard:dev": "cd src/dashboard/ui && npm run dev",
"dashboard:build": "cd src/dashboard/ui && npm run build",
"gen:module-docs": "tsx src/tools/generate-module-docs.ts",
"postinstall": "patch-package && chmod +x node_modules/node-pty/prebuilds/darwin-arm64/spawn-helper 2>/dev/null || true"
},
"dependencies": {
"@google/genai": "^1.46.0",
"@mtcute/node": "latest",
"@tavily/core": "^0.7.2",
"better-sqlite3": "^11.0.0",
"discord.js": "^14.25.1",
"express": "^5.2.1",
"js-tiktoken": "^1.0.21",
"mime-to-extensions": "^1.0.2",
"node-pty": "^1.1.0",
"open-graph-scraper": "^6.11.0",
"sqlite-vec": "^0.1.7-alpha.2",
"stream-json": "^1.9.1",
"typescript": "^5.9.3",
"ulid": "^2.3.0",
"ws": "^8.19.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.0.0",
"@types/express": "^5.0.6",
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"patch-package": "^8.0.1",
"tsx": "^4.21.0",
"vite": "^8.0.1"
}
}