-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.03 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
{
"name": "inboxbridge",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Privacy-first bidirectional communication bot with Telegram Forum Topics.",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev": "npm run build && node dist/src/app/main.js",
"start": "node dist/src/app/main.js",
"clean": "rm -rf dist",
"build": "node ./node_modules/typescript/bin/tsc -p tsconfig.json",
"check": "node ./node_modules/typescript/bin/tsc -p tsconfig.json --noEmit",
"test": "npm run build && node --test dist/test/*.js",
"verify": "npm run check && npm test && npm audit",
"migrate": "npm run build && node dist/src/scripts/migrate.js",
"retention:cleanup": "npm run build && node dist/src/scripts/retention-cleanup.js",
"telegram:check": "npm run build && node dist/src/scripts/check-telegram.js"
},
"dependencies": {
"grammy": "^1.38.4",
"pino": "^10.1.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/node": "^24.10.1",
"typescript": "^5.9.3"
}
}