-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.18 KB
/
package.json
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
{
"name": "cobold",
"version": "1.3.0",
"private": true,
"main": "build/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node .",
"lint": "eslint src/** .eslintrc.cjs",
"generate": "drizzle-kit generate:sqlite"
},
"type": "module",
"engines": {
"node": ">=16"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^1.5.1",
"@types/better-sqlite3": "^7.6.8",
"@types/content-disposition": "^0.5.8",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"drizzle-kit": "^0.20.13",
"eslint": "^8.56.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@fluent/bundle": "^0.18.0",
"@fluent/langneg": "^0.7.0",
"@mtcute/crypto-node": "^0.15.0",
"@mtcute/dispatcher": "^0.15.2",
"@mtcute/node": "^0.15.1",
"@t3-oss/env-core": "^0.7.1",
"better-sqlite3": "^9.3.0",
"content-disposition": "^0.5.4",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.29.3",
"mime-types": "^2.1.35",
"zod": "^3.22.4"
},
"imports": {
"#*": "./build/*.js"
}
}