-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
63 lines (63 loc) · 2.4 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
{
"name": "mooncord",
"version": "1.2.0",
"description": "Moonraker Discord Bot based on Discord.js",
"main": "index.js",
"scripts": {
"migrateJson": "node src/migration/ConfigMigration.js",
"start": "node --max-old-space-size=64 --expose-gc dist/index.js",
"debugstart": "node --inspect=0.0.0.0:3000 --max-old-space-size=64 --trace_gc --expose-gc --trace-deprecation --trace-warnings --trace-uncaught --track-heap-objects dist/index.js",
"checkcodestyle": "npx eslint ./**",
"autofixcodestyle": "npx eslint ./** --fix",
"ncu": "ncu",
"generatelocale": "node src/helper/LocaleGenerationHelper.js",
"build": "esbuild src/Application.ts --tree-shaking=true --target=node20 --bundle --minify --color=true --platform=node --external:discord.js --external:sharp --define:process.env.FLUENTFFMPEG_COV=false --outfile=dist/index.js",
"watch": "esbuild src/Application.ts --tree-shaking=true --target=node20 --bundle --color=true --platform=node --watch --external:discord.js --external:sharp --define:process.env.FLUENTFFMPEG_COV=false --outfile=dist/index.js",
"docs/watch": "cd docs && docker-compose up --force-recreate --no-deps --build mkdocs",
"docs/build": "cd docs && bash build.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eliteSchwein/mooncord.git"
},
"keywords": [],
"author": "eliteSCHW31N",
"license": "ISC",
"bugs": {
"url": "https://github.com/eliteSchwein/mooncord/issues"
},
"homepage": "https://github.com/eliteSchwein/mooncord#readme",
"devDependencies": {
"@types/gm": "^1.25.4",
"@discordjs/rest": "^2.4.0",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/node": "^22.10.2",
"@types/readline-sync": "^1.4.8",
"async-wait-until": "2.0.18",
"axios": "^1.7.9",
"bytes": "^3.1.2",
"colorts": "^0.1.63",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"fluent-ffmpeg": "^2.1.3",
"form-data": "^4.0.1",
"gm": "^1.25.0",
"jimp": "^1.6.0",
"js-conf-parser": "^1.0.2",
"lodash": "^4.17.21",
"node-fetch": "^3.3.2",
"npm-check-updates": "^17.1.12",
"readline-sync": "^1.4.10",
"regex-parser": "^2.3.0",
"stacktrace-js": "^2.0.2",
"typescript": "^5.7.2",
"websocket-ts": "^2.1.5",
"ws": "^8.18.0"
},
"dependencies": {
"discord.js": "^14.16.3",
"sharp": "^0.33.5"
}
}