forked from w3dot0/node-threejs-thumbnailer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "node-threejs-thumbnailer",
"version": "0.0.1",
"description": "Nodejs thumbnailing service for 3D STL files.",
"main": "index.js",
"scripts": {
"build": "tsc",
"example-server": "npm run build && node dist/examples/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/w3dot0/node-threejs-thumbnailer.git"
},
"keywords": [
"stl",
"three",
"threejs",
"thumbnail",
"render",
"node",
"nodejs",
"3d",
"model",
"stereolithography",
"server-side",
"gpu"
],
"author": "w3dot0",
"license": "MIT",
"bugs": {
"url": "https://github.com/w3dot0/node-threejs-thumbnailer/issues"
},
"homepage": "https://github.com/w3dot/node-threejs-thumbnailer#readme",
"dependencies": {
"express": "^4.16.2",
"gl": "^4.0.4",
"lodash": "^4.17.4",
"mock-browser": "^0.92.14",
"request": "^2.79.0",
"three": "^0.84.0",
"three-png-stream": "^1.0.3"
},
"devDependencies": {
"@types/node": "^9.3.0"
}
}