2016-06-30 22:01:04 -08:00
|
|
|
{
|
2019-10-06 10:51:56 -08:00
|
|
|
"name": "hyper",
|
2023-01-28 20:04:16 -09:00
|
|
|
"version": "4.0.0-canary.3",
|
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",
|
|
|
|
|
"build": "cross-env NODE_ENV=production webpack && tsc -b -v",
|
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-02-20 08:58:37 -09: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",
|
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",
|
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",
|
|
|
|
|
"generate-schema": "typescript-json-schema ./lib/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": {
|
2022-12-12 02:00:55 -09:00
|
|
|
"@electron/remote": "2.0.9",
|
2022-12-30 23:17:19 -09:00
|
|
|
"@react-icons/all-files": "4.1.0",
|
2022-05-02 03:04:42 -08:00
|
|
|
"args": "5.0.3",
|
2022-12-12 02:36:42 -09:00
|
|
|
"chalk": "5.2.0",
|
2022-12-30 23:17:19 -09:00
|
|
|
"clsx": "1.2.1",
|
2022-04-10 05:41:49 -08:00
|
|
|
"color": "4.2.3",
|
2022-02-07 02:49:30 -09:00
|
|
|
"columnify": "1.6.0",
|
2022-12-19 02:01:20 -09:00
|
|
|
"css-loader": "6.7.3",
|
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",
|
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",
|
2021-06-14 03:07:35 -08:00
|
|
|
"ora": "5.4.1",
|
2016-10-17 00:29:12 -08:00
|
|
|
"php-escape-shell": "1.0.0",
|
2021-03-29 04:24:23 -08:00
|
|
|
"react": "17.0.2",
|
2019-10-10 11:20:26 -08:00
|
|
|
"react-deep-force-update": "2.1.3",
|
2021-03-29 04:24:23 -08:00
|
|
|
"react-dom": "17.0.2",
|
2022-04-03 23:02:19 -08:00
|
|
|
"react-redux": "7.2.8",
|
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-05-15 04:12:02 -08:00
|
|
|
"semver": "7.5.1",
|
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-04-03 04:00:37 -08:00
|
|
|
"typescript-json-schema": "0.56.0",
|
2022-09-12 03:06:26 -08:00
|
|
|
"uuid": "9.0.0",
|
2023-05-15 03:59:42 -08:00
|
|
|
"webpack-cli": "5.1.1",
|
2022-07-04 03:06:27 -08:00
|
|
|
"xterm": "4.19.0",
|
2021-02-01 04:29:54 -09:00
|
|
|
"xterm-addon-fit": "^0.5.0",
|
2022-08-01 03:06:08 -08:00
|
|
|
"xterm-addon-ligatures": "0.6.0-beta.19",
|
2022-07-04 03:07:56 -08:00
|
|
|
"xterm-addon-search": "^0.9.0",
|
2021-09-09 22:57:43 -08:00
|
|
|
"xterm-addon-unicode11": "^0.3.0",
|
2022-07-06 08:32:06 -08:00
|
|
|
"xterm-addon-web-links": "^0.6.0",
|
2022-07-06 08:06:18 -08:00
|
|
|
"xterm-addon-webgl": "0.12.0"
|
2016-10-17 00:29:12 -08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2021-07-05 20:13:07 -08:00
|
|
|
"@ava/babel": "2.0.0",
|
2023-03-13 03:59:23 -08:00
|
|
|
"@ava/typescript": "^4.0.0",
|
2023-05-01 04:00:40 -08:00
|
|
|
"@babel/cli": "7.21.5",
|
2023-05-03 09:39:47 -08:00
|
|
|
"@babel/core": "7.21.8",
|
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",
|
2022-07-06 08:32:41 -08:00
|
|
|
"@babel/preset-react": "7.18.6",
|
2023-05-01 04:12:05 -08:00
|
|
|
"@babel/preset-typescript": "7.21.5",
|
2021-09-27 03:07:48 -08:00
|
|
|
"@types/args": "5.0.0",
|
2021-07-12 03:05:16 -08:00
|
|
|
"@types/async-retry": "1.4.3",
|
2022-02-07 01:53:12 -09:00
|
|
|
"@types/color": "3.0.3",
|
2021-07-12 03:11:41 -08:00
|
|
|
"@types/columnify": "^1.5.1",
|
2023-01-16 02:07:24 -09:00
|
|
|
"@types/fs-extra": "11.0.1",
|
2023-04-17 03:59:04 -08:00
|
|
|
"@types/lodash": "^4.14.194",
|
2022-11-21 02:02:11 -09:00
|
|
|
"@types/mousetrap": "1.6.11",
|
2019-12-25 00:52:32 -09:00
|
|
|
"@types/ms": "0.7.31",
|
2023-05-01 04:03:48 -08:00
|
|
|
"@types/node": "16.18.25",
|
2019-10-12 04:23:47 -08:00
|
|
|
"@types/plist": "3.0.2",
|
2022-03-28 03:04:19 -08:00
|
|
|
"@types/react": "^17.0.43",
|
2022-03-21 04:51:41 -08:00
|
|
|
"@types/react-dom": "^17.0.14",
|
2022-01-16 23:51:44 -09:00
|
|
|
"@types/react-redux": "^7.1.22",
|
2021-07-12 18:40:20 -08:00
|
|
|
"@types/seamless-immutable": "7.1.16",
|
2021-07-05 18:57:38 -08:00
|
|
|
"@types/styled-jsx": "2.2.9",
|
2021-09-07 02:26:18 -08:00
|
|
|
"@types/terser-webpack-plugin": "5.2.0",
|
2023-02-27 02:57:40 -09:00
|
|
|
"@types/uuid": "9.0.1",
|
2021-10-11 03:56:19 -08:00
|
|
|
"@typescript-eslint/eslint-plugin": "4.33.0",
|
2021-10-11 03:07:41 -08:00
|
|
|
"@typescript-eslint/parser": "4.33.0",
|
2023-02-13 03:15:56 -09:00
|
|
|
"ava": "5.2.0",
|
2023-01-09 02:05:56 -09:00
|
|
|
"babel-loader": "9.1.2",
|
2023-04-03 04:06:04 -08:00
|
|
|
"concurrently": "8.0.1",
|
2022-05-23 03:04:45 -08:00
|
|
|
"copy-webpack-plugin": "11.0.0",
|
2023-02-20 08:58:37 -09:00
|
|
|
"cpy-cli": "^4.2.0",
|
2020-12-07 02:05:37 -09:00
|
|
|
"cross-env": "7.0.3",
|
2023-04-23 19:48:54 -08:00
|
|
|
"electron": "24.1.2",
|
2023-05-15 04:02:12 -08:00
|
|
|
"electron-builder": "^24.4.0",
|
2021-04-20 00:30:12 -08:00
|
|
|
"electron-devtools-installer": "3.2.0",
|
2022-04-14 08:50:54 -08:00
|
|
|
"electron-link": "^0.6.0",
|
2023-04-10 04:01:18 -08:00
|
|
|
"electron-mksnapshot": "24.0.0",
|
2021-08-23 03:04:41 -08:00
|
|
|
"electronmon": "^2.0.2",
|
2021-08-02 03:05:33 -08:00
|
|
|
"eslint": "7.32.0",
|
2023-03-27 04:01:21 -08:00
|
|
|
"eslint-config-prettier": "8.8.0",
|
2020-06-08 10:40:58 -08:00
|
|
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
2023-04-03 03:58:54 -08:00
|
|
|
"eslint-plugin-json-schema-validator": "^4.4.0",
|
2023-05-15 04:03:19 -08:00
|
|
|
"eslint-plugin-jsonc": "^2.8.0",
|
2022-07-04 03:06:57 -08:00
|
|
|
"eslint-plugin-prettier": "4.2.1",
|
2023-02-20 12:54:18 -09:00
|
|
|
"eslint-plugin-react": "7.32.2",
|
2023-01-09 02:10:26 -09:00
|
|
|
"husky": "8.0.3",
|
2023-05-15 04:02:54 -08:00
|
|
|
"inquirer": "9.2.3",
|
2023-04-24 04:06:31 -08:00
|
|
|
"node-addon-api": "6.1.0",
|
2022-12-26 02:04:48 -09:00
|
|
|
"node-gyp": "9.3.1",
|
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-05-01 03:59:23 -08:00
|
|
|
"playwright": "1.33.0",
|
2022-07-18 03:10:45 -08:00
|
|
|
"plist": "3.0.6",
|
2023-04-24 04:07:14 -08:00
|
|
|
"prettier": "2.8.8",
|
2019-10-12 17:48:05 -08:00
|
|
|
"proxyquire": "2.1.3",
|
2021-03-08 02:03:40 -09:00
|
|
|
"redux-devtools-extension": "2.13.9",
|
2023-03-20 15:14:04 -08:00
|
|
|
"style-loader": "3.3.2",
|
2023-05-15 04:12:21 -08:00
|
|
|
"terser": "5.17.3",
|
2022-08-11 11:33:00 -08:00
|
|
|
"ts-node": "10.9.1",
|
2023-04-10 04:00:15 -08:00
|
|
|
"typescript": "5.0.4",
|
2023-05-16 21:41:44 -08:00
|
|
|
"webpack": "5.82.1"
|
2021-02-24 11:25:06 -09:00
|
|
|
},
|
|
|
|
|
"electronmon": {
|
|
|
|
|
"patterns": [
|
|
|
|
|
"!app/**",
|
|
|
|
|
"!lib/**",
|
|
|
|
|
"!dist/**"
|
|
|
|
|
]
|
2016-06-30 22:01:04 -08:00
|
|
|
}
|
|
|
|
|
}
|