-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.54 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.54 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
44
45
46
47
48
49
50
{
"name": "kiwitech-bot",
"version": "2.0.0",
"description": "Discord.js v14 Bot for managing Minecraft Servers.",
"main": "./src/index.ts",
"type": "commonjs",
"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": {
"@prisma/client": "5.1.1",
"@types/express": "^4.17.17",
"axios": "1.4.0",
"body-parser": "^1.20.2",
"canvas": "2.11.2",
"discord.js": "14.12.0",
"djs-handlers": "1.0.6",
"dotenv": "16.3.1",
"express": "^4.18.2",
"glob": "10.3.3",
"minecraft-server-util": "^5.3.1",
"ptero-client": "1.1.3",
"save-dev": "^0.0.1-security",
"sharp": "0.32.5",
"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",
"prisma": "5.1.1",
"typescript": "5.1.6"
}
}