Files
GDevelop/GDJS/Runtime/Electron/package.json
T
Arthur Pacaud d6e2e99b98 Add appid to the elctron export (#2310)
And some scripts in the package
2021-02-16 17:23:09 +00:00

25 lines
557 B
JSON

{
"name": "GDJS_GAME_MANGLED_NAME",
"main": "main.js",
"productName": "GDJS_GAME_NAME",
"description": "GDJS_GAME_NAME",
"author": "GDJS_GAME_AUTHOR",
"version": "GDJS_GAME_VERSION",
"dependencies": {
"GDJS_EXTENSION_NPM_DEPENDENCY": "0"
},
"scripts": {
"start": "electron main.js",
"build": "electron-builder"
},
"devDependencies": {
"electron": "8.2.5",
"electron-builder": "22.9.1"
},
"build": {
"appId": "GDJS_GAME_PACKAGE_NAME",
"directories": {
"buildResources": "buildResources"
}
}
}