-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
48 lines (48 loc) · 1.1 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
46
47
48
{
"name": "minecraft-render",
"version": "1.1.1",
"description": "Minecraft gui block/item renderer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "nole ./src/**/*.test.ts"
},
"bin": {
"minecraft-render": "./bin/minecraft-render.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/co3moz/minecraft-render.git"
},
"bugs": {
"url": "https://github.com/co3moz/minecraft-render/issues"
},
"homepage": "https://github.com/co3moz/minecraft-render#readme",
"keywords": [
"minecraft",
"render",
"block",
"item"
],
"author": "co3moz",
"license": "MIT",
"dependencies": {
"assign-deep": "^1.0.1",
"canvas": "^2.8.0",
"commander": "^8.1.0",
"crc": "^3.8.0",
"node-canvas-webgl": "^0.2.6",
"node-stream-zip": "^1.13.6",
"three": "^0.130.1"
},
"devDependencies": {
"@types/crc": "^3.4.0",
"@types/node-fetch": "^2.5.12",
"@types/three": "^0.130.1",
"mkdirp": "^1.0.4",
"node-fetch": "^2.6.1",
"nole": "^1.0.12",
"typescript": "^4.3.5"
}
}