-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.02 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
{
"name": "hytale-server-manager",
"version": "1.0.0",
"description": "Easy-to-use Hytale server setup and management tool with Discord integration",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"setup": "node dist/setup-wizard.js",
"start": "node dist/index.js",
"discord": "node dist/discord-bot.js",
"register-commands": "node dist/register-commands.js",
"clean": "rimraf dist",
"prepare": "husky"
},
"bin": {
"hytale-setup": "./dist/setup-wizard.js"
},
"keywords": [
"hytale",
"server",
"game-server",
"discord",
"typescript"
],
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"inquirer": "^9.2.12",
"node-fetch": "^3.3.2",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.0",
"husky": "^9.1.7",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
}
}