2016-06-30 22:01:04 -08:00
|
|
|
{
|
2019-10-06 10:51:56 -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": {
|
2019-10-02 16:56:50 -08:00
|
|
|
"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",
|
2019-12-11 05:01:14 -09:00
|
|
|
"dev": "concurrently -n \"Webpack,TypeScript\" -c \"cyan.bold,blue.bold\" \"webpack -w\" \"tsc --build -v --pretty --watch --preserveWatchOutput\" -k",
|
2023-06-14 09:12:37 -08:00
|
|
|
"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",
|
2018-02-24 12:59:51 -09:00
|
|
|
"test": "yarn run lint && yarn run test:unit",
|
2019-10-24 04:13:40 -08:00
|
|
|
"test:unit": "ava",
|
2017-08-15 06:08:45 -08:00
|
|
|
"test:unit:watch": "yarn run test:unit -- --watch",
|
2021-09-08 23:48:45 -08:00
|
|
|
"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",
|
2023-06-14 09:12:37 -08:00
|
|
|
"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": {
|
2023-11-14 01:12:16 -09:00
|
|
|
"@electron/remote": "2.1.0",
|
2022-12-30 23:17:19 -09:00
|
|
|
"@react-icons/all-files": "4.1.0",
|
2023-11-06 02:40:26 -09:00
|
|
|
"@redux-devtools/extension": "^3.2.6",
|
2022-05-02 03:04:42 -08:00
|
|
|
"args": "5.0.3",
|
2023-07-03 03:51:30 -08:00
|
|
|
"chalk": "5.3.0",
|
2023-07-17 03:42:32 -08:00
|
|
|
"clsx": "2.0.0",
|
2022-04-10 05:41:49 -08:00
|
|
|
"color": "4.2.3",
|
2022-02-07 02:49:30 -09:00
|
|
|
"columnify": "1.6.0",
|
2023-05-29 03:58:11 -08:00
|
|
|
"css-loader": "6.8.1",
|
2022-09-05 07:45:31 -08:00
|
|
|
"got": "12.4.1",
|
2017-08-31 05:20:39 -08:00
|
|
|
"json-loader": "0.5.7",
|
2023-07-23 09:05:14 -08:00
|
|
|
"lodash": "4.17.21",
|
2017-11-02 18:51:18 -08:00
|
|
|
"mousetrap": "chabou/mousetrap#useCapture",
|
2020-12-14 02:05:45 -09:00
|
|
|
"ms": "2.1.3",
|
2023-02-27 03:10:37 -09:00
|
|
|
"open": "8.4.2",
|
2023-08-07 03:40:35 -08:00
|
|
|
"ora": "7.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",
|
2023-10-01 21:32:31 -08:00
|
|
|
"react-redux": "8.1.3",
|
2023-06-29 20:42:32 -08:00
|
|
|
"react-use": "^17.4.0",
|
2023-02-14 05:20:09 -09:00
|
|
|
"redux": "4.2.1",
|
2022-11-08 10:23:50 -09:00
|
|
|
"redux-thunk": "2.4.2",
|
2022-11-22 21:29:07 -09:00
|
|
|
"registry-url": "^6.0.1",
|
2023-04-23 19:20:55 -08:00
|
|
|
"reselect": "4.1.8",
|
2019-10-10 11:20:26 -08:00
|
|
|
"seamless-immutable": "7.1.4",
|
2023-07-10 03:20:05 -08:00
|
|
|
"semver": "7.5.4",
|
2018-01-22 00:21:01 -09:00
|
|
|
"shebang-loader": "0.0.1",
|
2023-01-30 02:01:53 -09:00
|
|
|
"styled-jsx": "5.1.2",
|
2019-10-10 11:20:26 -08:00
|
|
|
"stylis": "3.5.4",
|
2023-10-16 03:13:42 -08:00
|
|
|
"typescript-json-schema": "0.62.0",
|
2023-09-14 23:22:37 -08:00
|
|
|
"uuid": "9.0.1",
|
2023-06-12 04:00:20 -08:00
|
|
|
"webpack-cli": "5.1.4",
|
2023-09-14 23:04:28 -08:00
|
|
|
"xterm": "5.3.0",
|
2023-09-11 03:19:18 -08:00
|
|
|
"xterm-addon-canvas": "0.5.0",
|
2023-09-14 23:01:09 -08:00
|
|
|
"xterm-addon-fit": "0.8.0",
|
2023-08-07 03:42:14 -08:00
|
|
|
"xterm-addon-image": "0.5.0",
|
2023-09-14 23:05:22 -08:00
|
|
|
"xterm-addon-ligatures": "0.7.0",
|
2023-09-11 03:17:11 -08:00
|
|
|
"xterm-addon-search": "0.13.0",
|
2023-09-14 22:59:13 -08:00
|
|
|
"xterm-addon-unicode11": "0.6.0",
|
2023-09-14 23:21:49 -08:00
|
|
|
"xterm-addon-web-links": "0.9.0",
|
2023-09-11 03:19:07 -08:00
|
|
|
"xterm-addon-webgl": "0.16.0"
|
2016-10-17 00:29:12 -08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2021-07-05 20:13:07 -08:00
|
|
|
"@ava/babel": "2.0.0",
|
2023-07-03 03:52:31 -08:00
|
|
|
"@ava/typescript": "^4.1.0",
|
2023-09-25 03:50:35 -08:00
|
|
|
"@babel/cli": "7.23.0",
|
2023-11-14 01:18:11 -09:00
|
|
|
"@babel/core": "7.23.3",
|
2022-07-06 07:55:57 -08:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
2022-07-04 03:08:25 -08:00
|
|
|
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
|
2022-12-26 02:03:47 -09:00
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
|
2023-02-27 20:45:20 -09:00
|
|
|
"@babel/plugin-proposal-optional-chaining": "7.21.0",
|
2023-11-14 01:13:19 -09:00
|
|
|
"@babel/preset-react": "7.23.3",
|
2023-11-13 02:47:38 -09:00
|
|
|
"@babel/preset-typescript": "7.23.3",
|
2023-08-28 22:28:36 -08:00
|
|
|
"@electron/rebuild": "^3.3.0",
|
2023-11-14 01:17:05 -09:00
|
|
|
"@types/args": "5.0.3",
|
2021-07-12 03:05:16 -08:00
|
|
|
"@types/async-retry": "1.4.3",
|
2023-11-14 01:17:21 -09:00
|
|
|
"@types/color": "3.0.6",
|
2023-11-13 02:43:54 -09:00
|
|
|
"@types/columnify": "^1.5.4",
|
2023-11-14 21:07:44 -09:00
|
|
|
"@types/fs-extra": "11.0.4",
|
2023-11-27 02:24:27 -09:00
|
|
|
"@types/lodash": "^4.14.202",
|
2023-11-14 21:09:06 -09:00
|
|
|
"@types/mousetrap": "1.6.14",
|
2023-11-14 01:15:48 -09:00
|
|
|
"@types/ms": "0.7.34",
|
2023-11-27 02:24:12 -09:00
|
|
|
"@types/node": "18.18.13",
|
2023-11-14 01:16:11 -09:00
|
|
|
"@types/plist": "3.0.5",
|
2023-11-13 21:26:59 -09:00
|
|
|
"@types/react": "18.2.37",
|
2023-11-13 02:45:35 -09:00
|
|
|
"@types/react-dom": "18.2.15",
|
2023-11-13 21:27:04 -09:00
|
|
|
"@types/seamless-immutable": "7.1.19",
|
2021-07-05 18:57:38 -08:00
|
|
|
"@types/styled-jsx": "2.2.9",
|
2023-11-14 01:14:11 -09:00
|
|
|
"@types/uuid": "9.0.7",
|
2023-07-17 10:24:59 -08:00
|
|
|
"@typescript-eslint/eslint-plugin": "5.62.0",
|
2023-07-17 03:43:41 -08:00
|
|
|
"@typescript-eslint/parser": "5.62.0",
|
2023-06-19 03:58:23 -08:00
|
|
|
"ava": "5.3.1",
|
2023-07-10 03:18:26 -08:00
|
|
|
"babel-loader": "9.1.3",
|
2023-10-19 05:14:32 -08:00
|
|
|
"concurrently": "8.2.2",
|
2022-05-23 03:04:45 -08:00
|
|
|
"copy-webpack-plugin": "11.0.0",
|
2023-07-03 03:49:57 -08:00
|
|
|
"cpy-cli": "^5.0.0",
|
2020-12-07 02:05:37 -09:00
|
|
|
"cross-env": "7.0.3",
|
2023-10-05 10:39:15 -08:00
|
|
|
"electron": "22.3.25",
|
2023-10-03 21:57:52 -08:00
|
|
|
"electron-builder": "^24.6.4",
|
2022-04-14 08:50:54 -08:00
|
|
|
"electron-link": "^0.6.0",
|
2023-11-20 02:39:17 -09:00
|
|
|
"electron-mksnapshot": "27.1.0",
|
2021-08-23 03:04:41 -08:00
|
|
|
"electronmon": "^2.0.2",
|
2023-11-20 21:25:52 -09:00
|
|
|
"eslint": "8.54.0",
|
2023-08-07 03:40:59 -08:00
|
|
|
"eslint-config-prettier": "9.0.0",
|
2023-09-25 03:42:25 -08:00
|
|
|
"eslint-import-resolver-typescript": "^3.6.1",
|
2020-06-08 10:40:58 -08:00
|
|
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
2023-10-23 03:31:21 -08:00
|
|
|
"eslint-plugin-import": "^2.29.0",
|
2023-11-14 01:12:56 -09:00
|
|
|
"eslint-plugin-json-schema-validator": "^4.7.3",
|
2023-10-19 04:57:56 -08:00
|
|
|
"eslint-plugin-jsonc": "^2.10.0",
|
2023-07-23 09:05:14 -08:00
|
|
|
"eslint-plugin-lodash": "^7.4.0",
|
2023-10-19 04:55:26 -08:00
|
|
|
"eslint-plugin-prettier": "^5.0.1",
|
2023-08-21 03:53:32 -08:00
|
|
|
"eslint-plugin-react": "7.33.2",
|
2023-01-09 02:10:26 -09:00
|
|
|
"husky": "8.0.3",
|
2023-11-14 01:16:44 -09:00
|
|
|
"inquirer": "9.2.12",
|
2023-06-19 04:03:06 -08:00
|
|
|
"node-addon-api": "7.0.0",
|
2020-10-12 03:04:23 -08:00
|
|
|
"null-loader": "4.0.1",
|
2023-05-05 20:52:45 -08:00
|
|
|
"parse-url": "8.1.0",
|
2023-11-20 02:37:24 -09:00
|
|
|
"playwright": "1.40.0",
|
2023-07-10 03:18:56 -08:00
|
|
|
"plist": "3.1.0",
|
2023-11-14 21:15:19 -09:00
|
|
|
"prettier": "3.1.0",
|
2019-10-12 17:48:05 -08:00
|
|
|
"proxyquire": "2.1.3",
|
2023-05-23 08:31:45 -08:00
|
|
|
"style-loader": "3.3.3",
|
2023-11-14 01:18:07 -09:00
|
|
|
"terser": "5.24.0",
|
2023-07-25 07:19:28 -08:00
|
|
|
"terser-webpack-plugin": "^5.3.9",
|
2022-08-11 11:33:00 -08:00
|
|
|
"ts-node": "10.9.1",
|
2023-08-28 03:55:17 -08:00
|
|
|
"typescript": "5.2.2",
|
2023-10-16 03:17:13 -08:00
|
|
|
"webpack": "5.89.0"
|
2021-02-24 11:25:06 -09:00
|
|
|
},
|
|
|
|
|
"electronmon": {
|
|
|
|
|
"patterns": [
|
|
|
|
|
"!app/**",
|
|
|
|
|
"!lib/**",
|
|
|
|
|
"!dist/**"
|
|
|
|
|
]
|
2016-06-30 22:01:04 -08:00
|
|
|
}
|
|
|
|
|
}
|