-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
{
"name": "@gakuto1112/minecraft-discord-chat-sync",
"description": "Synchronizes Minecraft in-game chat and Discord chat",
"author": "Gakuto1112",
"version": "2.0.10",
"license": "MIT",
"keywords": [
"minecraft",
"discord",
"cli"
],
"homepage": "https://github.com/Gakuto1112/MinecraftDiscordChatSync",
"bugs": {
"url": "https://github.com/Gakuto1112/MinecraftDiscordChatSync/issues"
},
"files": [
"locales/",
"npm_scripts/",
"out/",
"tsconfig.json"
],
"bin": {
"minecraft-discord-chat-sync": "./npm_scripts/minecraft-discord-chat-sync.js",
"generate-locale": "./npm_scripts/generate-locale.js"
},
"scripts": {
"postinstall": "node ./npm_scripts/install.js",
"build": "tsc",
"start": "node ./out/MinecraftDiscordChatSync.js",
"generate_locale": "node ./out/locale_generator/LocaleDataGenerator.js",
"predebug": "tsc",
"debug": "node ./out/MinecraftDiscordChatSync.js -c -d",
"prepack": "tsc"
},
"dependencies": {
"@gakuto1112/nodejs-logger": "^1.0.0",
"discord.js": "^14.15.3",
"iconv-lite": "^0.6.3",
"rcon-client": "^4.2.4",
"unzipper": "^0.12.1"
},
"devDependencies": {
"@types/unzipper": "^0.10.9",
"ts-node": "^10.9.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Gakuto1112/MinecraftDiscordChatSync.git"
}
}