mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-19 12:57:16 +00:00
168 lines
5.4 KiB
JSON
168 lines
5.4 KiB
JSON
{
|
|
"name": "balena-etcher",
|
|
"private": true,
|
|
"displayName": "balenaEtcher",
|
|
"productName": "balenaEtcher",
|
|
"version": "1.19.1",
|
|
"packageType": "local",
|
|
"main": ".webpack/main",
|
|
"description": "Flash OS images to SD cards and USB drives, safely and easily.",
|
|
"productDescription": "Etcher is a powerful OS image flasher built with web technologies to ensure flashing an SDCard or USB drive is a pleasant and safe experience. It protects you from accidentally writing to your hard-drives, ensures every byte of data was written correctly and much more.",
|
|
"homepage": "https://github.com/balena-io/etcher",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:balena-io/etcher.git"
|
|
},
|
|
"scripts": {
|
|
"lint-css": "prettier --write lib/**/*.css",
|
|
"lint-ts": "balena-lint --fix --typescript typings lib tests forge.config.ts forge.sidecar.ts webpack.config.ts",
|
|
"lint": "npm run lint-ts && npm run lint-css",
|
|
"test-gui": "electron-mocha --recursive --reporter spec --window-config tests/gui/window-config.json --require ts-node/register/transpile-only --require-main tests/gui/allow-renderer-process-reuse.ts --full-trace --no-sandbox --renderer tests/gui/**/*.ts",
|
|
"test-shared": "electron-mocha --recursive --reporter spec --require ts-node/register/transpile-only --require-main tests/gui/allow-renderer-process-reuse.ts --full-trace --no-sandbox tests/shared/**/*.ts",
|
|
"test-windows": "npm run lint && npm run test-gui && npm run test-shared",
|
|
"test-macos": "npm run lint && npm run test-gui && npm run test-shared",
|
|
"test-linux": "npm run lint && xvfb-run --auto-servernum npm run test-gui && xvfb-run --auto-servernum npm run test-shared",
|
|
"test": "echo npm run test-{linux,windows,macos}",
|
|
"package": "electron-forge package",
|
|
"start": "electron-forge start",
|
|
"make": "electron-forge make"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"./**/*.{ts,tsx}": [
|
|
"npm run lint-ts"
|
|
],
|
|
"./**/*.css": [
|
|
"npm run lint-css"
|
|
]
|
|
},
|
|
"author": "Balena Ltd. <hello@balena.io>",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@balena/sudo-prompt": "9.2.1-workaround-windows-amperstand-in-username-0849e215b947987a643fe5763902aea201255534",
|
|
"@electron/remote": "^2.0.9",
|
|
"@fortawesome/fontawesome-free": "5.15.4",
|
|
"@sentry/electron": "^4.1.2",
|
|
"analytics-client": "^2.0.1",
|
|
"axios": "^0.27.2",
|
|
"d3": "4.13.0",
|
|
"debug": "4.3.4",
|
|
"electron-squirrel-startup": "^1.0.0",
|
|
"electron-updater": "5.3.0",
|
|
"etcher-sdk": "8.3.1",
|
|
"i18next": "21.10.0",
|
|
"immutable": "3.8.2",
|
|
"lodash": "4.17.21",
|
|
"node-ipc": "9.2.1",
|
|
"outdent": "0.8.0",
|
|
"path-is-inside": "1.0.2",
|
|
"pretty-bytes": "5.6.0",
|
|
"react": "16.8.5",
|
|
"react-dom": "16.8.5",
|
|
"react-i18next": "11.18.6",
|
|
"redux": "4.2.0",
|
|
"rendition": "19.3.2",
|
|
"semver": "7.3.8",
|
|
"styled-components": "5.3.6",
|
|
"sys-class-rgb-led": "3.0.1",
|
|
"uuid": "8.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@balena/lint": "5.4.2",
|
|
"@electron-forge/cli": "6.4.2",
|
|
"@electron-forge/maker-deb": "6.4.2",
|
|
"@electron-forge/maker-dmg": "6.4.2",
|
|
"@electron-forge/maker-rpm": "6.4.2",
|
|
"@electron-forge/maker-squirrel": "6.4.2",
|
|
"@electron-forge/maker-zip": "6.4.2",
|
|
"@electron-forge/plugin-auto-unpack-natives": "6.4.2",
|
|
"@electron-forge/plugin-webpack": "6.4.2",
|
|
"@reforged/maker-appimage": "3.3.1",
|
|
"@svgr/webpack": "5.5.0",
|
|
"@types/chai": "4.3.4",
|
|
"@types/copy-webpack-plugin": "6.4.3",
|
|
"@types/debug": "^4.1.12",
|
|
"@types/mime-types": "2.1.1",
|
|
"@types/mini-css-extract-plugin": "1.4.3",
|
|
"@types/mocha": "^9.1.1",
|
|
"@types/node": "^16.18.12",
|
|
"@types/node-ipc": "9.2.0",
|
|
"@types/react": "16.14.34",
|
|
"@types/react-dom": "16.9.17",
|
|
"@types/semver": "7.3.13",
|
|
"@types/sinon": "9.0.11",
|
|
"@types/tmp": "0.2.3",
|
|
"@vercel/webpack-asset-relocator-loader": "1.7.3",
|
|
"chai": "4.3.7",
|
|
"css-loader": "5.2.7",
|
|
"electron": "25.8.2",
|
|
"electron-mocha": "^11.0.2",
|
|
"file-loader": "6.2.0",
|
|
"husky": "4.3.8",
|
|
"lint-staged": "10.5.4",
|
|
"mini-css-extract-plugin": "1.6.2",
|
|
"mocha": "^9.1.1",
|
|
"native-addon-loader": "2.0.1",
|
|
"node-loader": "^2.0.0",
|
|
"omit-deep-lodash": "1.1.7",
|
|
"pkg": "^5.8.1",
|
|
"sinon": "9.2.4",
|
|
"string-replace-loader": "3.1.0",
|
|
"style-loader": "2.0.0",
|
|
"ts-loader": "^9.5.0",
|
|
"ts-node": "^10.9.1",
|
|
"tslib": "2.4.1",
|
|
"typescript": "4.4.4",
|
|
"url-loader": "4.1.1"
|
|
},
|
|
"hostDependencies": {
|
|
"debian": [
|
|
"gconf-service",
|
|
"gconf2",
|
|
"libasound2",
|
|
"libatk1.0-0",
|
|
"libc6",
|
|
"libcairo2",
|
|
"libcups2",
|
|
"libdbus-1-3",
|
|
"libexpat1",
|
|
"libfontconfig1",
|
|
"libfreetype6",
|
|
"libgbm1",
|
|
"libgcc1",
|
|
"libgconf-2-4",
|
|
"libgdk-pixbuf2.0-0",
|
|
"libglib2.0-0",
|
|
"libgtk-3-0",
|
|
"liblzma5",
|
|
"libnotify4",
|
|
"libnspr4",
|
|
"libnss3",
|
|
"libpango1.0-0 | libpango-1.0-0",
|
|
"libstdc++6",
|
|
"libx11-6",
|
|
"libxcomposite1",
|
|
"libxcursor1",
|
|
"libxdamage1",
|
|
"libxext6",
|
|
"libxfixes3",
|
|
"libxi6",
|
|
"libxrandr2",
|
|
"libxrender1",
|
|
"libxss1",
|
|
"libxtst6",
|
|
"polkit-1-auth-agent | policykit-1-gnome | polkit-kde-1"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=18 <20"
|
|
},
|
|
"versionist": {
|
|
"publishedAt": "2023-12-22T08:12:34.933Z"
|
|
}
|
|
}
|