-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.28 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
{
"name": "cobold",
"version": "3.1.0",
"homepage": "https://t.me/coboldlogs",
"repository": "https://github.com/tskau/cobold",
"bugs": "https://github.com/tskau/cobold/issues",
"private": true,
"main": "build/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsup",
"start": "node .",
"lint": "eslint src/** eslint.config.mjs",
"generate": "drizzle-kit generate"
},
"tsup": {
"entry": [
"src/index.ts"
],
"splitting": false,
"sourcemap": true,
"clean": true,
"format": "esm",
"outDir": "build"
},
"type": "module",
"engines": {
"node": ">=20.12.0"
},
"devDependencies": {
"@antfu/eslint-config": "^9.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.9.1",
"drizzle-kit": "^0.31.10",
"eslint": "^10.4.0",
"tsup": "^8.5.1",
"tsx": "^4.22.3",
"typescript": "^6.0.3"
},
"dependencies": {
"@fluent/bundle": "^0.19.1",
"@fluent/langneg": "^0.7.0",
"@fuman/fetch": "^0.5.0",
"@mtcute/dispatcher": "^0.30.1",
"@mtcute/node": "^0.30.1",
"@t3-oss/env-core": "^0.13.11",
"better-sqlite3": "^12.10.0",
"drizzle-orm": "^0.45.2",
"ipaddr.js": "^2.4.0",
"mediainfo.js": "^0.3.7",
"undici": "^8.3.0",
"zod": "^4.4.3"
}
}