-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 1.85 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
57
58
59
60
61
62
63
{
"name": "crystal-project-randomizer",
"version": "1.1.1",
"description": "An app to randomize the game The Crystal Project in various ways",
"main": "main.js",
"build": {
"productName": "Crystal Project Randomizer",
"appId": "crystal.project.randomizer",
"files": [
"**/*",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
"!**/node_modules/*.d.ts",
"!**/node_modules/.bin",
"!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}",
"!.editorconfig",
"!**/Crystal Project.exe",
"!**/Crystal Project.exe.bak",
"!Content",
"!Content-backup",
"!settings.json",
"!**/._*",
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}",
"!**/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}",
"!**/{appveyor.yml,.travis.yml,circle.yml}",
"!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}"
],
"win": {
"target": "portable",
"icon": "baseline_swap_horizontal_circle_black_48dp.png"
},
"mac": {
"target": "dmg",
"category": "public.app-category.utilities",
"identity": null,
"icon": "icon.png",
"extendInfo": {
"LSUIElement": 1
}
}
},
"postinstall": "electron-builder install-app-deps",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder -w",
"dist-mac": "electron-builder -m"
},
"author": "",
"license": "ISC",
"dependencies": {
"adm-zip": "^0.5.9",
"asar": "^3.1.0",
"bootstrap": "^5.1.3",
"htm": "^3.1.1",
"random-seed": "^0.3.0"
},
"devDependencies": {
"electron": "^18.1.0",
"electron-builder": "^23.0.3",
"electron-rebuild": "^3.2.7"
}
}