1
1
mirror of https://github.com/kahole/edamagit.git synced 2024-09-11 07:15:31 +03:00
edamagit/package.json

555 lines
14 KiB
JSON
Raw Normal View History

2019-12-03 00:50:08 +03:00
{
"name": "magit",
"preview": true,
"displayName": "Magit",
2020-02-01 04:55:53 +03:00
"description": "Magit for Visual Studio Code",
2020-01-09 23:18:13 +03:00
"publisher": "kahole",
2020-02-20 01:14:13 +03:00
"author": {
2020-02-20 01:18:57 +03:00
"name": "Kristian Andersen Hole"
2020-02-20 01:14:13 +03:00
},
"version": "0.1.2",
2019-12-03 00:50:08 +03:00
"engines": {
2020-02-23 19:03:47 +03:00
"vscode": "^1.42.1"
2019-12-03 00:50:08 +03:00
},
2020-02-23 19:19:26 +03:00
"icon": "images/magit_logo.png",
2020-02-20 01:14:13 +03:00
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
2019-12-03 00:50:08 +03:00
"categories": [
"Other"
],
2020-02-20 01:14:13 +03:00
"keywords": [
"magit",
"git",
"emacs",
"commit"
],
"license": "MIT",
2020-02-20 01:18:57 +03:00
"homepage": "https://github.com/kahole/vscode-magit/blob/master/README.md",
2020-02-20 01:14:13 +03:00
"repository": {
"type": "git",
2020-02-20 01:18:57 +03:00
"url": "https://github.com/kahole/vscode-magit.git"
},
"bugs": {
"url": "https://github.com/kahole/vscode-magit/issues"
2020-02-20 01:14:13 +03:00
},
2019-12-03 00:50:08 +03:00
"activationEvents": [
2020-02-23 17:16:10 +03:00
"onCommand:magit.status",
"onCommand:magit.dispatch",
"onCommand:magit.file-popup"
2019-12-03 00:50:08 +03:00
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
2020-02-23 17:16:10 +03:00
"command": "magit.status",
2019-12-03 00:50:08 +03:00
"title": "Magit Status"
},
2020-02-01 04:30:55 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.toggle-fold",
2020-02-01 04:30:55 +03:00
"title": "Magit Toggle Fold"
},
2020-02-01 01:53:32 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.dispatch",
2020-02-01 01:53:32 +03:00
"title": "Magit Dispatch"
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.file-popup",
2020-02-01 01:53:32 +03:00
"title": "Magit File Popup"
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.visit-at-point",
2019-12-16 19:51:16 +03:00
"title": "Magit Visit-at-point"
},
2020-01-14 19:07:19 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.apply-at-point",
2020-01-14 19:07:19 +03:00
"title": "Magit Apply-at-point"
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.discard-at-point",
"title": "Magit Discard-at-point"
},
2020-03-20 23:40:27 +03:00
{
"command": "magit.reverse-at-point",
"title": "Magit Reverse-at-point"
},
2019-12-09 02:06:23 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.commit",
2019-12-16 19:51:16 +03:00
"title": "Magit Commit"
2019-12-09 02:06:23 +03:00
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.branching",
2019-12-16 19:51:16 +03:00
"title": "Magit Branching"
2019-12-08 21:57:55 +03:00
},
2020-01-26 22:46:24 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.merging",
2020-01-26 22:46:24 +03:00
"title": "Magit Merging"
},
2020-02-01 01:53:32 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.rebasing",
2020-02-01 01:53:32 +03:00
"title": "Magit Rebasing"
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.resetting",
"title": "Magit Resetting"
},
2019-12-08 21:57:55 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.pushing",
2019-12-16 19:51:16 +03:00
"title": "Magit Pushing"
2019-12-08 21:57:55 +03:00
},
2020-02-01 01:53:32 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.pulling",
2020-02-01 01:53:32 +03:00
"title": "Magit Pulling"
},
2020-02-04 22:10:53 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.remoting",
2020-02-04 22:10:53 +03:00
"title": "Magit Remoting"
},
2020-02-04 22:58:57 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.logging",
2020-02-04 22:58:57 +03:00
"title": "Magit Logging"
},
2020-03-03 23:56:07 +03:00
{
"command": "magit.show-refs",
"title": "Magit Show Refs"
},
2020-03-10 23:00:22 +03:00
{
"command": "magit.diffing",
"title": "Magit Diffing"
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.tagging",
"title": "Magit Tagging"
},
2020-03-18 02:00:36 +03:00
{
"command": "magit.cherry-picking",
"title": "Magit Cherry Picking"
},
{
"command": "magit.reverting",
"title": "Magit Reverting"
},
2020-03-16 23:15:06 +03:00
{
"command": "magit.ignoring",
"title": "Magit Ignore"
},
2020-03-17 00:43:49 +03:00
{
"command": "magit.running",
"title": "Magit Running"
},
2020-03-04 21:02:28 +03:00
{
"command": "magit.worktree",
"title": "Magit Worktree"
},
2019-12-10 00:38:54 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.stage",
2019-12-16 19:51:16 +03:00
"title": "Magit Stage"
2019-12-10 00:38:54 +03:00
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.stage-all",
2019-12-16 19:51:16 +03:00
"title": "Magit Stage All"
2019-12-10 00:38:54 +03:00
},
2019-12-13 00:43:52 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.unstage",
2019-12-16 19:51:16 +03:00
"title": "Magit Unstage"
2019-12-13 00:43:52 +03:00
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.unstage-all",
2019-12-16 19:51:16 +03:00
"title": "Magit Unstage All"
2019-12-13 00:43:52 +03:00
},
2019-12-08 21:57:55 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.help",
2019-12-16 19:51:16 +03:00
"title": "Magit Help"
2019-12-23 00:12:15 +03:00
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.stashing",
2019-12-23 00:12:15 +03:00
"title": "Magit Stashing"
2020-02-05 23:20:41 +03:00
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.fetching",
2020-02-05 23:20:41 +03:00
"title": "Magit Fetching"
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.process-log",
"title": "Magit Process Log"
}
],
"menus": {
"commandPalette": [
2020-02-01 01:53:32 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.help",
2020-02-01 01:53:32 +03:00
"when": "editorLangId == magit"
},
2019-12-08 21:57:55 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.branching",
2019-12-18 23:02:33 +03:00
"when": "editorLangId == magit"
2019-12-08 21:57:55 +03:00
},
2020-01-26 22:46:24 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.merging",
2020-01-26 22:46:24 +03:00
"when": "editorLangId == magit"
},
2020-02-01 01:53:32 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.rebasing",
2020-02-01 01:53:32 +03:00
"when": "editorLangId == magit"
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.resetting",
"when": "editorLangId == magit"
},
2020-02-04 22:10:53 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.remoting",
2020-02-04 22:10:53 +03:00
"when": "editorLangId == magit"
},
2020-02-04 22:58:57 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.logging",
2020-02-04 22:58:57 +03:00
"when": "editorLangId == magit"
},
2020-03-03 23:56:07 +03:00
{
"command": "magit.show-refs",
"when": "editorLangId == magit"
},
2020-03-10 23:00:22 +03:00
{
"command": "magit.diffing",
"when": "editorLangId == magit"
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.tagging",
"when": "editorLangId == magit"
},
2020-03-18 02:00:36 +03:00
{
"command": "magit.cherry-picking",
"when": "editorLangId == magit"
},
{
"command": "magit.reverting",
"when": "editorLangId == magit"
},
2020-03-16 23:15:06 +03:00
{
"command": "magit.ignoring",
"when": "editorLangId == magit"
},
2020-03-17 00:43:49 +03:00
{
"command": "magit.running",
"when": "editorLangId == magit"
},
2020-03-04 21:02:28 +03:00
{
"command": "magit.worktree",
"when": "editorLangId == magit"
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.visit-at-point",
2019-12-18 23:02:33 +03:00
"when": "editorLangId == magit"
},
2020-01-14 19:07:19 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.apply-at-point",
2020-01-14 19:07:19 +03:00
"when": "editorLangId == magit"
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.discard-at-point",
"when": "editorLangId == magit"
},
2020-03-20 23:40:27 +03:00
{
"command": "magit.reverse-at-point",
"when": "editorLangId == magit"
},
2019-12-10 00:38:54 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.stage",
2019-12-18 23:02:33 +03:00
"when": "editorLangId == magit"
2019-12-10 00:38:54 +03:00
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.stage-all",
2019-12-18 23:02:33 +03:00
"when": "editorLangId == magit"
2019-12-10 00:38:54 +03:00
},
2019-12-13 00:43:52 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.unstage",
2019-12-18 23:02:33 +03:00
"when": "editorLangId == magit"
2019-12-13 00:43:52 +03:00
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.unstage-all",
2019-12-18 23:02:33 +03:00
"when": "editorLangId == magit"
2019-12-13 00:43:52 +03:00
},
2019-12-09 02:06:23 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.commit",
2019-12-18 23:02:33 +03:00
"when": "editorLangId == magit"
2019-12-09 02:06:23 +03:00
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.pushing",
2019-12-18 23:02:33 +03:00
"when": "editorLangId == magit"
2019-12-23 00:12:15 +03:00
},
2020-02-01 01:53:32 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.pulling",
2020-02-01 01:53:32 +03:00
"when": "editorLangId == magit"
},
2019-12-23 00:12:15 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.stashing",
2019-12-23 00:12:15 +03:00
"when": "editorLangId == magit"
2020-02-05 23:20:41 +03:00
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.fetching",
2020-02-05 23:20:41 +03:00
"when": "editorLangId == magit"
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.process-log",
"when": "editorLangId == magit"
}
]
},
"languages": [
{
2019-12-18 23:02:33 +03:00
"id": "magit",
2019-12-13 00:09:00 +03:00
"aliases": [
"Magit"
],
"extensions": [
".magit"
],
2019-12-07 05:02:04 +03:00
"configuration": "./languages/magit.language-configuration.json"
}
],
2019-12-14 20:54:18 +03:00
"configurationDefaults": {
2019-12-18 23:02:33 +03:00
"[magit]": {
2020-02-01 06:14:21 +03:00
"editor.lineNumbers": "off",
"editor.lineHeight": 15
2019-12-14 20:54:18 +03:00
}
},
"grammars": [
{
2019-12-18 23:02:33 +03:00
"language": "magit",
"scopeName": "source.magit",
2019-12-18 23:02:33 +03:00
"path": "./syntaxes/magit.tmGrammar.json"
}
],
"keybindings": [
2020-02-01 01:53:32 +03:00
{
2020-02-23 19:07:06 +03:00
"command": "magit.status",
"key": "alt+x g"
2020-02-01 01:53:32 +03:00
},
2020-02-02 22:11:46 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.dispatch",
"key": "alt+x ctrl+g"
2020-02-02 22:11:46 +03:00
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.file-popup",
"key": "alt+x alt+g"
2020-02-02 22:11:46 +03:00
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.toggle-fold",
"key": "tab",
2019-12-18 23:02:33 +03:00
"when": "editorTextFocus && editorLangId == magit"
},
2019-12-13 00:09:00 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.refresh",
2019-12-13 00:09:00 +03:00
"key": "g",
2019-12-18 23:02:33 +03:00
"when": "editorTextFocus && editorLangId == magit"
2019-12-13 00:09:00 +03:00
},
2019-12-22 19:55:34 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.help",
2019-12-22 19:55:34 +03:00
"key": "shift+/",
"when": "editorTextFocus && editorLangId == magit"
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.visit-at-point",
"key": "enter",
2019-12-18 23:02:33 +03:00
"when": "editorTextFocus && editorLangId == magit"
},
2020-01-14 19:07:19 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.apply-at-point",
2020-01-14 19:07:19 +03:00
"key": "a",
"when": "editorTextFocus && editorLangId == magit"
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.discard-at-point",
"key": "k",
"when": "editorTextFocus && editorLangId == magit"
},
2020-03-20 23:40:27 +03:00
{
"command": "magit.reverse-at-point",
"key": "v",
"when": "editorTextFocus && editorLangId == magit"
},
2019-12-09 02:06:23 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.commit",
2019-12-09 02:06:23 +03:00
"key": "c",
2019-12-18 23:02:33 +03:00
"when": "editorTextFocus && editorLangId == magit"
2019-12-09 02:06:23 +03:00
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.branching",
"key": "b",
2019-12-18 23:02:33 +03:00
"when": "editorTextFocus && editorLangId == magit"
2019-12-08 21:57:55 +03:00
},
2020-01-26 22:46:24 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.merging",
2020-01-26 22:46:24 +03:00
"key": "m",
"when": "editorTextFocus && editorLangId == magit"
},
2020-02-01 01:53:32 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.rebasing",
2020-02-01 01:53:32 +03:00
"key": "r",
"when": "editorTextFocus && editorLangId == magit"
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.resetting",
2020-03-13 19:39:08 +03:00
"key": "shift+x",
"when": "editorTextFocus && editorLangId == magit"
},
{
"command": "magit.reset-mixed",
"key": "x",
"when": "editorTextFocus && editorLangId == magit"
},
{
"command": "magit.reset-hard",
"key": "ctrl+u x",
"when": "editorTextFocus && editorLangId == magit"
},
2020-02-04 22:10:53 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.remoting",
2020-02-04 22:10:53 +03:00
"key": "shift+m",
"when": "editorTextFocus && editorLangId == magit"
},
2020-02-04 22:58:57 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.logging",
2020-02-04 22:58:57 +03:00
"key": "l",
"when": "editorTextFocus && editorLangId == magit"
},
2020-03-03 23:56:07 +03:00
{
"command": "magit.show-refs",
"key": "y",
"when": "editorTextFocus && editorLangId == magit"
},
2020-03-10 23:00:22 +03:00
{
"command": "magit.diffing",
"key": "d",
"when": "editorTextFocus && editorLangId == magit"
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.tagging",
"key": "t",
"when": "editorTextFocus && editorLangId == magit"
},
2020-03-18 02:00:36 +03:00
{
"command": "magit.cherry-picking",
"key": "shift+a",
"when": "editorTextFocus && editorLangId == magit"
},
{
"command": "magit.reverting",
"key": "shift+v",
"when": "editorTextFocus && editorLangId == magit"
},
2020-03-16 23:15:06 +03:00
{
"command": "magit.ignoring",
"key": "i",
"when": "editorTextFocus && editorLangId == magit"
},
{
"command": "magit.ignoring",
"key": "shift+i",
"when": "editorTextFocus && editorLangId == magit"
},
2020-03-17 00:43:49 +03:00
{
"command": "magit.running",
"key": "shift+1",
"when": "editorTextFocus && editorLangId == magit"
},
2020-03-04 21:02:28 +03:00
{
"command": "magit.worktree",
"key": "shift+5",
"when": "editorTextFocus && editorLangId == magit"
},
2019-12-08 21:57:55 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.pushing",
2019-12-08 21:57:55 +03:00
"key": "shift+p",
2019-12-18 23:02:33 +03:00
"when": "editorTextFocus && editorLangId == magit"
2019-12-08 21:57:55 +03:00
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.pulling",
"key": "shift+f",
"when": "editorTextFocus && editorLangId == magit"
},
2019-12-22 22:37:52 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.stashing",
2019-12-22 22:37:52 +03:00
"key": "z",
"when": "editorTextFocus && editorLangId == magit"
},
2019-12-22 02:50:00 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.fetching",
2019-12-22 02:50:00 +03:00
"key": "f",
"when": "editorTextFocus && editorLangId == magit"
},
2019-12-10 00:38:54 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.stage",
2019-12-10 00:38:54 +03:00
"key": "s",
2019-12-18 23:02:33 +03:00
"when": "editorTextFocus && editorLangId == magit"
2019-12-10 00:38:54 +03:00
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.stage-all",
2019-12-10 00:38:54 +03:00
"key": "shift+s",
2019-12-18 23:02:33 +03:00
"when": "editorTextFocus && editorLangId == magit"
2019-12-10 00:38:54 +03:00
},
2019-12-13 00:43:52 +03:00
{
2020-02-23 17:16:10 +03:00
"command": "magit.unstage",
2019-12-13 00:43:52 +03:00
"key": "u",
2019-12-18 23:02:33 +03:00
"when": "editorTextFocus && editorLangId == magit"
2019-12-13 00:43:52 +03:00
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.unstage-all",
2019-12-13 00:43:52 +03:00
"key": "shift+u",
2019-12-18 23:02:33 +03:00
"when": "editorTextFocus && editorLangId == magit"
},
{
2020-02-23 17:16:10 +03:00
"command": "magit.process-log",
"key": "shift+4",
"when": "editorTextFocus && editorLangId == magit"
2019-12-13 00:43:52 +03:00
},
2019-12-09 02:06:23 +03:00
{
2020-03-21 01:30:41 +03:00
"command": "magit.quit",
"key": "q",
"when": "editorTextFocus && editorLangId == magit"
},
{
"command": "magit.save-and-close-editor",
2019-12-09 02:06:23 +03:00
"key": "ctrl+c ctrl+c",
"when": "editorTextFocus && editorLangId == git-commit"
},
{
2020-03-21 01:30:41 +03:00
"command": "magit.clear-and-abort-editor",
2019-12-09 02:06:23 +03:00
"key": "ctrl+c ctrl+k",
"when": "editorTextFocus && editorLangId == git-commit"
2020-01-21 18:39:11 +03:00
},
{
"command": "magit.save-and-close-editor",
"key": "ctrl+c ctrl+c",
"when": "editorTextFocus && editorLangId == git-rebase"
},
{
"command": "magit.clear-and-abort-editor",
2020-03-21 01:30:41 +03:00
"key": "ctrl+c ctrl+k",
"when": "editorTextFocus && editorLangId == git-rebase"
2019-12-03 00:50:08 +03:00
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
2020-02-26 23:30:59 +03:00
"compile": "tsc --forceConsistentCasingInFileNames -p ./",
2020-03-15 20:22:04 +03:00
"lint": "eslint src --ext ts",
2019-12-03 00:50:08 +03:00
"watch": "tsc -watch -p ./",
2020-03-15 20:22:04 +03:00
"pretest": "npm run compile && npm run lint",
2019-12-03 00:50:08 +03:00
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
2020-03-15 20:22:04 +03:00
"@types/mocha": "^7.0.1",
2019-12-03 00:50:08 +03:00
"@types/node": "^12.11.7",
2020-03-15 20:37:28 +03:00
"@types/vscode": "^1.42.1",
2020-03-15 20:22:04 +03:00
"@typescript-eslint/eslint-plugin": "^2.18.0",
2020-03-21 16:13:12 +03:00
"@typescript-eslint/parser": "^2.18.0",
"eslint": "^6.8.0",
2020-03-15 20:22:04 +03:00
"glob": "^7.1.6",
2020-03-21 16:13:12 +03:00
"mocha": "^7.1.1",
2020-03-15 20:22:04 +03:00
"typescript": "^3.7.5",
"vscode-test": "^1.3.0"
2019-12-03 00:50:08 +03:00
}
2020-02-23 19:20:21 +03:00
}