forge/package.json

183 строки
6.1 KiB
JSON
Исходник Обычный вид История

2016-10-05 17:42:02 +03:00
{
"name": "electron-forge",
2022-10-24 20:39:53 +03:00
"version": "6.0.0-beta.68",
feat(core): V6 API (#433) * temp * Start working in new package structure * Example maker * All makers implemented and tests passing on darwin * Add v6 branches to travis config * Add v6 branches to appveyor config * Gitignore _old * Remove FIXME comments * Remove from CI branch whitelist * Install bolt on docker * Add to whitelist * Fix bolt usage on CI * Run bolt build on CI * Fix tests on CI * Fix linting * Fix CI * Make publishers work and add specs * Docs template * Initial docs * update plugin interface to support resolving strings * more docs * add deps and scripts * send makeResults instead of flatten artifacts list * feat(publisher): Allow to configure channel for ERS (#456) * fix(publisher): call resolve() when electron-release-server publisher succeeds (#465) ISSUES CLOSED: #460 * Fix publisher tests * Remove stray console statement * v6-api is a PR now, no need to explicitly add to CI * Add top level license * Change Maker/Publisher syntax so that they can be constructed with a config variable * Fix custom init * Allow absolute paths to custom modules * Update to new @electron-forge/ scope * Add missing semi * Use absolute path for custom init to avoid runnig npm link on windows * Fix appx test reference to fixture key file * Remove shell completion support (#447) tabtab is rather buggy and the alternative, commander-completion, needs a custom completion script to be written and maintained. * install new beta tagged bolt on CI * Fix testing snap building in Travis * fix remove error * Fix config passing in tests * fix search order
2018-04-11 10:03:01 +03:00
"private": true,
2016-10-05 17:42:02 +03:00
"license": "MIT",
"engines": {
"node": ">= 14.17.5"
},
feat(core): V6 API (#433) * temp * Start working in new package structure * Example maker * All makers implemented and tests passing on darwin * Add v6 branches to travis config * Add v6 branches to appveyor config * Gitignore _old * Remove FIXME comments * Remove from CI branch whitelist * Install bolt on docker * Add to whitelist * Fix bolt usage on CI * Run bolt build on CI * Fix tests on CI * Fix linting * Fix CI * Make publishers work and add specs * Docs template * Initial docs * update plugin interface to support resolving strings * more docs * add deps and scripts * send makeResults instead of flatten artifacts list * feat(publisher): Allow to configure channel for ERS (#456) * fix(publisher): call resolve() when electron-release-server publisher succeeds (#465) ISSUES CLOSED: #460 * Fix publisher tests * Remove stray console statement * v6-api is a PR now, no need to explicitly add to CI * Add top level license * Change Maker/Publisher syntax so that they can be constructed with a config variable * Fix custom init * Allow absolute paths to custom modules * Update to new @electron-forge/ scope * Add missing semi * Use absolute path for custom init to avoid runnig npm link on windows * Fix appx test reference to fixture key file * Remove shell completion support (#447) tabtab is rather buggy and the alternative, commander-completion, needs a custom completion script to be written and maintained. * install new beta tagged bolt on CI * Fix testing snap building in Travis * fix remove error * Fix config passing in tests * fix search order
2018-04-11 10:03:01 +03:00
"bolt": {
"workspaces": [
"packages/api/*",
"packages/maker/*",
"packages/publisher/*",
"packages/utils/*",
2019-05-24 01:26:34 +03:00
"packages/plugin/*",
"packages/template/*"
feat(core): V6 API (#433) * temp * Start working in new package structure * Example maker * All makers implemented and tests passing on darwin * Add v6 branches to travis config * Add v6 branches to appveyor config * Gitignore _old * Remove FIXME comments * Remove from CI branch whitelist * Install bolt on docker * Add to whitelist * Fix bolt usage on CI * Run bolt build on CI * Fix tests on CI * Fix linting * Fix CI * Make publishers work and add specs * Docs template * Initial docs * update plugin interface to support resolving strings * more docs * add deps and scripts * send makeResults instead of flatten artifacts list * feat(publisher): Allow to configure channel for ERS (#456) * fix(publisher): call resolve() when electron-release-server publisher succeeds (#465) ISSUES CLOSED: #460 * Fix publisher tests * Remove stray console statement * v6-api is a PR now, no need to explicitly add to CI * Add top level license * Change Maker/Publisher syntax so that they can be constructed with a config variable * Fix custom init * Allow absolute paths to custom modules * Update to new @electron-forge/ scope * Add missing semi * Use absolute path for custom init to avoid runnig npm link on windows * Fix appx test reference to fixture key file * Remove shell completion support (#447) tabtab is rather buggy and the alternative, commander-completion, needs a custom completion script to be written and maintained. * install new beta tagged bolt on CI * Fix testing snap building in Travis * fix remove error * Fix config passing in tests * fix search order
2018-04-11 10:03:01 +03:00
]
2016-10-05 17:42:02 +03:00
},
feat(core): V6 API (#433) * temp * Start working in new package structure * Example maker * All makers implemented and tests passing on darwin * Add v6 branches to travis config * Add v6 branches to appveyor config * Gitignore _old * Remove FIXME comments * Remove from CI branch whitelist * Install bolt on docker * Add to whitelist * Fix bolt usage on CI * Run bolt build on CI * Fix tests on CI * Fix linting * Fix CI * Make publishers work and add specs * Docs template * Initial docs * update plugin interface to support resolving strings * more docs * add deps and scripts * send makeResults instead of flatten artifacts list * feat(publisher): Allow to configure channel for ERS (#456) * fix(publisher): call resolve() when electron-release-server publisher succeeds (#465) ISSUES CLOSED: #460 * Fix publisher tests * Remove stray console statement * v6-api is a PR now, no need to explicitly add to CI * Add top level license * Change Maker/Publisher syntax so that they can be constructed with a config variable * Fix custom init * Allow absolute paths to custom modules * Update to new @electron-forge/ scope * Add missing semi * Use absolute path for custom init to avoid runnig npm link on windows * Fix appx test reference to fixture key file * Remove shell completion support (#447) tabtab is rather buggy and the alternative, commander-completion, needs a custom completion script to be written and maintained. * install new beta tagged bolt on CI * Fix testing snap building in Travis * fix remove error * Fix config passing in tests * fix search order
2018-04-11 10:03:01 +03:00
"scripts": {
"clean": "rimraf dist && bolt ws exec -- rimraf dist tsconfig.tsbuildinfo",
"build": "bolt ws exec -- tsc --emitDeclarationOnly && bolt ws exec -- swc src --out-dir dist --quiet --extensions \".ts\" --config-file ../../../.swcrc",
"build:full": "bolt ws exec -- tsc -b",
"postbuild": "ts-node tools/test-dist",
"coverage:fast": "xvfb-maybe cross-env INTEGRATION_TESTS=0 TS_NODE_PROJECT='./tsconfig.test.json' TS_NODE_FILES=1 nyc mocha './tools/test-globber.ts' && nyc report --reporter=text-lcov > coverage.lcov",
"coverage:slow": "xvfb-maybe cross-env TS_NODE_PROJECT='./tsconfig.test.json' TS_NODE_FILES=1 nyc mocha './tools/test-globber.ts' --integration && nyc report --reporter=text-lcov > coverage.lcov",
"docs": "bolt build:full && bolt docs:generate",
"docs:generate": "bolt docs:plugin && node --max-old-space-size=8192 -r ts-node/register ./tools/gen-docs.ts",
"docs:plugin": "cd ./tools/doc-plugin && yarn build",
"docs:deploy:build": "ts-node tools/sync-readmes.ts && bolt docs",
"lint": "prettier --check . && eslint .",
"lint:fix": "prettier --write .",
"test": "xvfb-maybe cross-env TS_NODE_PROJECT='./tsconfig.test.json' TS_NODE_FILES=1 mocha './tools/test-globber.ts'",
"test:fast": "xvfb-maybe cross-env TS_NODE_PROJECT='./tsconfig.test.json' TEST_FAST_ONLY=1 TS_NODE_FILES=1 mocha './tools/test-globber.ts'",
"postinstall": "rimraf node_modules/.bin/*.ps1 && ts-node ./tools/gen-tsconfigs.ts && ts-node ./tools/gen-ts-glue.ts"
},
2016-10-05 17:42:02 +03:00
"dependencies": {
"@aws-sdk/abort-controller": "^3.29.0",
"@aws-sdk/client-s3": "^3.28.0",
"@aws-sdk/lib-storage": "^3.28.0",
"@aws-sdk/types": "^3.25.0",
"@doyensec/electronegativity": "^1.9.1",
2022-08-24 00:21:39 +03:00
"@electron/get": "^2.0.0",
"@electron/osx-sign": "^1.0.1",
"@malept/cross-spawn-promise": "^2.0.0",
"@octokit/core": "^3.2.4",
"@octokit/plugin-retry": "^3.0.9",
"@octokit/rest": "^18.0.11",
"@octokit/types": "^6.1.2",
"chalk": "^4.0.0",
"commander": "^4.1.1",
"cross-spawn": "^7.0.3",
"cross-zip": "^4.0.0",
"debug": "^4.3.1",
"electron-packager": "^17.0.0",
"electron-rebuild": "^3.2.6",
"express": "^4.17.1",
"express-ws": "^5.0.2",
"fast-glob": "^3.2.7",
"filenamify": "^4.1.0",
"find-up": "^5.0.0",
"form-data": "^4.0.0",
"fs-extra": "^10.0.0",
"global": "^4.3.2",
2022-06-28 19:32:24 +03:00
"got": "^11.8.5",
"html-webpack-plugin": "^5.3.1",
"inquirer": "^8.0.0",
"interpret": "^3.1.1",
"lodash": "^4.17.20",
"log-symbols": "^4.0.0",
"mime-types": "^2.1.25",
"node-fetch": "^2.6.7",
"nugget": "^2.0.1",
2020-08-09 19:30:09 +03:00
"ora": "^5.0.0",
"parse-author": "^2.0.0",
"pretty-ms": "^7.0.0",
"progress": "^2.0.3",
"rechoir": "^0.8.0",
"resolve-package": "^1.0.1",
"semver": "^7.2.1",
"source-map-support": "^0.5.13",
"sudo-prompt": "^9.1.1",
"username": "^5.1.0",
"webpack": "^5.69.1",
"webpack-dev-server": "^4.0.0",
"webpack-merge": "^5.7.3",
"which": "^2.0.2",
"xterm": "^4.9.0",
"xterm-addon-fit": "^0.5.0",
"xterm-addon-search": "^0.8.0",
"yarn-or-npm": "^3.0.1"
},
feat(core): V6 API (#433) * temp * Start working in new package structure * Example maker * All makers implemented and tests passing on darwin * Add v6 branches to travis config * Add v6 branches to appveyor config * Gitignore _old * Remove FIXME comments * Remove from CI branch whitelist * Install bolt on docker * Add to whitelist * Fix bolt usage on CI * Run bolt build on CI * Fix tests on CI * Fix linting * Fix CI * Make publishers work and add specs * Docs template * Initial docs * update plugin interface to support resolving strings * more docs * add deps and scripts * send makeResults instead of flatten artifacts list * feat(publisher): Allow to configure channel for ERS (#456) * fix(publisher): call resolve() when electron-release-server publisher succeeds (#465) ISSUES CLOSED: #460 * Fix publisher tests * Remove stray console statement * v6-api is a PR now, no need to explicitly add to CI * Add top level license * Change Maker/Publisher syntax so that they can be constructed with a config variable * Fix custom init * Allow absolute paths to custom modules * Update to new @electron-forge/ scope * Add missing semi * Use absolute path for custom init to avoid runnig npm link on windows * Fix appx test reference to fixture key file * Remove shell completion support (#447) tabtab is rather buggy and the alternative, commander-completion, needs a custom completion script to be written and maintained. * install new beta tagged bolt on CI * Fix testing snap building in Travis * fix remove error * Fix config passing in tests * fix search order
2018-04-11 10:03:01 +03:00
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@malept/eslint-config": "^2.0.0",
2022-02-27 11:19:44 +03:00
"@swc/cli": "^0.1.49",
"@swc/core": "^1.2.87",
"@swc/register": "^0.1.7",
"@types/chai": "^4.2.12",
"@types/chai-as-promised": "^7.1.2",
"@types/cross-spawn": "^6.0.1",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.9",
"@types/express-ws": "^3.0.0",
"@types/fetch-mock": "^7.3.1",
"@types/fs-extra": "^9.0.6",
"@types/inquirer": "^8.1.1",
"@types/interpret": "^1.1.1",
"@types/listr": "^0.14.2",
"@types/lodash": "^4.14.166",
"@types/mime-types": "^2.1.0",
"@types/minimist": "^1.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "^18.0.3",
"@types/node-fetch": "^2.5.5",
"@types/progress": "^2.0.5",
"@types/proxyquire": "^1.3.28",
"@types/rechoir": "^0.6.1",
"@types/semver": "^7.3.4",
"@types/sinon": "^10.0.0",
"@types/sinon-chai": "^3.2.5",
"@types/which": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"chai": "^4.3.3",
feat(core): V6 API (#433) * temp * Start working in new package structure * Example maker * All makers implemented and tests passing on darwin * Add v6 branches to travis config * Add v6 branches to appveyor config * Gitignore _old * Remove FIXME comments * Remove from CI branch whitelist * Install bolt on docker * Add to whitelist * Fix bolt usage on CI * Run bolt build on CI * Fix tests on CI * Fix linting * Fix CI * Make publishers work and add specs * Docs template * Initial docs * update plugin interface to support resolving strings * more docs * add deps and scripts * send makeResults instead of flatten artifacts list * feat(publisher): Allow to configure channel for ERS (#456) * fix(publisher): call resolve() when electron-release-server publisher succeeds (#465) ISSUES CLOSED: #460 * Fix publisher tests * Remove stray console statement * v6-api is a PR now, no need to explicitly add to CI * Add top level license * Change Maker/Publisher syntax so that they can be constructed with a config variable * Fix custom init * Allow absolute paths to custom modules * Update to new @electron-forge/ scope * Add missing semi * Use absolute path for custom init to avoid runnig npm link on windows * Fix appx test reference to fixture key file * Remove shell completion support (#447) tabtab is rather buggy and the alternative, commander-completion, needs a custom completion script to be written and maintained. * install new beta tagged bolt on CI * Fix testing snap building in Travis * fix remove error * Fix config passing in tests * fix search order
2018-04-11 10:03:01 +03:00
"chai-as-promised": "^7.0.0",
"cross-env": "^7.0.2",
"electron-installer-common": "^0.10.2",
"eslint": "^8.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"fetch-mock": "^9.10.7",
"generate-changelog": "^1.8.0",
"husky": "^7.0.1",
"lint-staged": "^12.1.7",
"listr2": "^4.0.4",
"minimist": "^1.2.6",
"mocha": "^9.0.1",
"nyc": "^15.1.0",
"prettier": "^2.4.0",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.1",
"sinon": "^13.0.1",
"sinon-chai": "^3.6.0",
"ts-node": "^10.0.0",
"typedoc": "^0.22.15",
"typedoc-plugin-missing-exports": "^1.0.0",
"typedoc-plugin-rename-defaults": "^0.6.4",
"typescript": "^4.6.3",
"xvfb-maybe": "^0.2.1"
},
"optionalDependencies": {
"@malept/electron-installer-flatpak": "^0.11.2",
"electron-installer-debian": "^3.0.0",
"electron-installer-dmg": "^4.0.0",
"electron-installer-redhat": "^3.2.0",
"electron-installer-snap": "^5.1.0",
2018-11-24 07:53:22 +03:00
"electron-windows-store": "^2.1.0",
"electron-winstaller": "^5.0.0",
"electron-wix-msi": "^3.0.6"
},
"lint-staged": {
"*.{html,json,md,yml}": "prettier --write",
"*.{js,ts}": "eslint --fix"
},
"nyc": {
"exclude": [
"packages/*/*/test/**/*.{js,ts}",
"tools/*.ts"
],
"extends": "@istanbuljs/nyc-config-typescript"
},
"prettier": {
"singleQuote": true
},
"volta": {
"node": "14.17.5"
2016-10-05 17:42:02 +03:00
}
}