2016-06-30 23:01:04 -07:00
|
|
|
{
|
2019-10-06 20:51:56 +02:00
|
|
|
"name": "hyper",
|
2023-07-13 11:35:27 +05:30
|
|
|
"version": "4.0.0-canary.5",
|
2016-10-06 08:28:43 -07:00
|
|
|
"repository": "zeit/hyper",
|
2016-10-17 10:29:12 +02:00
|
|
|
"scripts": {
|
2019-10-03 06:26:50 +05:30
|
|
|
"start": "echo 'please run `yarn run dev` in one tab and then `yarn run app` in another one'",
|
2021-02-25 01:55:06 +05:30
|
|
|
"app": "cross-env ELECTRONMON_LOGLEVEL=error electronmon target",
|
2019-12-11 19:31:14 +05:30
|
|
|
"dev": "concurrently -n \"Webpack,TypeScript\" -c \"cyan.bold,blue.bold\" \"webpack -w\" \"tsc --build -v --pretty --watch --preserveWatchOutput\" -k",
|
2023-06-14 22:42:37 +05:30
|
|
|
"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 19:18:20 +05:30
|
|
|
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.json",
|
2018-02-25 03:29:51 +05:30
|
|
|
"test": "yarn run lint && yarn run test:unit",
|
2019-10-24 14:13:40 +02:00
|
|
|
"test:unit": "ava",
|
2017-08-15 10:08:45 -04:00
|
|
|
"test:unit:watch": "yarn run test:unit -- --watch",
|
2021-09-09 13:18:45 +05:30
|
|
|
"test:e2e": "ava --config ava-e2e.config.js",
|
2023-07-03 21:12:30 +05:30
|
|
|
"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 14:02:12 +05:30
|
|
|
"rebuild-node-pty": "electron-rebuild -f -o node-pty -m target",
|
2023-06-14 22:42:37 +05:30
|
|
|
"dist": "yarn run build && electron-builder",
|
2022-04-14 22:20:54 +05:30
|
|
|
"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 19:18:20 +05:30
|
|
|
"v8-snapshot:arch": "yarn run mk-snapshot && yarn run cp-snapshot",
|
2022-04-14 22:20:54 +05:30
|
|
|
"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 19:18:20 +05:30
|
|
|
"cp-snapshot": "node bin/cp-snapshot.js",
|
2023-07-25 15:09:51 +05:30
|
|
|
"generate-schema": "typescript-json-schema ./typings/config.d.ts rawConfig -o ./app/config/schema.json --required"
|
2016-06-30 23:01:04 -07:00
|
|
|
},
|
2016-10-17 10:29:12 +02:00
|
|
|
"license": "MIT",
|
|
|
|
|
"author": {
|
2018-01-17 16:58:49 +01:00
|
|
|
"name": "ZEIT, Inc.",
|
2016-10-17 10:29:12 +02:00
|
|
|
"email": "team@zeit.co"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2024-01-29 11:54:00 +00:00
|
|
|
"@electron/remote": "2.1.2",
|
2022-12-31 13:47:19 +05:30
|
|
|
"@react-icons/all-files": "4.1.0",
|
2023-12-11 11:22:05 +00:00
|
|
|
"@redux-devtools/extension": "^3.3.0",
|
2022-05-02 11:04:42 +00:00
|
|
|
"args": "5.0.3",
|
2023-07-03 11:51:30 +00:00
|
|
|
"chalk": "5.3.0",
|
2024-01-01 11:23:26 +00:00
|
|
|
"clsx": "2.1.0",
|
2022-04-10 13:41:49 +00:00
|
|
|
"color": "4.2.3",
|
2022-02-07 11:49:30 +00:00
|
|
|
"columnify": "1.6.0",
|
2024-04-15 11:11:48 +00:00
|
|
|
"css-loader": "7.1.1",
|
2022-09-05 15:45:31 +00:00
|
|
|
"got": "12.4.1",
|
2017-08-31 15:20:39 +02:00
|
|
|
"json-loader": "0.5.7",
|
2023-07-23 22:35:14 +05:30
|
|
|
"lodash": "4.17.21",
|
2017-11-03 03:51:18 +01:00
|
|
|
"mousetrap": "chabou/mousetrap#useCapture",
|
2020-12-14 11:05:45 +00:00
|
|
|
"ms": "2.1.3",
|
2023-02-27 12:10:37 +00:00
|
|
|
"open": "8.4.2",
|
2024-01-18 05:55:35 +00:00
|
|
|
"ora": "8.0.1",
|
2016-10-17 10:29:12 +02:00
|
|
|
"php-escape-shell": "1.0.0",
|
2023-07-24 12:59:12 +05:30
|
|
|
"react": "18.2.0",
|
|
|
|
|
"react-dom": "18.2.0",
|
2023-10-02 05:32:31 +00:00
|
|
|
"react-redux": "8.1.3",
|
2024-01-22 11:51:39 +00:00
|
|
|
"react-use": "^17.5.0",
|
2023-02-14 14:20:09 +00:00
|
|
|
"redux": "4.2.1",
|
2022-11-08 19:23:50 +00:00
|
|
|
"redux-thunk": "2.4.2",
|
2022-11-23 11:59:07 +05:30
|
|
|
"registry-url": "^6.0.1",
|
2023-04-24 03:20:55 +00:00
|
|
|
"reselect": "4.1.8",
|
2019-10-11 06:20:26 +11:00
|
|
|
"seamless-immutable": "7.1.4",
|
2024-02-12 11:06:03 +00:00
|
|
|
"semver": "7.6.0",
|
2018-01-22 10:21:01 +01:00
|
|
|
"shebang-loader": "0.0.1",
|
2023-01-30 11:01:53 +00:00
|
|
|
"styled-jsx": "5.1.2",
|
2019-10-11 06:20:26 +11:00
|
|
|
"stylis": "3.5.4",
|
2024-02-19 11:44:03 +00:00
|
|
|
"typescript-json-schema": "0.63.0",
|
2023-09-15 07:22:37 +00:00
|
|
|
"uuid": "9.0.1",
|
2023-06-12 12:00:20 +00:00
|
|
|
"webpack-cli": "5.1.4",
|
2023-09-15 07:04:28 +00:00
|
|
|
"xterm": "5.3.0",
|
2023-09-11 11:19:18 +00:00
|
|
|
"xterm-addon-canvas": "0.5.0",
|
2023-09-15 07:01:09 +00:00
|
|
|
"xterm-addon-fit": "0.8.0",
|
2023-08-07 11:42:14 +00:00
|
|
|
"xterm-addon-image": "0.5.0",
|
2023-09-15 07:05:22 +00:00
|
|
|
"xterm-addon-ligatures": "0.7.0",
|
2023-09-11 11:17:11 +00:00
|
|
|
"xterm-addon-search": "0.13.0",
|
2023-09-15 06:59:13 +00:00
|
|
|
"xterm-addon-unicode11": "0.6.0",
|
2023-09-15 07:21:49 +00:00
|
|
|
"xterm-addon-web-links": "0.9.0",
|
2023-09-11 11:19:07 +00:00
|
|
|
"xterm-addon-webgl": "0.16.0"
|
2016-10-17 10:29:12 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2021-07-06 04:13:07 +00:00
|
|
|
"@ava/babel": "2.0.0",
|
2023-07-03 11:52:31 +00:00
|
|
|
"@ava/typescript": "^4.1.0",
|
2024-04-10 11:06:00 +00:00
|
|
|
"@babel/cli": "7.24.1",
|
2024-04-08 11:10:10 +00:00
|
|
|
"@babel/core": "7.24.4",
|
2022-07-06 15:55:57 +00:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
2022-07-04 11:08:25 +00:00
|
|
|
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
|
2022-12-26 11:03:47 +00:00
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
|
2023-02-28 05:45:20 +00:00
|
|
|
"@babel/plugin-proposal-optional-chaining": "7.21.0",
|
2024-03-25 11:33:51 +00:00
|
|
|
"@babel/preset-react": "7.24.1",
|
2024-04-10 12:03:00 +00:00
|
|
|
"@babel/preset-typescript": "7.24.1",
|
2024-01-29 11:53:13 +00:00
|
|
|
"@electron/rebuild": "^3.6.0",
|
2023-11-14 10:17:05 +00:00
|
|
|
"@types/args": "5.0.3",
|
2021-07-12 11:05:16 +00:00
|
|
|
"@types/async-retry": "1.4.3",
|
2023-11-14 10:17:21 +00:00
|
|
|
"@types/color": "3.0.6",
|
2023-11-13 11:43:54 +00:00
|
|
|
"@types/columnify": "^1.5.4",
|
2023-11-15 06:07:44 +00:00
|
|
|
"@types/fs-extra": "11.0.4",
|
2024-03-18 11:20:37 +00:00
|
|
|
"@types/lodash": "^4.17.0",
|
2023-12-06 09:14:11 +00:00
|
|
|
"@types/mousetrap": "1.6.15",
|
2023-11-14 10:15:48 +00:00
|
|
|
"@types/ms": "0.7.34",
|
2024-04-18 04:36:54 +00:00
|
|
|
"@types/node": "18.19.31",
|
2023-11-14 10:16:11 +00:00
|
|
|
"@types/plist": "3.0.5",
|
2024-04-18 04:38:00 +00:00
|
|
|
"@types/react": "18.2.79",
|
2024-04-15 11:11:04 +00:00
|
|
|
"@types/react-dom": "18.2.25",
|
2023-11-14 06:27:04 +00:00
|
|
|
"@types/seamless-immutable": "7.1.19",
|
2021-07-06 02:57:38 +00:00
|
|
|
"@types/styled-jsx": "2.2.9",
|
2024-01-29 11:52:58 +00:00
|
|
|
"@types/uuid": "9.0.8",
|
2024-02-19 11:46:33 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "7.0.0",
|
2024-02-12 11:06:57 +00:00
|
|
|
"@typescript-eslint/parser": "6.21.0",
|
2024-03-20 13:34:18 +00:00
|
|
|
"ava": "6.1.2",
|
2023-07-10 11:18:26 +00:00
|
|
|
"babel-loader": "9.1.3",
|
2023-10-19 13:14:32 +00:00
|
|
|
"concurrently": "8.2.2",
|
2024-01-22 11:55:07 +00:00
|
|
|
"copy-webpack-plugin": "12.0.2",
|
2023-07-03 11:49:57 +00:00
|
|
|
"cpy-cli": "^5.0.0",
|
2020-12-07 11:05:37 +00:00
|
|
|
"cross-env": "7.0.3",
|
2023-10-05 18:39:15 +00:00
|
|
|
"electron": "22.3.25",
|
2024-03-20 12:43:38 +00:00
|
|
|
"electron-builder": "^24.13.3",
|
2022-04-14 22:20:54 +05:30
|
|
|
"electron-link": "^0.6.0",
|
2024-04-15 11:10:51 +00:00
|
|
|
"electron-mksnapshot": "29.3.0",
|
2021-08-23 11:04:41 +00:00
|
|
|
"electronmon": "^2.0.2",
|
2024-02-26 11:48:47 +00:00
|
|
|
"eslint": "8.57.0",
|
2023-12-06 09:15:41 +00:00
|
|
|
"eslint-config-prettier": "9.1.0",
|
2023-09-25 11:42:25 +00:00
|
|
|
"eslint-import-resolver-typescript": "^3.6.1",
|
2020-06-08 18:40:58 +00:00
|
|
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
2023-12-18 11:52:08 +00:00
|
|
|
"eslint-plugin-import": "^2.29.1",
|
2024-01-22 11:52:43 +00:00
|
|
|
"eslint-plugin-json-schema-validator": "^4.8.3",
|
2024-04-15 11:14:13 +00:00
|
|
|
"eslint-plugin-jsonc": "^2.15.1",
|
2023-07-23 22:35:14 +05:30
|
|
|
"eslint-plugin-lodash": "^7.4.0",
|
2024-01-18 05:54:47 +00:00
|
|
|
"eslint-plugin-prettier": "^5.1.3",
|
2024-03-18 11:18:05 +00:00
|
|
|
"eslint-plugin-react": "7.34.1",
|
2024-02-19 11:45:11 +00:00
|
|
|
"husky": "9.0.11",
|
2024-04-15 11:14:56 +00:00
|
|
|
"inquirer": "9.2.18",
|
2024-03-11 11:59:45 +00:00
|
|
|
"node-addon-api": "8.0.0",
|
2020-10-12 11:04:23 +00:00
|
|
|
"null-loader": "4.0.1",
|
2023-05-06 10:22:45 +05:30
|
|
|
"parse-url": "8.1.0",
|
2024-04-15 11:12:14 +00:00
|
|
|
"playwright": "1.43.1",
|
2023-07-10 11:18:56 +00:00
|
|
|
"plist": "3.1.0",
|
2024-02-28 05:55:36 +00:00
|
|
|
"prettier": "3.2.5",
|
2019-10-13 01:48:05 +00:00
|
|
|
"proxyquire": "2.1.3",
|
2024-04-15 11:15:24 +00:00
|
|
|
"style-loader": "4.0.0",
|
2024-04-08 11:08:38 +00:00
|
|
|
"terser": "5.30.3",
|
2024-01-01 11:20:47 +00:00
|
|
|
"terser-webpack-plugin": "^5.3.10",
|
2023-12-14 03:57:54 +00:00
|
|
|
"ts-node": "10.9.2",
|
2024-04-15 11:12:34 +00:00
|
|
|
"typescript": "5.4.5",
|
2024-04-10 17:04:44 +05:30
|
|
|
"webpack": "5.91.0"
|
2021-02-25 01:55:06 +05:30
|
|
|
},
|
|
|
|
|
"electronmon": {
|
|
|
|
|
"patterns": [
|
|
|
|
|
"!app/**",
|
|
|
|
|
"!lib/**",
|
|
|
|
|
"!dist/**"
|
|
|
|
|
]
|
2016-06-30 23:01:04 -07:00
|
|
|
}
|
|
|
|
|
}
|