-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 845 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"dependencies": {
"discord-api-types": "^0.38.41",
"discord.js": "^14.25.1",
"dotenv": "^17.2.1",
"html-minifier-next": "^6.1.2",
"mariadb": "^3.4.5",
"source-map-support": "^0.5.21",
"vitest": "^4.0.18"
},
"scripts": {
"check": "echo \"Checking for errors ...\" && tsgo --noEmit",
"build": "echo \"Checking for errors ...\" && tsgo --noEmit && echo \"Deleting old data ...\" && rm -rf build && echo \"Compiling scripts ...\" && tsgo -b",
"start": "node build/index.js",
"linecount": "find . -type f -name '*.ts' -not -path './node_modules/*' -exec wc -l {} + | sort -n -r | head -n 10",
"test": "vitest run",
"register": "node build/RegisterCommands.js",
"db-setup": "node build/DatabaseSetup.js"
},
"devDependencies": {
"@types/node": "^25.3.5",
"@typescript/native-preview": "^7.0.0-dev.20260615.1"
}
}