-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.38 KB
/
package.json
File metadata and controls
60 lines (60 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "cobold",
"version": "3.1.0",
"repository": "https://github.com/tskau/cobold",
"bugs": "https://github.com/tskau/cobold/issues",
"private": true,
"main": "build/index.js",
"scripts": {
"dev": "tsx watch --include locales/* --include .env 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"
},
"devDependencies": {
"@antfu/eslint-config": "^4.12.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.14.1",
"drizzle-kit": "^0.31.0",
"eslint": "^9.24.0",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@fluent/bundle": "^0.19.1",
"@fluent/langneg": "^0.7.0",
"@fuman/fetch": "^0.4.0",
"@mtcute/dispatcher": "^0.27.4",
"@mtcute/node": "^0.27.4",
"@t3-oss/env-core": "^0.12.0",
"better-sqlite3": "^11.9.1",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.42.0",
"ipaddr.js": "^2.2.0",
"mediainfo.js": "^0.3.5",
"undici": "^7.8.0",
"zod": "^3.24.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
}
}