-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1021 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1021 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
{
"name": "create-mc-bedrock",
"version": "1.4.2",
"description": "create-mc-bedrock is a simple and interactive CLI tool to help you quickly set up Minecraft Bedrock workspaces with given templates from both Microsoft's and Customs!",
"main": "src/cli/index.js",
"bin": {
"create-mc-bedrock": "src/cli/index.js"
},
"scripts": {
"start": "node src/cli/index.js",
"publish": "npm publish"
},
"keywords": [
"minecraft",
"bedrock",
"cli",
"create"
],
"author": "keyyard",
"homepage": "https://bedrockcli.keyyard.xyz",
"repository": {
"type": "git",
"url": "https://github.com/keyyard/create-mc-bedrock-cli.git",
"directory": "/"
},
"bugs": {
"url": "https://github.com/keyyard/create-mc-bedrock-cli/issues"
},
"engines": {
"node": ">=14"
},
"files": [
"src/",
"README.md",
"medias/"
],
"license": "MIT",
"dependencies": {
"inquirer": "^9.3.7",
"unzipper": "^0.12.0",
"uuid": "^9.0.0"
},
"type": "module"
}