This repository has been archived by the owner on Nov 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
23 lines (23 loc) · 2.27 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "open-in-github-app",
"main": "./lib/open-in-github-app",
"version": "0.2.6",
"description": "Opens the current project in GitHub.app",
"keywords": [],
"activationCommands": {
"atom-workspace": [
"open-in-github-app:open"
]
},
"repository": "https://github.com/cliffrowley/atom-open-in-github-app",
"license": "MIT",
"engines": {
"atom": ">=0.174.0 <2.0.0"
},
"dependencies": {
"atom-space-pen-views": "^2.0.5",
"giturlparse": "^1.2.0"
},
"readme": "# Open in GitHub App\n\nOpens the current project in GitHub app for [Mac](http://mac.github.com) or [Windows](https://windows.github.com/).\n\n## Features\n\n * Supports Mac and Windows.\n * Supports multiple project folders.\n\n## Keymaps\n\nOn both platforms the default keymap is <kbd>ctrl-alt-g</kbd>.\n\n## Windows\n\nThe GitHub app behaves very differently on Windows. Most notably there doesn't seem to be a way to launch the app with a local directory (only a repository URL), which has a few implications:\n\n * If the repository URL is not known to the app then it will simply open with whichever repository you last had selected.\n * If the repository URL _is_ known to the app but isn't where it expects to find it, then the app will prompt you to clone the repository.\n\nEssentially you just need to ensure that the GitHub app is already aware of your repository before you try launching it via Atom. And if at any point you move your local repository, ensure the GitHub app is aware of this.\n\nWe've asked GitHub to update the app to allow launching with a local directory, but so far our request seems to have fallen on deaf ears. If by some miracle our request is implemented, we'll update this package and unify the behaviour.\n\n## Mac\n\nThe app pretty much behaves as you would expect and if your project directory is not known to the GitHub app it will be added to its sidebar and remembered.\n\n## Authors\n\n * Cliff Rowley ([cliffrowley](https://github.com/cliffrowley))\n * James Sconfitto ([jugglingnutcase](https://github.com/jugglingnutcase))\n\n## Contributing\n\n[Issues](https://github.com/cliffrowley/atom-open-in-github-app/issues) and [pull requests](https://github.com/cliffrowley/atom-open-in-github-app/pulls) are always welcome!\n",
"readmeFilename": "README.md"
}