forked from node-link/minecord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
{
"name": "minecord",
"version": "0.0.25",
"description": "Connects Discord and Minecraft Servers without any mods or plugins.",
"main": "./dist/src/index.js",
"module": "src/index.ts",
"files": [
"dist"
],
"bin": {
"minecord": "./lib/index.js"
},
"scripts": {
"serve": "ts-node src/index.ts",
"build": "tsc",
"start": "node dist/src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-link/minecord.git"
},
"keywords": [
"Discord",
"Minecraft"
],
"author": "moriyama@node-link.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/node-link/minecord/issues"
},
"homepage": "https://github.com/node-link/minecord#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@types/node": "^11.13.4",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"typescript": "^3.4.3"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"chokidar": "^2.0.4",
"commander": "^2.19.0",
"discord.js": "^11.4.2",
"iconv-lite": "^0.4.24",
"modern-rcon": "^1.0.3"
}
}