forked from stephomi/sculptgl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.18 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
{
"name": "SculptGL",
"homepage": "https://github.com/stephomi/sculptgl",
"version": "0.9.0",
"description": "A WebGL digital sculpting app",
"author": "Stéphane GINIER",
"license": "MIT",
"main": "main.js",
"dependencies": {
"file-saver": "^2.0.2",
"gl-matrix": "^3.1.0",
"hammerjs": "^2.0.8",
"raw-loader": "^3.1.0",
"yagui": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.1.1",
"electron": "^6.1.7",
"electron-packager": "^14.2.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"scripts": {
"dev": "node_modules/.bin/webpack -w",
"release": "node_modules/.bin/webpack --env.release",
"website": "node_modules/.bin/webpack --env.website",
"buildElectron": "yarn release && rm -rf standalone/app/ && cp -R app/ standalone/ && cp package.json standalone",
"standalone": "yarn buildElectron && cd standalone && node buildStandalone.js"
},
"repository": {
"type": "git",
"url": "https://github.com/stephomi/sculptgl.git"
},
"bugs": {
"url": "https://github.com/stephomi/sculptgl/issues"
}
}