-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.25 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "wali",
"version": "0.0.1",
"description": "An intuitive and user-friendly Discord bot connected to dune.gaming.tools the Dune Awakening database",
"type": "module",
"main": "dist/index.js",
"private": true,
"scripts": {
"build": "tsc && tsc-alias && pnpm run copy-migrations",
"start": "NODE_ENV=production node dist",
"dev": "NODE_ENV=development tsx watch src/bot.ts",
"dev:shard": "NODE_ENV=development tsx watch src/index.ts",
"format": "prettier --write src",
"db:drop": "drizzle-kit drop",
"db:generate": "drizzle-kit generate",
"copy-migrations": "ncp src/database/migrations dist/database/migrations"
},
"homepage": "https://github.com/glazk0/wali#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/glazk0/wali.git"
},
"bugs": {
"url": "https://github.com/glazk0/wali/issues"
},
"author": "glazk0 <hi@glazk0.dev> (https://glazk0.dev)",
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/glazk0"
},
"dependencies": {
"@keyv/postgres": "^2.1.6",
"@napi-rs/canvas": "^0.1.71",
"discord-api-types": "0.38.11",
"discord.js": "14.19.3",
"dotenv": "16.5.0",
"drizzle-orm": "^0.44.2",
"glob": "11.0.2",
"keyv": "^5.3.4",
"lru-cache": "^11.1.0",
"pg": "^8.16.0",
"prom-client": "^15.1.3",
"winston": "3.17.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^24.0.1",
"@types/pg": "^8.15.4",
"drizzle-kit": "^0.31.1",
"ncp": "^2.0.0",
"prettier": "^3.5.3",
"tsc-alias": "^1.8.16",
"tsx": "^4.20.1",
"typescript": "^5.8.3"
},
"imports": {
"#commands": "./dist/commands/index.js",
"#commands/*": "./dist/commands/*.js",
"#database": "./dist/database/index.js",
"#database/*": "./dist/database/*.js",
"#events": "./dist/events/index.js",
"#events/*": "./dist/events/*.js",
"#models/*": "./dist/models/*.js",
"#services": "./dist/services/index.js",
"#services/*": "./dist/services/*.js",
"#types": "./dist/types/index.js",
"#types/*": "./dist/types/*.js",
"#utils/*": "./dist/utils/*.js",
"#config": "./dist/config.js"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.6.2"
}