forked from stephomi/sculptgl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
{
"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": "^4.0.2",
"yagui": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^7.0.0",
"electron": "^11.2.3",
"electron-packager": "^15.2.0",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
},
"scripts": {
"dev": "node_modules/.bin/webpack -w",
"release": "node_modules/.bin/webpack --env release",
"webad": "node_modules/.bin/webpack --env.webad",
"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"
}
}