-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.35 KB
/
package.json
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "radon",
"version": "2.0.0",
"description": "An advanced moderation discord bot",
"main": "./src/index.ts",
"type": "module",
"private": true,
"imports": {
"#constants": "./src/lib/utility/constants.ts",
"#config": "./src/lib/utility/config.ts",
"#lib/RadonClient": "./src/lib/RadonClient.ts",
"#lib/*": "./src/lib/*/index.ts",
"#root/*": "./src/*.ts"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "bun .",
"dev": "bun .",
"release": "cj",
"preview": "cj --dry-run",
"format": "bunx prettier --write './src/**/*.ts' './README.md'",
"pretty": "bunx prettier --check './src/**/*.ts' './README.md'",
"typecheck": "tsc -b src"
},
"engines": {
"node": "20.10.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EvolutionX-10/Radon.git"
},
"keywords": [
"discord",
"bot",
"discord.js",
"moderation"
],
"author": "EvolutionX",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/EvolutionX-10/Radon/issues"
},
"homepage": "https://github.com/EvolutionX-10/Radon#readme",
"devDependencies": {
"@favware/cliff-jumper": "6.0.0",
"@sapphire/eslint-config": "5.0.5",
"@sapphire/prettier-config": "2.0.0",
"@sapphire/ts-config": "5.0.1",
"@swc/core": "1.10.12",
"@swc/helpers": "0.5.15",
"@types/bun": "1.2.1",
"@types/colornames": "1.1.4",
"@types/gradient-string": "1.1.6",
"@types/node": "22.12.0",
"@types/string-similarity": "4.0.2",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"prettier": "3.4.2",
"typescript": "5.7.3"
},
"dependencies": {
"@devtomio/plugin-botlist": "1.3.0",
"@prisma/client": "6.3.0",
"@sapphire/decorators": "6.1.1",
"@sapphire/discord-utilities": "3.4.4",
"@sapphire/discord.js-utilities": "7.3.2",
"@sapphire/duration": "1.1.4",
"@sapphire/framework": "5.3.2",
"@sapphire/plugin-editable-commands": "4.0.4",
"@sapphire/plugin-logger": "4.0.2",
"@sapphire/plugin-scheduled-tasks": "10.0.2",
"@sapphire/stopwatch": "1.5.4",
"@sapphire/utilities": "3.18.2",
"bullmq": "5.39.1",
"colorette": "2.0.20",
"colornames": "1.1.1",
"confusables": "1.1.1",
"discord.js": "14.17.3",
"gradient-string": "3.0.0",
"ioredis": "5.4.2",
"prisma": "6.3.0",
"undici": "7.3.0"
},
"prettier": "@sapphire/prettier-config",
"lint-staged": {
"*.ts": "prettier --write",
"*.json": "prettier --write"
}
}