forked from PrismarineJS/minecraft-inventory-gui
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.04 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
39
40
41
42
43
44
45
{
"name": "minecraft-inventory-gui",
"version": "1.0.1",
"description": "Render Minecraft inventory GUIs in the browser",
"main": "index.mjs",
"directories": {
"lib": "lib"
},
"type": "module",
"scripts": {
"test": "npm run lint",
"lint": "standard --env browser",
"fix": "standard --env browser --fix",
"dev": "serve",
"prepublishOnly": "cp docs/README.md README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PrismarineJS/minecraft-inventory-gui.git"
},
"keywords": [
"minecraft",
"inventory"
],
"author": "extremeheat",
"license": "MIT",
"bugs": {
"url": "https://github.com/PrismarineJS/minecraft-inventory-gui/issues"
},
"homepage": "https://github.com/PrismarineJS/minecraft-inventory-gui#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"standard": "^16.0.4",
"mineflayer": "^4.13.0"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"web/bedrock/*"
]
},
"dependencies": {
"valtio": "^1.11.2"
}
}