forked from eliteSchwein/mooncord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 2.07 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
{
"name": "mooncord",
"version": "1.0.1",
"description": "Moonraker Discord Bot based on Discord.js",
"main": "index.js",
"scripts": {
"start": "node --expose-gc dist/index.js",
"debugstart": "node --trace_gc --expose-gc --trace-deprecation --trace-warnings --trace-uncaught --track-heap-objects dist/index.js",
"checkcodestyle": "npx eslint ./**",
"autofixcodestyle": "npx eslint ./** --fix",
"generatelocale": "node src/helper/LocaleGenerationHelper.js",
"build": "esbuild src/Application.ts --tree-shaking=true --bundle --minify --color=true --platform=node --external:discord.js --external:sharp --external:@ffmpeg-installer/ffmpeg --define:process.env.FLUENTFFMPEG_COV=false --outfile=dist/index.js",
"watch": "esbuild src/Application.ts --tree-shaking=true --bundle --minify --color=true --platform=node --watch --external:discord.js --external:sharp --external:@ffmpeg-installer/ffmpeg --define:process.env.FLUENTFFMPEG_COV=false --outfile=dist/index.js"
},
"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": {
"@discordjs/rest": "^1.3.0",
"@types/fluent-ffmpeg": "^2.1.20",
"@types/node": "^18.8.3",
"@types/sharp": "^0.31.0",
"async-wait-until": "2.0.12",
"axios": "^1.1.0",
"bytes": "^3.1.2",
"colorts": "^0.1.63",
"esbuild": "^0.15.10",
"eslint": "^8.24.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"fluent-ffmpeg": "^2.1.2",
"form-data": "^4.0.0",
"lodash": "^4.17.21",
"node-fetch": "^3.2.10",
"shelljs": "^0.8.5",
"stacktrace-js": "^2.0.2",
"typescript": "^4.8.4",
"websocket-ts": "^1.1.1",
"ws": "^8.9.0"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"discord.js": "^13.11.0",
"sharp": "^0.31.1"
}
}