-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.2 KB
/
package.json
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
{
"name": "minecraft-bedrock-debug-screen",
"version": "2.0.0",
"description": "A Minecraft Bedrock behavior pack that adds debug screen features",
"engines": {
"node": ">=16.7.0"
},
"main": "main.js",
"scripts": {
"dev": "node dev.js",
"format": "eslint . --ext .js --fix && npx prettier . --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GraphicArtQuest/Bedrock-Debug-Screen.git"
},
"keywords": [
"Minecraft",
"Minecraft-Bedrock"
],
"author": "M. Scott Lassiter, Wayfind Kids and Graphic Art Quest",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/GraphicArtQuest/Bedrock-Debug-Screen/issues"
},
"homepage": "https://github.com/GraphicArtQuest/Bedrock-Debug-Screen#readme",
"devDependencies": {
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8"
},
"dependencies": {
"@minecraft/server": "^1.12.0-beta.1.21.1-stable"
}
}