-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
59 lines (59 loc) · 1.54 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "prismarine-viewer",
"version": "1.29.0",
"description": "Web based viewer",
"main": "index.js",
"scripts": {
"jestTest": "jest --verbose --runInBand --forceExit",
"test": "npm run test",
"pretest": "npm run lint",
"lint": "standard",
"prepare": "node viewer/prerender.js && webpack",
"fix": "standard --fix"
},
"author": "PrismarineJS",
"license": "MIT",
"standard": {
"ignore": [
"examples/electron/",
"examples/exporter/",
"examples/standalone/",
"examples/web_client/"
]
},
"dependencies": {
"@tweenjs/tween.js": "^23.1.1",
"compression": "^1.7.4",
"express": "^4.17.1",
"minecraft-data": "^3.0.0",
"prismarine-block": "^1.7.3",
"prismarine-chunk": "^1.22.0",
"prismarine-world": "^3.3.1",
"socket.io": "^4.0.0",
"socket.io-client": "^4.0.0",
"three": "0.128.0",
"three.meshline": "^1.3.0",
"vec3": "^0.1.7"
},
"devDependencies": {
"assert": "^2.0.0",
"buffer": "^6.0.3",
"canvas": "^2.6.1",
"fs-extra": "^11.0.0",
"jest": "^27.0.4",
"jest-puppeteer": "^6.0.0",
"minecraft-assets": "^1.9.0",
"minecraft-wrap": "^1.3.0",
"minecrafthawkeye": "^1.2.5",
"mineflayer": "^4.0.0",
"mineflayer-pathfinder": "^2.0.0",
"node-canvas-webgl": "PrismarineJS/node-canvas-webgl",
"prismarine-schematic": "^1.2.0",
"prismarine-viewer": "file:./",
"process": "^0.11.10",
"puppeteer": "^16.0.0",
"standard": "^17.1.0",
"webpack": "^5.10.2",
"webpack-cli": "^5.1.1"
}
}