-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
85 lines (85 loc) · 2.51 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
{
"name": "firediscordbot",
"version": "1.1.0",
"description": "Fire is a Discord bot that hopes to be the only one you'll need!",
"main": "dist/index",
"repository": "https://github.com/FireDiscordBot/bot.git",
"author": "GamingGeek <[email protected]> (https://gaminggeek.dev/)",
"contributors": [
"The Aero Team <[email protected]> (https://aero.bot)"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"dev": "yarn compile && yarn rundev",
"litecord": "yarn compile && yarn runlc",
"rundev": "NODE_ENV=development node dist/src/index.js",
"runlc": "NODE_ENV=litecord node dist/src/index.js",
"compile": "rm -rf dist/ && tsc && git rev-parse HEAD > dist/commit.txt",
"start": "NODE_ENV=production node dist/src/index.js",
"format": "prettier . --write"
},
"_moduleAliases": {
"@fire/lib": "dist/lib",
"@fire/src": "dist/src",
"@fire/config": "dist/config",
"@fire/i18n": "dist/languages"
},
"license": "AGPL-3.0-only",
"dependencies": {
"@aero/sanitizer": "^1.2.0",
"@discordjs/form-data": "^3.0.1",
"@discordjs/voice": "^0.16.1",
"@sapphire/async-queue": "^1.5.0",
"@sentry/node": "^6.19.7",
"@skyra/timestamp": "^1.0.0",
"archiver": "^5.3.1",
"centra": "^2.5.0",
"chrono-node": "^2.7.5",
"dayjs": "^1.11.10",
"discord-akairo": "discord-akairo/discord-akairo",
"discord-api-types": "^0.37.14",
"discord.js": "FireDiscordBot/discord.js",
"dotenv-extended": "^2.9.0",
"emoji-regex": "^10.1.0",
"fuzzball": "^2.1.2",
"i18next": "^21.9.1",
"libsodium-wrappers": "^0.7.13",
"module-alias": "^2.2.2",
"murmurhash-js": "^1.0.0",
"nanoid": "^3.3.4",
"node-color-log": "^7.0.0",
"opusscript": "^0.1.1",
"p-event": "^4.2.0",
"pidusage": "^2.0.21",
"prettier": "^2.6.2",
"semaphore-async-await": "^1.5.1",
"semver": "^7.5.4",
"source-map-support": "^0.5.21",
"tinycolor2": "^1.4.2",
"ts-postgres": "^1.3.0",
"typescript": "^5.5.1-rc",
"uuid": "^8.3.2",
"ws": "^8.8.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.6",
"utf-8-validate": "^5.0.8"
},
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/centra": "^2.2.0",
"@types/humanize-duration": "^3.27.1",
"@types/murmurhash-js": "^1.0.3",
"@types/node": "^16.11.7",
"@types/pidusage": "^2.0.2",
"@types/semver": "^7.5.0",
"@types/tinycolor2": "^1.4.3",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.3"
},
"volta": {
"node": "16.13.2"
}
}