hyper/package.json
Matheus Fernandes 9c90e19760 Add Windows support and first-class Linux support (#946)
* `child_pty` => `pty.js`

* Create a frameless window on Windows and Linux

* Add a brand new UI for Linux and Windows 💅

* [Windows] Fix plugin installation

* [Windows] Fix the `build` script

* [Windows] Add a bigger `icon.ico`

* [Mac] Add `WebKitAppRegion: drag` when running on macOS

* Fix code style 🤔

* Add `appveyor.yml`

* Fix code style (again)

* [Windows] Fix AppVeyor's `install` script

* [Windows] Try a new AppVeyor config

* [Windows] Set the binary path so Spectron can run the tests

* [Windows] Try to build on x64

* Try again to build on x64

* Try one more time 😩

* Throw an error to indicate that `pty.js` was built incorrectly

* [Win/Linux] Add `display: hidden` to <Tabs /> if tabs.length === 1

* [Win/Linux] Reorganize SVGs – via @CodeTheory

* [Win/Linux] Fix the hamburger menu height

* Make the SVGs look better with `shape-rendering: crispEdges;`

* [Win/Linux] Add config options for the window controls and the 🍔 menu

* Add `electron-squirrel-startup` dependency

* [Win] Handle Squirrel commands

* [Win/Linux] Fix default color for the 🍔 and window controls – via @CodeTheory

* [Win/Linux] Add some padding - via @CodeTheory

* [Win/Linux] Add hover states – via @CodeTheory

* [Win] Fix empty window/tab titles

* [Win] Fix opening Preferences (#978)

* [Win] Fix opening Preferences

* Update ui.js

* Update ui.js

* Enhance messages and default editor

* [Win] Add dependency instructions to the README.md [skip ci]

* Fix code style

* [Win/Linux] Check the number of open windows before quitting the app
2016-11-11 15:18:04 -02:00

107 lines
2.5 KiB
JSON

{
"repository": "zeit/hyper",
"scripts": {
"start": "concurrently --kill-others --raw \"npm run dev\" \"npm run app\"",
"app": "electron app",
"dev": "webpack -w",
"build": "cross-env NODE_ENV=production webpack",
"test": "npm run dist && xo && ava",
"prepush": "npm test",
"postinstall": "install-app-deps",
"pack": "npm run build && build --dir && babel --no-comments --compact --minified --out-file app/dist/bundle.js app/dist/bundle.js",
"dist": "npm run build && build"
},
"xo": {
"extends": "xo-react",
"esnext": true,
"space": true,
"env": [
"browser",
"node"
],
"rules": {
"new-cap": 0,
"complexity": 0,
"react/prop-types": 0,
"react/jsx-no-bind": 0
},
"ignores": [
"build/**",
"app/dist/**",
"app/static/**",
"assets/**"
]
},
"babel": {
"presets": [
"react"
]
},
"build": {
"appId": "co.zeit.hyper",
"asar": false,
"extend-info": "build/Info.plist",
"linux": {
"arch": [
"ia32",
"x64"
],
"target": [
"deb",
"AppImage"
]
},
"mac": {
"category": "public.app-category.developer-tools"
}
},
"license": "MIT",
"author": {
"name": "Zeit, Inc.",
"email": "team@zeit.co"
},
"greenkeeper": {
"emails": false
},
"dependencies": {
"aphrodite-simple": "0.4.1",
"color": "0.11.4",
"hterm-umdjs": "1.1.3",
"json-loader": "0.5.4",
"mousetrap": "1.6.0",
"ms": "0.7.2",
"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"
},
"devDependencies": {
"ava": "^0.16.0",
"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",
"copy-webpack-plugin": "^4.0.0",
"cross-env": "3.1.3",
"electron": "1.4.5",
"electron-builder": "^7.11.4",
"electron-devtools-installer": "^2.0.0",
"eslint-config-xo-react": "^0.10.0",
"eslint-plugin-react": "^6.3.0",
"husky": "^0.11.6",
"redux-logger": "^2.6.1",
"spectron": "^3.4.0",
"webpack": "^2.1.0-beta.15",
"xo": "^0.17.0"
}
}