This repository was archived by the owner on Dec 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.01 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.01 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
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
{
"name": "ce-discord-bot",
"version": "1.0.0",
"description": "The Cyber Empire's Discord Bot",
"main": "built/index.js",
"scripts": {
"test": "npm run check-format && npm run rebuild && npm run start",
"format": "prettier -w src/*",
"check-format": "prettier -c src/*",
"start": "node .",
"build": "tsc",
"rebuild": "npm run clean && npm run build",
"clean": "rm -rf built"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Caesarovich/ce-discord-bot.git"
},
"author": "Caesarovich",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Caesarovich/ce-discord-bot/issues"
},
"homepage": "https://github.com/Caesarovich/ce-discord-bot#readme",
"eslintConfig": {
"extends": "@sapphire"
},
"dependencies": {
"@sapphire/eslint-config": "^4.2.1",
"@sapphire/framework": "^2.0.0-next.71c18830.0",
"@sapphire/ts-config": "^3.0.0",
"@types/crypto-js": "^4.0.2",
"@types/validator": "^13.6.3",
"abort-controller": "^3.0.0",
"ansi-styles": "^6.1.0",
"asynckit": "^0.4.0",
"callsites": "^4.0.0",
"canvas": "^2.9.1",
"chalk": "^4.1.2",
"color-convert": "^2.0.1",
"color-name": "^1.1.4",
"combined-stream": "^1.0.8",
"common-tags": "^1.8.0",
"config-chain": "^1.1.13",
"crypto-js": "^4.1.1",
"delayed-stream": "^1.0.0",
"discord-api-types": "^0.27.3",
"discord.js": "^13.6.0",
"discord.js-commando": "^0.12.3",
"dot-prop": "^7.2.0",
"dotenv": "^16.0.0",
"emoji-regex": "^10.0.0",
"event-target-shim": "^6.0.2",
"extend": "^3.0.2",
"form-data": "^4.0.0",
"has-flag": "^5.0.1",
"ini": "^2.0.0",
"is-obj": "^3.0.0",
"is-promise": "^4.0.0",
"lodash.isequal": "^4.5.0",
"mariadb": "^2.5.4",
"mime-db": "^1.49.0",
"mime-types": "^2.1.32",
"node-fetch": "^3.2.0",
"ow": "^0.28.1",
"proto-list": "^1.2.4",
"require-all": "^3.0.0",
"sequelize": "^6.6.5",
"supports-color": "^9.2.1",
"ts-mixer": "^6.0.0",
"tslib": "^2.3.1",
"type-fest": "^2.12.0",
"typescript": "^4.4.3",
"vali-date": "^1.0.0",
"ws": "^8.5.0"
}
}