-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.42 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.42 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
{
"name": "valkyriecore",
"version": "1.2.4",
"description": "This project provides a template for creating a Discord bot using discordx and discord.js v14.",
"license": "GPL-3.0-or-later",
"author": "Ragnar Lothbrok <ragnarlothbrokjr@proton.me>",
"homepage": "https://github.com/Valhalla-Development/ValkyrieCore#readme",
"repository": "https://github.com/Valhalla-Development/ValkyrieCore.git",
"bugs": {
"url": "https://github.com/Valhalla-Development/ValkyrieCore/issues"
},
"scripts": {
"lint": "tsc --noEmit -p tsconfig.json && biome check --files-ignore-unknown=true --diagnostic-level=error --no-errors-on-unmatched src",
"lint:fix": "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true src",
"dev": "NODE_ENV=development bun --watch src/Main.ts",
"start": "NODE_ENV=production bun src/Cluster.ts",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@colors/colors": "^1.6.0",
"@discordx/importer": "^1.3.3",
"@discordx/utilities": "^8.0.0",
"@keyv/sqlite": "^4.0.8",
"axios": "^1.13.5",
"discord-hybrid-sharding": "^3.0.1",
"discord.js": "^14.25.1",
"discordx": "^11.13.3",
"dotenv": "^17.3.1",
"keyv": "^5.6.0",
"moment": "^2.30.1",
"systeminformation": "^5.31.1",
"ws": "^8.19.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.3",
"typescript": "^5.9.3",
"ultracite": "^7.2.3"
}
}