2018-09-06 14:20:27 -04:00
|
|
|
{
|
|
|
|
"name": "scratch-desktop",
|
2020-08-04 13:43:27 -04:00
|
|
|
"productName": "Scratch",
|
2018-09-06 14:20:27 -04:00
|
|
|
"description": "Scratch 3.0 as a self-contained desktop application",
|
2019-03-06 12:59:58 -05:00
|
|
|
"author": "Scratch Foundation",
|
2023-08-15 09:13:45 -04:00
|
|
|
"version": "3.30.5",
|
2018-09-06 14:20:27 -04:00
|
|
|
"license": "BSD-3-Clause",
|
2017-08-27 15:15:38 -04:00
|
|
|
"scripts": {
|
2020-08-11 19:21:14 -04:00
|
|
|
"clean": "rimraf ./dist ./static/assets",
|
2020-08-14 16:48:05 -04:00
|
|
|
"start": "mkdirp ./dist && electron-webpack dev --bail --display-error-details --env.minify=false --no-progress",
|
|
|
|
"compile": "mkdirp ./dist && electron-webpack --bail --display-error-details --env.minify=false --no-progress",
|
2018-10-31 18:40:27 -04:00
|
|
|
"fetch": "rimraf ./static/assets/ && mkdirp ./static/assets/ && node ./scripts/fetchMediaLibraryAssets.js",
|
2020-04-03 22:02:26 -04:00
|
|
|
"build": "npm run build:dev",
|
|
|
|
"build:dev": "npm run compile && npm run doBuild -- --mode=dev",
|
|
|
|
"build:dir": "npm run compile && npm run doBuild -- --mode=dir",
|
|
|
|
"build:dist": "npm run compile && npm run doBuild -- --mode=dist",
|
|
|
|
"doBuild": "node ./scripts/electron-builder-wrapper.js",
|
|
|
|
"dist": "npm run clean && npm run compile && npm run fetch && npm run doBuild -- --mode=dist",
|
2020-06-25 19:13:39 -04:00
|
|
|
"distDev": "npm run clean && npm run compile && npm run fetch && npm run doBuild -- --mode=dev",
|
2020-04-03 22:02:26 -04:00
|
|
|
"test": "npm run test:lint",
|
2020-09-01 15:01:53 -04:00
|
|
|
"test:lint": "eslint --cache --color --ext .jsx,.js ."
|
2017-08-27 15:15:38 -04:00
|
|
|
},
|
2018-10-31 18:02:01 -04:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2023-11-16 12:50:03 -05:00
|
|
|
"url": "git+ssh://git@github.com/scratchfoundation/scratch-desktop.git"
|
2018-10-31 18:02:01 -04:00
|
|
|
},
|
2017-08-27 15:15:38 -04:00
|
|
|
"dependencies": {
|
2024-02-20 14:14:23 -05:00
|
|
|
"source-map-support": "0.5.19"
|
2017-08-27 15:15:38 -04:00
|
|
|
},
|
2018-09-06 14:20:27 -04:00
|
|
|
"devDependencies": {
|
2024-10-13 11:28:00 -04:00
|
|
|
"@babel/core": "7.25.8",
|
2024-02-15 20:12:10 -05:00
|
|
|
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
|
|
|
|
"@babel/plugin-syntax-dynamic-import": "7.8.3",
|
2024-10-05 15:21:47 -04:00
|
|
|
"@babel/plugin-transform-async-to-generator": "7.25.7",
|
2024-10-13 11:28:00 -04:00
|
|
|
"@babel/plugin-transform-nullish-coalescing-operator": "7.25.8",
|
|
|
|
"@babel/plugin-transform-optional-chaining": "7.25.8",
|
|
|
|
"@babel/preset-env": "7.25.8",
|
2024-10-05 15:21:47 -04:00
|
|
|
"@babel/preset-react": "7.25.7",
|
2024-08-22 21:13:58 -04:00
|
|
|
"async": "3.2.6",
|
2023-04-07 14:24:05 -04:00
|
|
|
"autoprefixer": "9.8.8",
|
2024-02-15 20:12:10 -05:00
|
|
|
"babel-eslint": "10.1.0",
|
2024-09-19 14:17:20 -04:00
|
|
|
"babel-loader": "8.4.1",
|
2024-02-15 20:12:10 -05:00
|
|
|
"babel-plugin-react-intl": "7.9.4",
|
|
|
|
"copy-webpack-plugin": "5.1.2",
|
2024-02-21 19:37:28 -05:00
|
|
|
"css-loader": "1.0.1",
|
2024-02-21 18:57:28 -05:00
|
|
|
"electron": "23.3.13",
|
2024-02-15 20:12:10 -05:00
|
|
|
"electron-builder": "22.14.13",
|
|
|
|
"electron-devtools-installer": "3.2.0",
|
|
|
|
"electron-notarize": "1.2.2",
|
2024-03-11 04:24:21 -04:00
|
|
|
"electron-store": "8.2.0",
|
2024-02-15 20:12:10 -05:00
|
|
|
"electron-webpack": "2.8.2",
|
2024-09-19 11:35:07 -04:00
|
|
|
"eslint": "8.57.1",
|
2024-09-10 23:11:38 -04:00
|
|
|
"eslint-config-scratch": "9.0.9",
|
2024-10-06 06:38:31 -04:00
|
|
|
"eslint-plugin-import": "2.31.0",
|
2024-10-04 10:06:26 -04:00
|
|
|
"eslint-plugin-react": "7.37.1",
|
2024-02-15 20:12:10 -05:00
|
|
|
"fs-extra": "9.1.0",
|
2018-09-26 21:16:35 -04:00
|
|
|
"intl": "1.2.5",
|
2024-02-15 20:12:10 -05:00
|
|
|
"lodash.bindall": "4.4.0",
|
|
|
|
"lodash.defaultsdeep": "4.6.1",
|
|
|
|
"minilog": "3.1.0",
|
|
|
|
"minimist": "1.2.8",
|
|
|
|
"mkdirp": "1.0.4",
|
|
|
|
"nets": "3.2.0",
|
2023-04-07 14:24:05 -04:00
|
|
|
"postcss-import": "12.0.1",
|
|
|
|
"postcss-simple-vars": "5.0.2",
|
2023-04-05 16:59:09 -04:00
|
|
|
"react": "16.14.0",
|
|
|
|
"react-dom": "16.14.0",
|
2020-08-10 21:50:14 -04:00
|
|
|
"react-intl": "2.9.0",
|
2023-04-05 15:30:16 -04:00
|
|
|
"react-redux": "5.1.2",
|
2020-08-10 21:50:14 -04:00
|
|
|
"redux": "3.7.2",
|
2024-02-15 20:12:10 -05:00
|
|
|
"rimraf": "3.0.2",
|
2023-07-24 10:18:24 -04:00
|
|
|
"scratch-gui": "github:scratchfoundation/scratch-gui#scratch-desktop-v3.30.1",
|
2024-02-15 20:12:10 -05:00
|
|
|
"uuid": "8.3.2",
|
2024-02-22 05:38:10 -05:00
|
|
|
"webpack": "4.47.0",
|
2023-04-07 14:24:05 -04:00
|
|
|
"webpack-merge": "4.2.2"
|
2018-02-20 02:44:26 -05:00
|
|
|
},
|
|
|
|
"resolutions": {
|
2024-02-20 14:14:23 -05:00
|
|
|
"upath": "1.2.0"
|
2018-09-06 14:20:27 -04:00
|
|
|
}
|
|
|
|
}
|