-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.17 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
{
"name": "meros",
"version": "1.0.0",
"private": true,
"license": "MIT",
"type": "module",
"main": "build/main.js",
"scripts": {
"build": "tsc",
"dev": "tsx src/main.ts",
"start": "node build/main.js",
"codegen": "kysely-codegen",
"migrate": "kysely migrate up",
"watch": "nodemon --exec npm run dev --watch src --ext ts"
},
"dependencies": {
"@discordjs/voice": "^0.19.0",
"@discordx/importer": "^1.3.3",
"@discordx/pagination": "^4.4.0",
"@snazzah/davey": "^0.1.8",
"better-sqlite3": "^12.5.0",
"discord.js": "^14.22.1",
"discordx": "^11.13.2",
"dotenv": "^17.2.3",
"ffmpeg-static": "^5.3.0",
"kysely": "^0.28.9",
"multistream": "^4.1.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/multistream": "^4.1.3",
"@types/node": "^24.10.1",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"kysely-codegen": "^0.19.0",
"kysely-ctl": "^0.19.0",
"nodemon": "^3.1.10",
"prettier": "^3.7.3",
"prettier-eslint": "^16.4.2",
"tsx": "^4.20.5",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}