-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.48 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
{
"name": "zeki",
"version": "2.0.0",
"description": "A Discord bot integration of the paliapedia.com database.",
"type": "module",
"main": "dist/index",
"private": true,
"scripts": {
"start": "node dist/index",
"build": "tsc && pnpm postbuild",
"postbuild": "ncp \"src/db/migrations\" \"dist/db/migrations\"",
"i18n": "typesafe-i18n",
"format": "prettier src --write",
"db:drop": "drizzle-kit drop",
"db:generate": "drizzle-kit generate:pg",
"db:studio": "drizzle-kit studio"
},
"homepage": "https://github.com/glazk0/zeki#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/glazk0/zeki.git"
},
"bugs": {
"url": "https://github.com/glazk0/zeki/issues"
},
"author": "glazk0 <hi@glazk0.dev> (https://glazk0.dev)",
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/glazk0"
},
"license": "MIT",
"dependencies": {
"cheerio": "1.0.0-rc.12",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.6",
"glob": "10.3.10",
"node-schedule": "2.1.1",
"pino": "^8.19.0",
"pino-pretty": "^11.0.0",
"postgres": "^3.4.3",
"query-string": "^9.0.0",
"redis": "^4.6.13",
"reflect-metadata": "^0.2.1",
"tsyringe": "^4.8.0",
"typesafe-i18n": "^5.26.2"
},
"devDependencies": {
"@types/node": "^20.12.2",
"@types/node-schedule": "2.1.6",
"drizzle-kit": "^0.20.14",
"ncp": "2.0.0",
"prettier": "3.5.3",
"typescript": "^5.4.2"
}
}