This repository was archived by the owner on Nov 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.31 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.31 KB
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
{
"name": "MapEditor",
"version": "1.0.0",
"description": "A cool Map Editor for BotW",
"main": "Start.js",
"dependencies": {
"child_process": "^1.0.2",
"esm": "^3.2.25",
"owoify-js": "^1.0.7",
"python-shell": "^3.0.0",
"three": "^0.127.0"
},
"devDependencies": {
"electron": "^13.2.1",
"electron-builder": "^22.11.7",
"electron-packager": "^15.2.0",
"eslint": "^7.32.0"
},
"scripts": {
"start": "electron --js-flags=--max-old-space-size=4096 .",
"oldBuild": "electron-packager ./ SilentPrincess --platform=win32 --arch=x64 --out=build --icon=./Assets/UI/Icon/MapEditorIconDarkMode-Alt.ico --ignore='^/Cache$'",
"build": "electron-builder",
"lint": "eslint ./HTML -c .eslintrc.json --ignore-path .eslintignore",
"lintfix": "eslint ./HTML --fix -c .eslintrc.json --ignore-path .eslintignore"
},
"author": "S41L0R, SDarkMagic, Arcaith",
"license": "ISC",
"standard": {
"ignore": [
"/lib/"
]
},
"build": {
"appId": "Silent-Princess.MapEditor",
"productName": "Silent-Princess",
"mac": {
"category": "use.windows.not.mac"
},
"win": {
"target": "nsis",
"icon": "Assets/UI/MapEditorIconDarkMode-Alt.ico"
},
"directories": {
"output": "release"
},
"asar": false,
"files": "!Cache"
}
}