-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 959 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 959 Bytes
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
{
"name": "normun",
"version": "1.0.0",
"description": "Convert normal maps",
"repository": "ndixUR/normun",
"author": "ndix UR",
"main": "main.js",
"license": "BSD-2-Clause",
"scripts": {
"postinstall": "install-app-deps",
"start": "electron . --enable-logging",
"dist": "build -mw --x64"
},
"build": {
"appId": "normun",
"compression": "maximum",
"mac": {
"category": "public.app-category.graphics-design"
},
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": "NSIS"
}
},
"devDependencies": {
"electron": "^1.6.17",
"electron-builder": "^19.15.5"
},
"dependencies": {
"decode-dxt": "^1.0.1",
"bootstrap": "^3.3.7",
"vue": "^2.5.16",
"three.js": "^0.77.1"
}
}