-
-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.22 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.22 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
{
"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 <geek@gaminggeek.dev> (https://gaminggeek.dev/)",
"contributors": [
"The Aero Team <team@aero.bot> (https://aero.bot)"
],
"engines": {
"node": ">=24.13.0"
},
"scripts": {
"dev": "pnpm compile && pnpm rundev",
"rundev": "NODE_ENV=development node --enable-source-maps dist/src/index.js",
"compile": "rm -rf dist/ && tsc && pnpm gitinfo",
"start": "NODE_ENV=production node --enable-source-maps dist/src/index.js",
"format": "prettier . --write",
"gitinfo": "git rev-parse HEAD > dist/commit.txt && git rev-parse --abbrev-ref HEAD > dist/branch.txt"
},
"_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.3.2",
"@sapphire/async-queue": "^1.5.5",
"@sentry/node": "^10.38.0",
"@vellum-flags/sdk-node": "^0.0.7",
"centra": "^2.7.0",
"chalk": "^5.6.2",
"chrono-node": "^2.9.0",
"dayjs": "^1.11.19",
"discord-akairo": "github:discord-akairo/discord-akairo",
"discord-api-types": "^0.38.38",
"discord.js": "github:FireDiscordBot/discord.js",
"dotenv-extended": "^2.9.0",
"emoji-regex": "^10.6.0",
"form-data": "^4.0.5",
"fuzzball": "^2.2.3",
"i18next": "^25.8.1",
"module-alias": "^2.3.3",
"murmurhash-js": "^1.0.0",
"nanoid": "^5.1.6",
"p-event": "^7.1.0",
"pidusage": "^4.0.1",
"prettier": "^3.8.1",
"remove-markdown": "^0.6.3",
"semaphore-async-await": "^1.5.1",
"semver": "^7.7.3",
"tinycolor2": "^1.6.0",
"ts-postgres": "^2.0.4",
"typescript": "^5.9.3",
"uuid": "13.0.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/centra": "^2.2.3",
"@types/humanize-duration": "^3.27.4",
"@types/murmurhash-js": "^1.0.6",
"@types/node": "^25.2.0",
"@types/pidusage": "^2.0.5",
"@types/semver": "^7.7.1",
"@types/tinycolor2": "^1.4.6",
"@types/ws": "^8.18.1"
}
}