scratch-desktop/package.json
Christopher Willis-Ford 4f28d86e70 upgrade to electron@^6.1.7 with MAS patch
This version of Electron includes a patch which:
- removes the use of some private APIs which were causing Electron apps
to be rejected by the Mac App Store, but
- might cause degraded performance on Mac.
2020-01-15 11:27:06 -08:00

67 lines
2.4 KiB
JSON

{
"name": "scratch-desktop",
"productName": "Scratch Desktop",
"description": "Scratch 3.0 as a self-contained desktop application",
"author": "Scratch Foundation",
"version": "3.7.0",
"license": "BSD-3-Clause",
"scripts": {
"start": "electron-webpack dev --bail --display-error-details --env.minify=false",
"build-gui": "node ./scripts/run-in-gui.js build",
"watch-gui": "node ./scripts/run-in-gui.js watch",
"clean": "rimraf ./dist/ ./static/assets/",
"compile": "rimraf ./dist/ && electron-webpack --bail --display-error-details --env.minify=false",
"fetch": "rimraf ./static/assets/ && mkdirp ./static/assets/ && node ./scripts/fetchMediaLibraryAssets.js",
"dist": "npm run build-gui && npm run fetch && npm run compile -p && node ./scripts/electron-builder-wrapper.js",
"dist:dir": "npm run dist -- --dir -c.compression=store -c.mac.identity=null",
"lint": "eslint --cache --color --ext .jsx,.js ."
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/LLK/scratch-desktop.git"
},
"dependencies": {
"source-map-support": "^0.5.12"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"async": "^2.6.2",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-react-intl": "^2.3.1",
"copy-webpack-plugin": "^4.6.0",
"electron": "^6.1.7",
"electron-builder": "^20.44.4",
"electron-devtools-installer": "^2.2.4",
"electron-store": "^3.3.0",
"electron-webpack": "^2.7.4",
"eslint": "^5.16.0",
"eslint-config-scratch": "^5.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-react": "^7.14.2",
"intl": "1.2.5",
"lodash.bindall": "^4.4.0",
"lodash.defaultsdeep": "^4.6.1",
"mkdirp": "^0.5.1",
"nets": "^3.2.0",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-intl": "2.4.0",
"react-redux": "5.0.7",
"redux": "3.7.2",
"rimraf": "^2.7.1",
"scratch-gui": "github:LLK/scratch-gui#scratch-desktop",
"source-map-loader": "^0.2.4",
"uglifyjs-webpack-plugin": "^2.1.3",
"uuid": "^3.3.3",
"webpack": "^4.39.3"
},
"resolutions": {
"upath": "^1.0.5"
}
}