-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.92 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.92 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
66
67
68
69
70
{
"name": "telegram",
"version": "1.0.0",
"private": true,
"description": "PoliNetwork Telegram Moderation Bot",
"main": "./dist/bot.js",
"type": "module",
"scripts": {
"start": "NODE_ENV=production node dist/bot.js",
"build": "tsup",
"dev:raw": "NODE_ENV=development tsx watch --clear-screen=false --env-file=.env src/bot.ts",
"dev": "pnpm run dev:raw | pino-pretty",
"test": "vitest",
"typecheck": "tsc --noEmit",
"check": "biome check",
"check:fix": "biome check --write --unsafe"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@trpc/server": "11.5.1",
"@types/node": "^22.13.1",
"globals": "^15.14.0",
"pino-pretty": "^13.0.0",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"vitest": "^3.1.1"
},
"dependencies": {
"@grammyjs/auto-retry": "^2.0.2",
"@grammyjs/conversations": "^2.1.0",
"@grammyjs/hydrate": "^1.4.1",
"@grammyjs/menu": "^1.3.1",
"@grammyjs/parse-mode": "^1.11.1",
"@grammyjs/runner": "^2.0.3",
"@polinetwork/backend": "^0.15.5",
"@t3-oss/env-core": "^0.13.4",
"@trpc/client": "^11.5.1",
"@types/ssdeep.js": "^0.0.2",
"bullmq": "^5.59.0",
"croner": "^9.0.0",
"grammy": "^1.37.0",
"nanoid": "^5.1.5",
"neverthrow": "^8.2.0",
"openai": "^4.102.0",
"pino": "^9.6.0",
"redis": "^4.7.0",
"secure-json-parse": "^4.0.0",
"socket.io-client": "^4.8.1",
"ssdeep.js": "^0.0.3",
"superjson": "^2.2.2",
"zod": "^4.1.11"
},
"packageManager": "pnpm@10.17.1+sha512.17c560fca4867ae9473a3899ad84a88334914f379be46d455cbf92e5cf4b39d34985d452d2583baf19967fa76cb5c17bc9e245529d0b98745721aa7200ecaf7a",
"engines": {
"npm": ">=10.9.2",
"node": ">=22.14.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"msgpackr-extract",
"unrs-resolver"
]
}
}