-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.02 KB
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": "three-mcmodel",
"version": "0.2.1",
"description": "A library for working with Minecraft json models using three.js.",
"author": "Valentin Berlier <berlier.v@gmail.com>",
"license": "MIT",
"keywords": [
"minecraft-model",
"threejs",
"minecraft",
"minecraft-json-models",
"3d",
"threejs-loader",
"three"
],
"homepage": "https://github.com/vberlier/three-mcmodel#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vberlier/three-mcmodel.git"
},
"bugs": {
"url": "https://github.com/vberlier/three-mcmodel/issues"
},
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsc --watch",
"build": "tsc",
"clean": "rimraf lib",
"prepare": "npm run clean && npm run build"
},
"dependencies": {
"three": "^0.126.0"
},
"devDependencies": {
"@types/three": "^0.125.3",
"rimraf": "^3.0.0",
"typescript": "^4.2.2"
},
"files": [
"lib/**/*",
"src/**/*"
]
}