hyper/package.json

113 lines
2.6 KiB
JSON
Raw Normal View History

2016-06-30 22:01:04 -08:00
{
2016-10-06 07:28:43 -08:00
"name": "hyper",
2016-10-15 14:47:28 -08:00
"version": "0.8.2",
"description": "Web app that runs in the renderer process",
2016-10-06 07:28:43 -08:00
"repository": "zeit/hyper",
2016-09-18 02:48:11 -08:00
"license": "MIT",
2016-07-25 14:17:16 -08:00
"author": {
2016-08-19 23:47:30 -08:00
"name": "Zeit, Inc.",
"email": "team@zeit.co"
2016-07-25 14:17:16 -08:00
},
2016-07-27 05:10:41 -08:00
"greenkeeper": {
"emails": false
},
2016-06-30 22:01:04 -08:00
"dependencies": {
"aphrodite-simple": "0.4.1",
2016-07-25 14:16:30 -08:00
"color": "0.11.3",
"hterm-umdjs": "1.1.3",
"json-loader": "0.5.4",
"mousetrap": "1.6.0",
2016-07-07 12:49:21 -08:00
"ms": "0.7.1",
"object-values": "1.0.0",
"php-escape-shell": "1.0.0",
"react": "15.3.2",
"react-addons-pure-render-mixin": "15.3.2",
"react-deep-force-update": "2.0.1",
"react-dom": "15.3.2",
"react-redux": "4.4.5",
"redux": "3.6.0",
"redux-thunk": "2.1.0",
"reselect": "2.5.4",
"seamless-immutable": "6.1.3",
"semver": "5.3.0",
"uuid": "2.0.2"
2016-06-30 22:01:04 -08:00
},
"devDependencies": {
2016-09-21 22:08:56 -08:00
"ava": "^0.16.0",
2016-07-29 14:57:06 -08:00
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-react": "^6.11.1",
"concurrently": "^3.0.0",
2016-07-28 01:28:04 -08:00
"copy-webpack-plugin": "^3.0.1",
Split Panes (#693) * npm: add .npmrc with save-exact=true * split panes: create initial implementation This allows users to split their Hyperterm terms into multiple nested splits, both vertical and horizontal. Fixes #56 * split panes: suport closing tabs and individual panes * split panes: ensure new splits are placed at the correct index New split panes should be placed after the currently active pane, not at the end like they were previously. * split panes: add explicit dependency to uuid * split panes: implement split pane cycling This adds menu buttons for moving back and forward between open split panes in the currect terminal tab. Doesn't add a hotkey yet, needs some bikeshedding. * split panes: move activeSessionUid to its own object It made little sense to have so many objects with `activeSessionUid` set to `null` when it only mattered on the top level. Now it's an object mapping term-group `uid` to `sessionUid` instead. * split panes: make sure closing the last split pane exits the app * split panes: fix a crash after closing specific panes Sometimes the terminal would crash when a specific split pane was closed, because the `activeSessions` mapping wasn't updated correctly. * split panes: fix a bug that caused initial session sizing to be wrong * fix all our focus / blur issues in one fell swoop :O (famous last words) * get rid of react warning * hterm: make sure not to lose focus when VT listens on clicks * term: restore onactive callback * add missing `return` to override (just in case) * split pane: new split pane implementation * goodbye react-split-pane * added term group resizing action and reducer * terms: supply border color so that we can use it for splits * term-group: add resizing hook * term-groups: add resizing constant * remove split pane css side-effect * split panes: pass existing hterm instances to Term * split panes: add keybindings for split pane cycling * split panes: remove unused action * split panes: remove unused styling * split-pane: remove `console.log` * split-pane: remove `console.log` * split panes: rebalance sizes on insert/removal * split panes: pass existing hterm instances to Term * split panes: add keybindings for split pane cycling * split panes: remove unused action * split panes: remove unused styling * split panes: rebalance sizes on insert/removal * split panes: set a minimum size for resizing * split-pane: fix vertical splits * css :| * package: bump electron * split panes: attach onFocus listener to webviews * 1.4.1 and 1.4.2 are broken. they have the following regression: - open google.com on the main window - open a new tab - come back to previous tab. webview is gone :| * split panes: handle PTY exits * split panes: add linux friendly keybindings
2016-10-03 18:00:50 -08:00
"electron": "1.4.0",
"electron-builder": "^7.11.4",
"electron-devtools-installer": "^2.0.0",
"eslint-config-xo-react": "^0.10.0",
"eslint-plugin-react": "^6.3.0",
2016-07-29 14:57:06 -08:00
"husky": "^0.11.6",
"redux-logger": "^2.6.1",
2016-09-21 22:08:56 -08:00
"spectron": "^3.4.0",
"webpack": "^2.1.0-beta.15",
"xo": "^0.17.0"
2016-06-30 22:01:04 -08:00
},
"xo": {
"extends": "xo-react",
"esnext": true,
"space": true,
"env": [
"browser",
2016-10-17 00:24:10 -08:00
"node"
],
2016-06-30 22:01:04 -08:00
"rules": {
"new-cap": 0,
"no-warning-comments": 0,
"complexity": 0,
"import/prefer-default-export": 0,
"react/prop-types": 0,
"react/jsx-no-bind": 0
},
"ignore": [
"dist",
"build",
"app/dist",
"app/static",
"assets"
]
2016-06-30 22:01:04 -08:00
},
"babel": {
"presets": [
"react"
]
},
"build": {
2016-10-06 07:28:43 -08:00
"appId": "co.zeit.hyper",
"asar": false,
2016-07-25 15:41:24 -08:00
"extend-info": "build/Info.plist",
"linux": {
"arch": [
"ia32",
"x64"
],
"target": [
"deb",
"AppImage"
]
2016-09-14 23:36:48 -08:00
},
"mac": {
"category": "public.app-category.developer-tools"
2016-07-25 15:41:24 -08:00
}
},
2016-06-30 22:01:04 -08:00
"scripts": {
"start": "concurrently --kill-others --raw \"npm run dev\" \"npm run app\"",
"app": "electron app",
2016-09-21 21:59:24 -08:00
"dev": "webpack -w",
"build": "NODE_ENV=production webpack",
"test": "npm run dist && xo && ava",
"prepush": "npm test",
"postinstall": "install-app-deps",
2016-07-27 18:02:19 -08:00
"pack": "npm run build && build --dir && babel --no-comments --compact --minified --out-file app/dist/bundle.js app/dist/bundle.js",
2016-10-05 13:07:32 -08:00
"dist": "npm run build && build"
2016-06-30 22:01:04 -08:00
}
}