-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "threejs-ply-loader",
"version": "2.0.2",
"description": "Node.js wrapper for three.js PLYLoader",
"main": "src/index.mjs",
"scripts": {
"test": "mocha tests",
"test:watch": "mocha -- --watch tests",
"test:coverage": "c8 mocha tests",
"example:cube-to-png": "cd examples && node ply-model-to-png.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lanceschi/threejs-ply-loader.git"
},
"keywords": [
"three.js",
"threejs",
"three",
"ply",
"PLYLoader",
"loader",
"loaders"
],
"author": "lanceschi",
"license": "MIT",
"bugs": {
"url": "https://github.com/lanceschi/threejs-ply-loader/issues"
},
"homepage": "https://github.com/lanceschi/threejs-ply-loader#readme",
"devDependencies": {
"c8": "^7.11.0",
"chai": "^4.3.6",
"eslint": "^8.8.0",
"mocha": "^9.2.0",
"pngjs": "^6.0.0",
"three": "^0.137.5",
"three-software-renderer": "https://github.com/lanceschi/three-software-renderer.git#feature/projector-update"
},
"peerDependencies": {
"three": "^0.125.1"
},
"dependencies": {
"cross-blob": "^3.0.1"
},
"engines": {
"node": ">=12.0.0"
},
"directories": {
"example": "examples"
}
}