-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.8 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "gamestarmechanic",
"productName": "Gamestar Mechanic",
"version": "1.3.2",
"description": "Gamestar Mechanic uses fun, game-based quests and courses to help you learn game design and make your own video games!",
"main": "src/index.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "echo \"No linting configured\"",
"pack": "electron-builder --dir",
"dist": "electron-builder --linux --x64"
},
"keywords": [],
"author": {
"name": "E-Line Media",
"email": "[email protected]"
},
"license": "MIT",
"build": {
"appId": "com.gamestarmechanic",
"productName": "Gamestar Mechanic",
"files": [
"src/**/*",
"package.json",
"package-lock.json"
],
"asar": false,
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true
},
"mac": {
"target": "dmg",
"category": "public.app-category.education",
"icon": "build/icon.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"type": "distribution",
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
}
},
"config": {
"forge": {
"packagerConfig": {
"name": "gamestarmechanic",
"appBundleId": "com.elinemedia.gamestarmechanic",
"platform": "all",
"appCopyright": "Copyright (C) 2021 Gamestar Mechanic",
"icon": "res/icon/icon",
"protocols": {
"name": "gamestarmechanic-deep-linking",
"schemes": [
"gsm"
]
}
},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "gamestarmechanic"
}
},
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin",
"linux"
]
},
{
"name": "@electron-forge/maker-deb",
"config": {
"name": "gamestarmechanic"
}
},
{
"name": "@electron-forge/maker-rpm",
"config": {}
}
]
}
},
"dependencies": {
"electron-json-storage": "^4.3.0",
"electron-log": "^4.3.0",
"electron-prompt": "^1.6.0",
"electron-squirrel-startup": "^1.0.0"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.54",
"@electron-forge/maker-deb": "^6.0.0-beta.54",
"@electron-forge/maker-rpm": "^6.0.0-beta.54",
"@electron-forge/maker-squirrel": "^6.0.0-beta.54",
"@electron-forge/maker-zip": "^6.0.0-beta.54",
"electron": "10.1.5",
"electron-builder": "^22.9.1",
"electron-notarize": "^1.0.0"
}
}