-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.34 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.34 KB
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
{
"name": "koalabot",
"version": "2.0.0",
"description": "Discord.js v14 Bot for managing Minecraft Servers.",
"main": "src/index.ts",
"scripts": {
"dev": "rm -rf dist && tsc && cp src/assets/minecraft.ttf dist/assets/minecraft.ttf && node dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "rm -rf dist && tsc && cp src/assets/minecraft.ttf dist/assets/minecraft.ttf",
"deploy": "rm -rf dist && tsc && cp src/assets/minecraft.ttf dist/assets/minecraft.ttf && NODE_ENV=production node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/defnot001/KiwiTech-Bot.git"
},
"author": "defnot",
"license": "MIT",
"bugs": {
"url": "https://github.com/defnot001/KiwiTech-Bot/issues"
},
"homepage": "https://github.com/defnot001/KiwiTech-Bot#readme",
"dependencies": {
"axios": "1.4.0",
"canvas": "2.11.2",
"discord.js": "14.13.0",
"djs-handlers": "1.0.6",
"dotenv": "16.3.1",
"glob": "10.3.3",
"minecraft-server-util": "5.3.1",
"ptero-client": "1.1.3",
"save-dev": "^0.0.1-security",
"zod": "3.22.1"
},
"devDependencies": {
"@types/glob": "8.1.0",
"@types/node": "20.5.0",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
"eslint": "^8.47.0",
"typescript": "^5.1.6"
}
}