2016-10-05 17:42:02 +03:00
|
|
|
{
|
|
|
|
"name": "electron-forge",
|
2022-11-22 02:54:50 +03:00
|
|
|
"version": "0.0.0-development",
|
2018-04-11 10:03:01 +03:00
|
|
|
"private": true,
|
2016-10-05 17:42:02 +03:00
|
|
|
"license": "MIT",
|
2021-05-22 00:50:00 +03:00
|
|
|
"engines": {
|
2022-07-22 02:08:38 +03:00
|
|
|
"node": ">= 14.17.5"
|
2021-05-22 00:50:00 +03:00
|
|
|
},
|
2018-04-11 10:03:01 +03:00
|
|
|
"scripts": {
|
2022-11-14 22:12:29 +03:00
|
|
|
"clean": "rimraf dist && lerna exec -- rimraf dist tsconfig.tsbuildinfo",
|
2022-11-24 21:01:24 +03:00
|
|
|
"build": "tsc -b packages",
|
|
|
|
"build:watch": "yarn build --watch",
|
2018-04-28 06:20:03 +03:00
|
|
|
"postbuild": "ts-node tools/test-dist",
|
2022-11-24 21:01:24 +03:00
|
|
|
"docs": "yarn build && yarn docs:generate",
|
2022-11-14 22:12:29 +03:00
|
|
|
"docs:generate": "yarn docs:plugin && node --max-old-space-size=8192 -r ts-node/register ./tools/gen-docs.ts",
|
2022-10-25 01:52:45 +03:00
|
|
|
"docs:plugin": "cd ./tools/doc-plugin && yarn build",
|
2023-02-07 04:19:40 +03:00
|
|
|
"lerna:publish": "lerna publish --force-publish --conventional-commits --no-changelog --exact",
|
2023-06-10 03:29:13 +03:00
|
|
|
"lint:js": "prettier --check . && eslint .",
|
|
|
|
"lint:markdown": "electron-markdownlint \"**/*.md\"",
|
2023-06-16 00:24:38 +03:00
|
|
|
"lint:markdown-js": "electron-lint-markdown-standard --root . --ignore-path .markdownlintignore --semi \"**/*.md\"",
|
2023-06-10 03:29:13 +03:00
|
|
|
"lint:markdown-links": "electron-lint-markdown-links --root . --ignore-path .markdownlintignore \"**/*.md\"",
|
2023-06-16 00:24:38 +03:00
|
|
|
"lint": "npm run lint:js && npm run lint:markdown && npm run lint:markdown-js && npm run lint:markdown-links",
|
2022-10-11 21:25:36 +03:00
|
|
|
"lint:fix": "prettier --write .",
|
2023-04-27 00:28:35 +03:00
|
|
|
"link:prepare": "lerna exec -- node ../../../tools/silent.js yarn link --silent --no-bin-links --link-folder ../../../.links",
|
|
|
|
"link:remove": "lerna exec -- node ../../../tools/silent.js yarn unlink --silent --no-bin-links --link-folder ../../../.links",
|
2023-08-29 23:18:37 +03:00
|
|
|
"test": "xvfb-maybe cross-env NODE_ENV=test TS_NODE_PROJECT='./tsconfig.test.json' TS_NODE_FILES=1 mocha",
|
|
|
|
"test:fast": "npm run test -- --suite=fast",
|
|
|
|
"test:slow": "npm run test -- --suite=slow",
|
2022-10-26 23:02:20 +03:00
|
|
|
"postinstall": "rimraf node_modules/.bin/*.ps1 && ts-node ./tools/gen-tsconfigs.ts && ts-node ./tools/gen-ts-glue.ts",
|
2022-11-15 04:08:32 +03:00
|
|
|
"prepare": "husky install",
|
|
|
|
"preversion": "yarn build"
|
2017-01-02 03:38:25 +03:00
|
|
|
},
|
2016-10-05 17:42:02 +03:00
|
|
|
"dependencies": {
|
2021-09-09 00:25:28 +03:00
|
|
|
"@aws-sdk/abort-controller": "^3.29.0",
|
2021-08-30 09:19:47 +03:00
|
|
|
"@aws-sdk/client-s3": "^3.28.0",
|
|
|
|
"@aws-sdk/lib-storage": "^3.28.0",
|
|
|
|
"@aws-sdk/types": "^3.25.0",
|
2021-06-03 10:47:42 +03:00
|
|
|
"@doyensec/electronegativity": "^1.9.1",
|
2022-08-24 00:21:39 +03:00
|
|
|
"@electron/get": "^2.0.0",
|
2023-08-19 03:07:45 +03:00
|
|
|
"@electron/osx-sign": "^1.0.5",
|
2022-11-01 00:49:51 +03:00
|
|
|
"@electron/rebuild": "^3.2.10",
|
2021-07-11 20:32:29 +03:00
|
|
|
"@malept/cross-spawn-promise": "^2.0.0",
|
2020-12-04 09:35:14 +03:00
|
|
|
"@octokit/core": "^3.2.4",
|
2021-09-27 10:58:03 +03:00
|
|
|
"@octokit/plugin-retry": "^3.0.9",
|
2020-12-03 11:03:09 +03:00
|
|
|
"@octokit/rest": "^18.0.11",
|
2020-12-23 00:00:20 +03:00
|
|
|
"@octokit/types": "^6.1.2",
|
2022-01-09 20:44:42 +03:00
|
|
|
"chalk": "^4.0.0",
|
2020-02-05 01:49:42 +03:00
|
|
|
"commander": "^4.1.1",
|
2020-05-26 09:51:15 +03:00
|
|
|
"cross-spawn": "^7.0.3",
|
2021-05-23 00:31:22 +03:00
|
|
|
"cross-zip": "^4.0.0",
|
2020-11-20 10:30:17 +03:00
|
|
|
"debug": "^4.3.1",
|
2023-08-19 03:07:45 +03:00
|
|
|
"electron-packager": "^17.1.2",
|
2019-05-29 20:30:33 +03:00
|
|
|
"express": "^4.17.1",
|
2021-06-19 04:29:20 +03:00
|
|
|
"express-ws": "^5.0.2",
|
2021-07-23 21:12:20 +03:00
|
|
|
"fast-glob": "^3.2.7",
|
2022-06-16 21:12:59 +03:00
|
|
|
"filenamify": "^4.1.0",
|
2020-08-12 17:23:38 +03:00
|
|
|
"find-up": "^5.0.0",
|
2021-03-04 08:08:02 +03:00
|
|
|
"form-data": "^4.0.0",
|
2021-05-23 00:31:22 +03:00
|
|
|
"fs-extra": "^10.0.0",
|
2022-06-28 19:32:24 +03:00
|
|
|
"got": "^11.8.5",
|
2023-08-23 01:38:24 +03:00
|
|
|
"html-webpack-plugin": "^5.5.3",
|
2022-10-26 22:34:29 +03:00
|
|
|
"interpret": "^3.1.1",
|
2020-08-14 09:23:57 +03:00
|
|
|
"lodash": "^4.17.20",
|
2020-04-27 09:50:25 +03:00
|
|
|
"log-symbols": "^4.0.0",
|
2019-11-21 18:57:09 +03:00
|
|
|
"mime-types": "^2.1.25",
|
2022-01-25 04:31:21 +03:00
|
|
|
"node-fetch": "^2.6.7",
|
2017-03-30 08:27:00 +03:00
|
|
|
"parse-author": "^2.0.0",
|
2020-05-05 09:39:26 +03:00
|
|
|
"pretty-ms": "^7.0.0",
|
2022-06-24 22:02:20 +03:00
|
|
|
"progress": "^2.0.3",
|
2022-10-26 22:34:29 +03:00
|
|
|
"rechoir": "^0.8.0",
|
2016-12-30 05:45:44 +03:00
|
|
|
"resolve-package": "^1.0.1",
|
2020-04-10 17:59:27 +03:00
|
|
|
"semver": "^7.2.1",
|
2019-08-12 10:51:06 +03:00
|
|
|
"source-map-support": "^0.5.13",
|
2019-11-20 09:59:01 +03:00
|
|
|
"sudo-prompt": "^9.1.1",
|
2019-06-14 23:48:29 +03:00
|
|
|
"username": "^5.1.0",
|
2023-02-25 03:14:36 +03:00
|
|
|
"vite": "^4.1.1",
|
2022-02-21 10:29:43 +03:00
|
|
|
"webpack": "^5.69.1",
|
2021-08-19 19:23:40 +03:00
|
|
|
"webpack-dev-server": "^4.0.0",
|
2020-12-24 01:18:59 +03:00
|
|
|
"webpack-merge": "^5.7.3",
|
2019-11-21 18:57:21 +03:00
|
|
|
"which": "^2.0.2",
|
2020-09-09 10:32:09 +03:00
|
|
|
"xterm": "^4.9.0",
|
2021-03-04 09:27:00 +03:00
|
|
|
"xterm-addon-fit": "^0.5.0",
|
2021-03-04 09:27:37 +03:00
|
|
|
"xterm-addon-search": "^0.8.0",
|
2019-08-22 03:56:25 +03:00
|
|
|
"yarn-or-npm": "^3.0.1"
|
2016-12-03 15:50:40 +03:00
|
|
|
},
|
2018-04-11 10:03:01 +03:00
|
|
|
"devDependencies": {
|
2023-02-21 22:17:58 +03:00
|
|
|
"@electron/fuses": ">=1.0.0",
|
2023-06-16 00:24:38 +03:00
|
|
|
"@electron/lint-roller": "^1.6.0",
|
2022-10-31 22:50:39 +03:00
|
|
|
"@knodes/typedoc-plugin-monorepo-readmes": "0.22.5",
|
2022-01-09 21:38:17 +03:00
|
|
|
"@malept/eslint-config": "^2.0.0",
|
2020-07-24 08:09:00 +03:00
|
|
|
"@types/chai": "^4.2.12",
|
2019-08-11 21:14:56 +03:00
|
|
|
"@types/chai-as-promised": "^7.1.2",
|
2019-10-08 01:14:23 +03:00
|
|
|
"@types/cross-spawn": "^6.0.1",
|
2019-08-12 09:22:37 +03:00
|
|
|
"@types/debug": "^4.1.5",
|
2020-11-14 00:02:17 +03:00
|
|
|
"@types/express": "^4.17.9",
|
2018-05-04 10:38:18 +03:00
|
|
|
"@types/express-ws": "^3.0.0",
|
2019-06-17 12:32:19 +03:00
|
|
|
"@types/fetch-mock": "^7.3.1",
|
2020-12-29 05:12:03 +03:00
|
|
|
"@types/fs-extra": "^9.0.6",
|
2022-10-26 22:34:29 +03:00
|
|
|
"@types/interpret": "^1.1.1",
|
2019-08-10 04:22:29 +03:00
|
|
|
"@types/listr": "^0.14.2",
|
2020-12-24 08:10:19 +03:00
|
|
|
"@types/lodash": "^4.14.166",
|
2018-04-28 06:20:03 +03:00
|
|
|
"@types/mime-types": "^2.1.0",
|
2018-11-24 09:03:22 +03:00
|
|
|
"@types/minimist": "^1.2.0",
|
2021-07-23 18:41:25 +03:00
|
|
|
"@types/mocha": "^9.0.0",
|
2022-07-13 21:14:30 +03:00
|
|
|
"@types/node": "^18.0.3",
|
2020-02-25 08:29:24 +03:00
|
|
|
"@types/node-fetch": "^2.5.5",
|
2022-06-24 22:02:20 +03:00
|
|
|
"@types/progress": "^2.0.5",
|
2018-04-28 06:20:03 +03:00
|
|
|
"@types/proxyquire": "^1.3.28",
|
2022-10-26 22:34:29 +03:00
|
|
|
"@types/rechoir": "^0.6.1",
|
2020-09-16 08:05:34 +03:00
|
|
|
"@types/semver": "^7.3.4",
|
2021-05-18 02:47:03 +03:00
|
|
|
"@types/sinon": "^10.0.0",
|
2021-05-18 02:34:01 +03:00
|
|
|
"@types/sinon-chai": "^3.2.5",
|
2021-11-27 00:55:59 +03:00
|
|
|
"@types/which": "^2.0.0",
|
2021-10-18 08:00:33 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.0.0",
|
|
|
|
"@typescript-eslint/parser": "^5.0.0",
|
2021-03-04 09:06:09 +03:00
|
|
|
"chai": "^4.3.3",
|
2018-04-11 10:03:01 +03:00
|
|
|
"chai-as-promised": "^7.0.0",
|
2020-03-06 08:28:31 +03:00
|
|
|
"cross-env": "^7.0.2",
|
2020-06-27 04:04:28 +03:00
|
|
|
"electron-installer-common": "^0.10.2",
|
2021-10-18 08:45:59 +03:00
|
|
|
"eslint": "^8.0.1",
|
2022-10-26 20:37:16 +03:00
|
|
|
"eslint-plugin-import": "^2.26.0",
|
2021-06-03 16:57:25 +03:00
|
|
|
"eslint-plugin-mocha": "^9.0.0",
|
2021-09-12 20:44:30 +03:00
|
|
|
"eslint-plugin-node": "^11.1.0",
|
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2022-01-09 21:19:28 +03:00
|
|
|
"eslint-plugin-promise": "^6.0.0",
|
2021-09-12 20:44:30 +03:00
|
|
|
"eslint-plugin-tsdoc": "^0.2.14",
|
2020-08-23 10:23:25 +03:00
|
|
|
"fetch-mock": "^9.10.7",
|
2022-10-31 22:50:39 +03:00
|
|
|
"fork-ts-checker-webpack-plugin": "^7.2.13",
|
2019-06-26 08:40:32 +03:00
|
|
|
"generate-changelog": "^1.8.0",
|
2022-11-14 22:12:29 +03:00
|
|
|
"husky": "^7.0.1",
|
2022-11-22 00:14:47 +03:00
|
|
|
"inquirer": "^8.0.0",
|
2022-11-14 22:12:29 +03:00
|
|
|
"lerna": "^6.0.1",
|
|
|
|
"lint-staged": "^12.1.7",
|
2022-12-05 20:52:16 +03:00
|
|
|
"listr2": "^5.0.3",
|
2022-04-19 20:52:24 +03:00
|
|
|
"minimist": "^1.2.6",
|
2021-06-19 04:31:12 +03:00
|
|
|
"mocha": "^9.0.1",
|
2023-08-23 20:26:26 +03:00
|
|
|
"mocha-junit-reporter": "^2.2.1",
|
2021-09-12 20:44:30 +03:00
|
|
|
"prettier": "^2.4.0",
|
2019-08-13 17:37:44 +03:00
|
|
|
"proxyquire": "^2.1.3",
|
2020-01-28 08:33:06 +03:00
|
|
|
"rimraf": "^3.0.1",
|
2022-02-12 06:33:08 +03:00
|
|
|
"sinon": "^13.0.1",
|
2021-05-18 02:34:01 +03:00
|
|
|
"sinon-chai": "^3.6.0",
|
2022-12-05 20:52:16 +03:00
|
|
|
"syncpack": "^8.4.11",
|
2021-06-03 19:26:31 +03:00
|
|
|
"ts-node": "^10.0.0",
|
2022-05-03 20:29:31 +03:00
|
|
|
"typedoc": "^0.22.15",
|
2022-10-13 04:16:31 +03:00
|
|
|
"typedoc-plugin-missing-exports": "^1.0.0",
|
2022-07-22 02:30:17 +03:00
|
|
|
"typedoc-plugin-rename-defaults": "^0.6.4",
|
2022-05-03 20:29:31 +03:00
|
|
|
"typescript": "^4.6.3",
|
2022-11-16 04:13:08 +03:00
|
|
|
"xvfb-maybe": "^0.2.1",
|
|
|
|
"yaml-hook": "^1.0.0"
|
2016-12-04 08:17:39 +03:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
2023-06-05 23:41:55 +03:00
|
|
|
"@malept/electron-installer-flatpak": "^0.11.4",
|
2023-08-19 01:56:45 +03:00
|
|
|
"electron-installer-debian": "^3.2.0",
|
2022-05-02 21:28:36 +03:00
|
|
|
"electron-installer-dmg": "^4.0.0",
|
2020-07-24 18:35:04 +03:00
|
|
|
"electron-installer-redhat": "^3.2.0",
|
2023-06-05 23:41:55 +03:00
|
|
|
"electron-installer-snap": "^5.2.0",
|
2018-11-24 07:53:22 +03:00
|
|
|
"electron-windows-store": "^2.1.0",
|
2021-03-04 08:06:46 +03:00
|
|
|
"electron-winstaller": "^5.0.0",
|
2022-11-14 22:12:29 +03:00
|
|
|
"electron-wix-msi": "^5.0.0",
|
|
|
|
"macos-alias": "^0.2.11"
|
2020-02-25 23:29:42 +03:00
|
|
|
},
|
2023-02-21 22:17:58 +03:00
|
|
|
"peerDependencies": {
|
|
|
|
"@electron/fuses": ">=1.0.0"
|
|
|
|
},
|
2020-02-25 23:29:42 +03:00
|
|
|
"lint-staged": {
|
2021-09-12 20:44:30 +03:00
|
|
|
"*.{html,json,md,yml}": "prettier --write",
|
2022-10-26 23:02:20 +03:00
|
|
|
"*.{js,ts}": [
|
|
|
|
"prettier --write",
|
|
|
|
"eslint --fix"
|
2022-12-05 20:52:16 +03:00
|
|
|
],
|
|
|
|
"*.{json,lock}": "syncpack"
|
2020-02-25 23:29:42 +03:00
|
|
|
},
|
2021-09-12 20:44:30 +03:00
|
|
|
"prettier": {
|
|
|
|
"singleQuote": true
|
|
|
|
},
|
2022-11-14 22:12:29 +03:00
|
|
|
"workspaces": {
|
|
|
|
"packages": [
|
|
|
|
"packages/api/*",
|
|
|
|
"packages/external/*",
|
|
|
|
"packages/plugin/*",
|
|
|
|
"packages/maker/*",
|
|
|
|
"packages/publisher/*",
|
|
|
|
"packages/template/*",
|
|
|
|
"packages/utils/*"
|
|
|
|
]
|
2016-10-05 17:42:02 +03:00
|
|
|
}
|
|
|
|
}
|