hyper/package.json

129 lines
4.5 KiB
JSON
Raw Normal View History

2016-06-30 22:01:04 -08:00
{
"name": "hyper",
2020-02-19 14:28:05 -09:00
"version": "3.1.0-canary.4",
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'",
"app": "electron 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",
2019-12-24 23:12:00 -09:00
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "yarn run lint && yarn run test:unit",
"test:unit": "ava",
"test:unit:watch": "yarn run test:unit -- --watch",
2019-12-19 22:58:56 -09:00
"postinstall": "webpack --config-name hyper-app && electron-builder install-app-deps && yarn run rebuild-node-pty && cpy --cwd=target --parents \"node_modules/**/*\" \"../app/\"",
2019-10-01 00:12:06 -08:00
"rebuild-node-pty": "electron-rebuild -f -w target/node_modules/node-pty -m target",
2019-12-24 23:12:00 -09:00
"dist": "yarn run build && cross-env BABEL_ENV=production babel target/renderer/bundle.js --out-file target/renderer/bundle.js --no-comments --minified && electron-builder",
"clean": "node ./bin/rimraf-standalone.js node_modules && node ./bin/rimraf-standalone.js ./app/node_modules && node ./bin/rimraf-standalone.js ./app/renderer"
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": {
"args": "5.0.1",
"chalk": "4.0.0",
"color": "3.1.2",
"columnify": "1.5.4",
"css-loader": "3.5.3",
"got": "11.0.0",
"json-loader": "0.5.7",
"mousetrap": "chabou/mousetrap#useCapture",
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
"ms": "2.1.2",
"open": "7.0.3",
"ora": "4.0.4",
"parse-url": "5.0.1",
2016-10-17 00:29:12 -08:00
"php-escape-shell": "1.0.0",
"react": "16.13.1",
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
"react-deep-force-update": "2.1.3",
2020-03-23 18:04:10 -08:00
"react-dom": "16.13.1",
2020-02-19 14:27:16 -09:00
"react-redux": "7.2.0",
"recast": "0.19.1",
"redux": "4.0.5",
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
"redux-thunk": "2.3.0",
"reselect": "4.0.0",
"seamless-immutable": "7.1.4",
"semver": "7.3.2",
"shebang-loader": "0.0.1",
"styled-jsx": "3.3.0",
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",
"uuid": "7.0.3",
"webpack-cli": "3.3.11",
2020-04-13 00:03:55 -08:00
"xterm": "^4.5.0",
"xterm-addon-fit": "^0.4.0",
"xterm-addon-ligatures": "^0.3.0",
2020-04-13 00:03:55 -08:00
"xterm-addon-search": "^0.6.0",
"xterm-addon-web-links": "^0.4.0",
"xterm-addon-webgl": "^0.6.0"
2016-10-17 00:29:12 -08:00
},
"devDependencies": {
"@ava/babel": "1.0.1",
"@babel/cli": "7.8.4",
"@babel/core": "7.9.6",
2020-01-20 12:23:21 -09:00
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-proposal-optional-chaining": "7.9.0",
"@babel/preset-react": "7.9.4",
"@babel/preset-typescript": "7.9.0",
2019-12-14 02:29:48 -09:00
"@types/args": "3.0.0",
"@types/async-retry": "1.4.2",
"@types/color": "3.0.1",
2019-12-14 02:29:48 -09:00
"@types/columnify": "^1.5.0",
2020-01-21 11:38:51 -09:00
"@types/copy-webpack-plugin": "5.0.0",
"@types/electron-devtools-installer": "2.2.0",
"@types/fs-extra": "9.0.0",
"@types/lodash": "^4.14.150",
"@types/mkdirp": "1.0.0",
"@types/mousetrap": "^1.6.3",
2019-12-25 00:52:32 -09:00
"@types/ms": "0.7.31",
"@types/node": "^12.12.38",
2019-12-14 02:29:48 -09:00
"@types/pify": "3.0.2",
2019-10-12 04:23:47 -08:00
"@types/plist": "3.0.2",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.8",
"@types/seamless-immutable": "7.1.13",
"@types/styled-jsx": "2.2.8",
2020-01-21 11:38:51 -09:00
"@types/terser-webpack-plugin": "2.2.0",
"@types/uuid": "7.0.3",
"@types/webpack": "4.41.13",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"ava": "3.8.2",
"babel-loader": "8.1.0",
"concurrently": "5.2.0",
"copy-webpack-plugin": "5.1.1",
"cpy-cli": "^3.1.1",
"cross-env": "7.0.2",
"electron": "^8.2.3",
"electron-builder": "22.6.0",
"electron-builder-squirrel-windows": "22.6.1",
"electron-devtools-installer": "3.0.0",
"electron-rebuild": "1.10.1",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
2020-03-02 08:59:28 -09:00
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.19.0",
"husky": "4.2.5",
"inquirer": "7.1.0",
"node-addon-api": "3.0.0",
"node-gyp": "6.1.0",
"null-loader": "4.0.0",
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
"plist": "3.0.1",
"prettier": "2.0.5",
"proxyquire": "2.1.3",
2020-01-02 08:49:57 -09:00
"redux-devtools-extension": "2.13.8",
2020-03-18 07:26:46 -08:00
"resize-observer-polyfill": "1.5.1",
"spectron": "10.0.1",
"style-loader": "1.2.1",
"terser": "4.7.0",
"terser-webpack-plugin": "3.0.1",
"ts-node": "8.10.1",
"typescript": "3.8.3",
"webpack": "4.43.0"
2016-06-30 22:01:04 -08:00
}
}