-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 734 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 734 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
{
"name": "spiw-bot",
"version": "2.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@mtcute/dispatcher": "^0.29.6",
"@mtcute/node": "^0.29.6",
"better-sqlite3": "^12.9.0",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"lru-cache": "^11.3.5",
"mediainfo.js": "^0.3.7",
"p-limit": "^7.3.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.6.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}