-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 850 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 850 Bytes
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
{
"name": "makemcserver",
"description": "A cli tool to easily create a new Minecraft server",
"version": "1.1.0",
"bin": {
"makemcserver": "dist/index.js"
},
"main": "src/index.ts",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"keywords": [
"minecraft",
"fabric",
"fabricmc",
"forge",
"forgemc",
"minecraftforge",
"neoforge",
"neoforged",
"papermc",
"server",
"cli"
],
"author": "shock59",
"license": "MIT",
"type": "module",
"files": [
"dist/**/*"
],
"devDependencies": {
"@types/node": "^24.3.0",
"@types/prompts": "^2.4.9",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
},
"dependencies": {
"env-paths": "^3.0.0",
"ora": "^8.2.0",
"prompts": "^2.4.2",
"yaml": "^2.8.1"
}
}