mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00
65 lines
1.9 KiB
JSON
65 lines
1.9 KiB
JSON
{
|
|
"name": "gdevelop",
|
|
"productName": "GDevelop 5",
|
|
"description": "GDevelop 5 IDE running on the Electron runtime",
|
|
"version": "1.0.0",
|
|
"author": "Florian Rival",
|
|
"license": "MIT",
|
|
"homepage": "http://gdevelop-app.com",
|
|
"repository": "github:4ian/GDevelop",
|
|
"private": true,
|
|
"scripts": {
|
|
"postinstall": "npm run import-zipped-electron-extensions && cd app && npm install",
|
|
"app-build": "node scripts/app-build.js",
|
|
"build": "node scripts/build.js",
|
|
"format": "prettier --write --ignore-path .gitignore \"**/*.js\"",
|
|
"check-format": "prettier --list-different --ignore-path .gitignore \"**/*.js\"",
|
|
"start": "electron app",
|
|
"reload-extensions": "cd ../app/scripts && node import-GDJS-Runtime.js",
|
|
"import-zipped-electron-extensions": "node scripts/import-zipped-electron-extension.js ReactDeveloperTools app/extensions/"
|
|
},
|
|
"build": {
|
|
"appId": "com.gdevelop-app.ide",
|
|
"extraResources": [
|
|
{
|
|
"from": "../app/resources/examples",
|
|
"to": "examples"
|
|
},
|
|
{
|
|
"from": "../app/resources/GDJS",
|
|
"to": "GDJS"
|
|
}
|
|
],
|
|
"appx": {
|
|
"publisherDisplayName": "GDevelop game engine",
|
|
"displayName": "GDevelop",
|
|
"publisher": "CN=B13CB8D3-97AA-422C-A394-0EE51B9ACAD3",
|
|
"identityName": "GDevelopgameengine.GDevelop"
|
|
},
|
|
"mac": {
|
|
"category": "public.app-category.developer-tools",
|
|
"hardenedRuntime": true,
|
|
"entitlements": "./build/entitlements.mac.inherit.plist"
|
|
},
|
|
"afterSign": "scripts/electron-builder-after-sign.js",
|
|
"publish": [
|
|
{
|
|
"provider": "github"
|
|
}
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"dotenv": "^8.2.0",
|
|
"electron": "8.2.5",
|
|
"electron-builder": "22.8.0",
|
|
"electron-notarize": "^0.2.1",
|
|
"minimist": "^1.2.3",
|
|
"prettier": "1.15.3",
|
|
"shelljs": "0.8.4",
|
|
"unzipper": "^0.9.11"
|
|
},
|
|
"dependencies": {
|
|
"electron-is": "^2.4.0"
|
|
}
|
|
}
|