hyper/package.json

148 lines
5.4 KiB
JSON
Raw Normal View History

2016-06-30 22:01:04 -08:00
{
"name": "hyper",
2023-07-12 22:05:27 -08:00
"version": "4.0.0-canary.5",
2016-10-06 07:28:43 -08:00
"repository": "zeit/hyper",
2016-10-17 00:29:12 -08:00
"scripts": {
"start": "echo 'please run `yarn run dev` in one tab and then `yarn run app` in another one'",
2021-02-24 11:25:06 -09:00
"app": "cross-env ELECTRONMON_LOGLEVEL=error electronmon target",
"dev": "concurrently -n \"Webpack,TypeScript\" -c \"cyan.bold,blue.bold\" \"webpack -w\" \"tsc --build -v --pretty --watch --preserveWatchOutput\" -k",
"build": "cross-env NODE_ENV=production webpack && tsc -b -v && cross-env BABEL_ENV=production babel target/renderer/bundle.js --out-file target/renderer/bundle.js --no-comments --minified",
2022-11-16 04:48:20 -09:00
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.json",
"test": "yarn run lint && yarn run test:unit",
"test:unit": "ava",
"test:unit:watch": "yarn run test:unit -- --watch",
"test:e2e": "ava --config ava-e2e.config.js",
2023-07-03 07:42:30 -08:00
"postinstall": "yarn run v8-snapshot && webpack --config-name hyper-app && electron-builder install-app-deps && yarn run rebuild-node-pty && cpy --cwd=target node_modules \"../../app/\" && husky install && yarn run generate-schema",
2021-03-22 00:32:12 -08:00
"rebuild-node-pty": "electron-rebuild -f -o node-pty -m target",
"dist": "yarn run build && electron-builder",
2022-04-14 08:50:54 -08:00
"clean": "node ./bin/rimraf-standalone.js node_modules && node ./bin/rimraf-standalone.js ./app/node_modules && node ./bin/rimraf-standalone.js ./app/renderer",
"v8-snapshot": "cross-env npm_config_arch=x64 yarn run v8-snapshot:arch && cross-env npm_config_arch=arm64 yarn run v8-snapshot:arch",
2022-11-16 04:48:20 -09:00
"v8-snapshot:arch": "yarn run mk-snapshot && yarn run cp-snapshot",
2022-04-14 08:50:54 -08:00
"mk-snapshot": "cross-env ELECTRON_CUSTOM_VERSION=$npm_package_devDependencies_electron node node_modules/electron-mksnapshot/download-mksnapshot.js && node bin/mk-snapshot.js",
2022-11-16 04:48:20 -09:00
"cp-snapshot": "node bin/cp-snapshot.js",
2023-07-25 01:39:51 -08:00
"generate-schema": "typescript-json-schema ./typings/config.d.ts rawConfig -o ./app/config/schema.json --required"
2016-06-30 22:01:04 -08:00
},
2016-10-17 00:29:12 -08:00
"license": "MIT",
"author": {
2018-01-17 06:58:49 -09:00
"name": "ZEIT, Inc.",
2016-10-17 00:29:12 -08:00
"email": "team@zeit.co"
},
"dependencies": {
"@electron/remote": "2.1.2",
2022-12-30 23:17:19 -09:00
"@react-icons/all-files": "4.1.0",
"@redux-devtools/extension": "^3.3.0",
"args": "5.0.3",
"chalk": "5.3.0",
"clsx": "2.1.0",
"color": "4.2.3",
"columnify": "1.6.0",
"css-loader": "6.10.0",
"got": "12.4.1",
"json-loader": "0.5.7",
2023-07-23 09:05:14 -08:00
"lodash": "4.17.21",
"mousetrap": "chabou/mousetrap#useCapture",
"ms": "2.1.3",
"open": "8.4.2",
"ora": "8.0.1",
2016-10-17 00:29:12 -08:00
"php-escape-shell": "1.0.0",
2023-07-23 23:29:12 -08:00
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "8.1.3",
"react-use": "^17.5.0",
"redux": "4.2.1",
"redux-thunk": "2.4.2",
2022-11-22 21:29:07 -09:00
"registry-url": "^6.0.1",
"reselect": "4.1.8",
Update Electron to v6 (#3785) * 3.0.0 * 3.0.2 * Save * Save * Upgrade yarn lock packages * update node-gyp and node-pty * update travis and appveyor to node 12 * appveyor is outdated as always * update travis to xenial * update node-pty@0.9.0-beta26 * update yarn.lock * update electron to 6.0.8 * move node-pty to the correct package.json * Fix linting failure * Update yarn lockfile to try to fix appveyor build * Remove unnecessary changes from package.json * Try to fix appveyor by using a newer image * Fix linting after my last change * update electron to 6.0.9 * install windows-build-tools on appveyor * fix syntax * switch back to 2017 image * remove old resolutions field * revert accidental version change * update electron to 6.0.11 and electron-rebuild to 1.8.6 * downgrade yarn to 1.18 until this issue is resolved https://github.com/yarnpkg/yarn/issues/7584 * update node-gyp to 6.0.0 and generate a fresh yarn lockfile * update react and a few other dependencies * fix lint * this should actually be electron-builder, I think! * update a few dependencies * change to electron-store electron-config was renamed to electron-store a while ago * update xterm to v4.1.0 and ora to 4.0.2 * move pify to app/package.json * TODO: Revert maybe. Throw a fit on every change to maybe fix the resizing issues * a * fix react ref problem * fix split view focus problem * remove the unnecessary fit * remove the init col and row * fix the problem that cannot show about hyper * update electron to 6.0.12 * fix lint * add more todos for componentWillReceiveProps deprecation * update babel and plugins Co-authored-by: Juan Campa <juancampa@gmail.com> Co-authored-by: Benjamin Staneck <staneck@gmail.com> Co-authored-by: ivan <ivanwonder@outlook.com>
2019-10-10 11:20:26 -08:00
"seamless-immutable": "7.1.4",
"semver": "7.5.4",
"shebang-loader": "0.0.1",
"styled-jsx": "5.1.2",
Update Electron to v6 (#3785) * 3.0.0 * 3.0.2 * Save * Save * Upgrade yarn lock packages * update node-gyp and node-pty * update travis and appveyor to node 12 * appveyor is outdated as always * update travis to xenial * update node-pty@0.9.0-beta26 * update yarn.lock * update electron to 6.0.8 * move node-pty to the correct package.json * Fix linting failure * Update yarn lockfile to try to fix appveyor build * Remove unnecessary changes from package.json * Try to fix appveyor by using a newer image * Fix linting after my last change * update electron to 6.0.9 * install windows-build-tools on appveyor * fix syntax * switch back to 2017 image * remove old resolutions field * revert accidental version change * update electron to 6.0.11 and electron-rebuild to 1.8.6 * downgrade yarn to 1.18 until this issue is resolved https://github.com/yarnpkg/yarn/issues/7584 * update node-gyp to 6.0.0 and generate a fresh yarn lockfile * update react and a few other dependencies * fix lint * this should actually be electron-builder, I think! * update a few dependencies * change to electron-store electron-config was renamed to electron-store a while ago * update xterm to v4.1.0 and ora to 4.0.2 * move pify to app/package.json * TODO: Revert maybe. Throw a fit on every change to maybe fix the resizing issues * a * fix react ref problem * fix split view focus problem * remove the unnecessary fit * remove the init col and row * fix the problem that cannot show about hyper * update electron to 6.0.12 * fix lint * add more todos for componentWillReceiveProps deprecation * update babel and plugins Co-authored-by: Juan Campa <juancampa@gmail.com> Co-authored-by: Benjamin Staneck <staneck@gmail.com> Co-authored-by: ivan <ivanwonder@outlook.com>
2019-10-10 11:20:26 -08:00
"stylis": "3.5.4",
"typescript-json-schema": "0.62.0",
"uuid": "9.0.1",
"webpack-cli": "5.1.4",
"xterm": "5.3.0",
"xterm-addon-canvas": "0.5.0",
"xterm-addon-fit": "0.8.0",
"xterm-addon-image": "0.5.0",
"xterm-addon-ligatures": "0.7.0",
"xterm-addon-search": "0.13.0",
"xterm-addon-unicode11": "0.6.0",
"xterm-addon-web-links": "0.9.0",
"xterm-addon-webgl": "0.16.0"
2016-10-17 00:29:12 -08:00
},
"devDependencies": {
"@ava/babel": "2.0.0",
"@ava/typescript": "^4.1.0",
"@babel/cli": "7.23.9",
"@babel/core": "7.23.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/preset-react": "7.23.3",
"@babel/preset-typescript": "7.23.3",
"@electron/rebuild": "^3.6.0",
"@types/args": "5.0.3",
"@types/async-retry": "1.4.3",
"@types/color": "3.0.6",
"@types/columnify": "^1.5.4",
"@types/fs-extra": "11.0.4",
"@types/lodash": "^4.14.202",
"@types/mousetrap": "1.6.15",
"@types/ms": "0.7.34",
"@types/node": "18.19.8",
"@types/plist": "3.0.5",
"@types/react": "18.2.55",
"@types/react-dom": "18.2.18",
"@types/seamless-immutable": "7.1.19",
"@types/styled-jsx": "2.2.9",
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.20.0",
"ava": "6.1.1",
"babel-loader": "9.1.3",
"concurrently": "8.2.2",
"copy-webpack-plugin": "12.0.2",
"cpy-cli": "^5.0.0",
"cross-env": "7.0.3",
"electron": "22.3.25",
"electron-builder": "^24.9.1",
2022-04-14 08:50:54 -08:00
"electron-link": "^0.6.0",
"electron-mksnapshot": "28.2.1",
"electronmon": "^2.0.2",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json-schema-validator": "^4.8.3",
"eslint-plugin-jsonc": "^2.13.0",
2023-07-23 09:05:14 -08:00
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "7.33.2",
"husky": "9.0.10",
"inquirer": "9.2.14",
"node-addon-api": "7.1.0",
"null-loader": "4.0.1",
2023-05-05 20:52:45 -08:00
"parse-url": "8.1.0",
"playwright": "1.41.2",
"plist": "3.1.0",
"prettier": "3.1.1",
"proxyquire": "2.1.3",
"style-loader": "3.3.4",
"terser": "5.27.0",
"terser-webpack-plugin": "^5.3.10",
"ts-node": "10.9.2",
"typescript": "5.3.3",
"webpack": "5.90.1"
2021-02-24 11:25:06 -09:00
},
"electronmon": {
"patterns": [
"!app/**",
"!lib/**",
"!dist/**"
]
2016-06-30 22:01:04 -08:00
}
}