package.json 2.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
{
  "name": "merge-conflict",
  "publisher": "vscode",
  "displayName": "merge-conflict",
  "description": "Merge Conflict",
  "version": "0.7.0",
  "aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
  "engines": {
    "vscode": "^1.5.0"
  },
  "categories": [
    "Other"
  ],
  "activationEvents": [
    "*"
  ],
  "main": "./out/extension",
  "scripts": {
    "compile": "gulp compile-extension:merge-conflict",
    "watch": "gulp watch-extension:merge-conflict"
  },
  "contributes": {
    "commands": [
24 25 26 27 28
      {
        "category": "%command.category%",
        "title": "%command.accept.all-current%",
        "command": "merge-conflict.accept.all-current"
      },
29
      {
30 31
        "category": "%command.category%",
        "title": "%command.accept.all-incoming%",
32 33 34
        "command": "merge-conflict.accept.all-incoming"
      },
      {
35 36
        "category": "%command.category%",
        "title": "%command.accept.all-both%",
37 38 39
        "command": "merge-conflict.accept.all-both"
      },
      {
40 41
        "category": "%command.category%",
        "title": "%command.accept.current%",
42 43 44
        "command": "merge-conflict.accept.current"
      },
      {
45 46
        "category": "%command.category%",
        "title": "%command.accept.incoming%",
47 48 49
        "command": "merge-conflict.accept.incoming"
      },
      {
50
        "category": "%command.category%",
51
        "title": "%command.accept.selection%",
52 53 54
        "command": "merge-conflict.accept.selection"
      },
      {
55 56
        "category": "%command.category%",
        "title": "%command.accept.both%",
57 58 59
        "command": "merge-conflict.accept.both"
      },
      {
60 61
        "category": "%command.category%",
        "title": "%command.next%",
62 63 64
        "command": "merge-conflict.next"
      },
      {
65 66
        "category": "%command.category%",
        "title": "%command.previous%",
67 68 69
        "command": "merge-conflict.previous"
      },
      {
70 71
        "category": "%command.category%",
        "title": "%command.compare%",
72 73 74 75
        "command": "merge-conflict.compare"
      }
    ],
    "configuration": {
76
      "title": "%config.title%",
77
      "properties": {
78
        "merge-conflict.codeLens.enabled": {
79
          "type": "boolean",
80 81 82 83 84 85
          "description": "%config.codeLensEnabled%",
          "default": true
        },
        "merge-conflict.decorators.enabled": {
          "type": "boolean",
          "description": "%config.decoratorsEnabled%",
86 87 88 89 90 91
          "default": true
        }
      }
    }
  },
  "dependencies": {
92
    "vscode-extension-telemetry": "0.0.8",
93 94 95
    "vscode-nls": "^2.0.2"
  },
  "devDependencies": {
96
    "@types/node": "8.0.33"
97 98
  }
}