forked from wikimedia/3d2png
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.32 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
{
"license": "MIT",
"bin": {
"3d2png": "./3d2png.js"
},
"maintainers": [
{
"email": "[email protected]",
"name": "Gilles Dubuc"
}
],
"name": "3d2png",
"dependencies": {
"canvas": "2.11.2",
"gl": "5.0.3",
"three": "0.88.0",
"yargs": "8.0.2"
},
"devDependencies": {
"image-ms-ssim": "latest",
"mocha": "latest",
"uuid": "latest",
"pngjs": "latest",
"service-runner": "latest"
},
"readme": "Converts STL files into PNG thumbnails",
"repository": {
"type": "git",
"url": "https://phabricator.wikimedia.org/diffusion/TDTP/3d2png.git"
},
"scripts": {
"test": "if test `uname -s` = 'Linux'; then xvfb-run -a -s '-ac -screen 0 1280x1024x24' node node_modules/mocha/bin/mocha; else node node_modules/mocha/bin/mocha; fi",
"build-deploy": "node node_modules/service-runner/service-runner build --deploy-repo --force --verbose"
},
"deploy": {
"node": "12.22.12",
"target": "debian:bullseye",
"dependencies": {
"debian": [
"pkg-config",
"libcairo2-dev",
"libjpeg-dev",
"libxi-dev",
"libgif-dev",
"libglu1-mesa-dev",
"libglew-dev",
"libpng-dev",
"xvfb",
"xauth",
"libgl1-mesa-dri",
"libgl1-mesa-glx"
]
}
},
"version": "0.0.2"
}