-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.16 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "radon",
"version": "2.0.0",
"description": "An advanced moderation discord bot",
"main": "./dist/index.js",
"type": "module",
"private": true,
"imports": {
"#constants": "./dist/lib/utility/constants.js",
"#config": "./dist/lib/utility/config.js",
"#lib/RadonClient": "./dist/lib/RadonClient.js",
"#lib/*": "./dist/lib/*/index.js",
"#root/*": "./dist/*.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "yarn compile && NODE_ENV=production && node ./dist/index.js",
"dev": "yarn compile && node ./dist/index.js",
"heroku": "git push heroku main",
"backup": "heroku git:remote -a radon-dev2 && yarn heroku && heroku git:remote -a radon-dev",
"deploy": "yarn heroku && yarn backup",
"release": "cj",
"preview": "cj --dry-run",
"compile": "tsup",
"watch": "tsup --watch --onSuccess \"node ./dist/index.js\"",
"postinstall": "husky install",
"logs": "heroku logs --app=radon-dev -t --force-colors",
"logs2": "heroku logs --app=radon-dev2 -t --force-colors",
"format": "prettier --write './src/**/*.ts' './README.md'",
"pretty": "prettier --check './src/**/*.ts' './README.md'",
"typecheck": "tsc -b src",
"lint": "eslint --fix --ext ts",
"deps": "yarn upgrade-interactive"
},
"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": "2.2.3",
"@sapphire/eslint-config": "5.0.3",
"@sapphire/prettier-config": "2.0.0",
"@sapphire/ts-config": "5.0.0",
"@swc/core": "1.3.100",
"@swc/helpers": "0.5.3",
"@types/colornames": "1.1.4",
"@types/gradient-string": "1.1.5",
"@types/node": "20.10.4",
"@types/string-similarity": "4.0.2",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"eslint": "8.55.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.0.1",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"prettier": "3.1.0",
"prisma": "5.7.0",
"tsup": "7.3.0",
"typescript": "5.3.3"
},
"dependencies": {
"@devtomio/plugin-botlist": "1.3.0",
"@prisma/client": "5.7.0",
"@sapphire/decorators": "6.0.3",
"@sapphire/discord-utilities": "3.2.1",
"@sapphire/discord.js-utilities": "7.1.3",
"@sapphire/duration": "1.1.1",
"@sapphire/framework": "4.8.5",
"@sapphire/plugin-editable-commands": "3.1.0",
"@sapphire/plugin-logger": "3.0.7",
"@sapphire/plugin-scheduled-tasks": "8.1.0",
"@sapphire/stopwatch": "1.5.1",
"@sapphire/type": "2.4.3",
"@sapphire/utilities": "3.14.0",
"bullmq": "4.15.2",
"colorette": "2.0.20",
"colornames": "1.1.1",
"confusables": "1.1.1",
"discord.js": "14.14.1",
"dotenv-cra": "3.0.3",
"gradient-string": "2.0.2",
"ioredis": "5.3.2",
"undici": "5.28.2"
},
"packageManager": "[email protected]",
"prettier": "@sapphire/prettier-config",
"lint-staged": {
"*.ts": "prettier --write",
"*.json": "prettier --write"
}
}