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
|
{
"name": "shulker",
"version": "3.2.0",
"description": "A Discord to Minecraft Chat Gateway",
"main": "build/index.js",
"scripts": {
"start": "node build/index.js",
"build": "tsc",
"type-check": "tsc --noEmit",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/destruc7i0n/shulker.git"
},
"keywords": [
"Discord",
"Bot"
],
"author": "destruc7i0n",
"license": "ISC",
"bugs": {
"url": "https://github.com/destruc7i0n/shulker/issues"
},
"homepage": "https://github.com/destruc7i0n/shulker#readme",
"dependencies": {
"axios": "^0.26.1",
"discord.js": "13.6.0",
"emoji-strip": "^1.0.1",
"express": "^4.17.3",
"tail": "^2.2.4"
},
"devDependencies": {
"@types/emoji-strip": "^1.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/tail": "^2.2.1",
"dotenv": "^16.0.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
}
}
|