-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 979 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 979 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
46
{
"name": "minepack",
"version": "0.0.1",
"description": "Scaffold Minecraft Bedrock addon projects with ease.",
"bin": {
"minekit": "./bin/index.js"
},
"main": "./bin/index.js",
"type": "module",
"keywords": [
"minecraft",
"bedrock",
"addon",
"cli",
"scaffold",
"minekit"
],
"files": [
"src",
"bin",
"config",
"templates",
"README.md",
"LICENSE"
],
"author": "Wayfind Entertainment",
"license": "MIT",
"scripts": {
"format": "wayfindpc format",
"lint": "wayfindpc lint",
"start": "node bin/index.js"
},
"devDependencies": {
"wayfindpc": "^1.2.0"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"canvas": "^3.1.2",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"inquirer": "^12.6.3",
"uuid": "^11.1.0"
}
}