Path: blob/main/extensions/merge-conflict/package.json
3292 views
{1"name": "merge-conflict",2"publisher": "vscode",3"displayName": "%displayName%",4"description": "%description%",5"icon": "media/icon.png",6"version": "1.0.0",7"license": "MIT",8"aiKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",9"engines": {10"vscode": "^1.5.0"11},12"categories": [13"Other"14],15"capabilities": {16"virtualWorkspaces": true,17"untrustedWorkspaces": {18"supported": true19}20},21"activationEvents": [22"onStartupFinished"23],24"main": "./out/mergeConflictMain",25"browser": "./dist/browser/mergeConflictMain",26"scripts": {27"compile": "gulp compile-extension:merge-conflict",28"watch": "gulp watch-extension:merge-conflict"29},30"contributes": {31"commands": [32{33"category": "%command.category%",34"title": "%command.accept.all-current%",35"original": "Accept All Current",36"command": "merge-conflict.accept.all-current",37"enablement": "!isMergeEditor"38},39{40"category": "%command.category%",41"title": "%command.accept.all-incoming%",42"original": "Accept All Incoming",43"command": "merge-conflict.accept.all-incoming",44"enablement": "!isMergeEditor"45},46{47"category": "%command.category%",48"title": "%command.accept.all-both%",49"original": "Accept All Both",50"command": "merge-conflict.accept.all-both",51"enablement": "!isMergeEditor"52},53{54"category": "%command.category%",55"title": "%command.accept.current%",56"original": "Accept Current",57"command": "merge-conflict.accept.current",58"enablement": "!isMergeEditor"59},60{61"category": "%command.category%",62"title": "%command.accept.incoming%",63"original": "Accept Incoming",64"command": "merge-conflict.accept.incoming",65"enablement": "!isMergeEditor"66},67{68"category": "%command.category%",69"title": "%command.accept.selection%",70"original": "Accept Selection",71"command": "merge-conflict.accept.selection",72"enablement": "!isMergeEditor"73},74{75"category": "%command.category%",76"title": "%command.accept.both%",77"original": "Accept Both",78"command": "merge-conflict.accept.both",79"enablement": "!isMergeEditor"80},81{82"category": "%command.category%",83"title": "%command.next%",84"original": "Next Conflict",85"command": "merge-conflict.next",86"enablement": "!isMergeEditor",87"icon": "$(arrow-down)"88},89{90"category": "%command.category%",91"title": "%command.previous%",92"original": "Previous Conflict",93"command": "merge-conflict.previous",94"enablement": "!isMergeEditor",95"icon": "$(arrow-up)"96},97{98"category": "%command.category%",99"title": "%command.compare%",100"original": "Compare Current Conflict",101"command": "merge-conflict.compare",102"enablement": "!isMergeEditor"103}104],105"menus": {106"scm/resourceState/context": [107{108"command": "merge-conflict.accept.all-current",109"when": "scmProvider == git && scmResourceGroup == merge",110"group": "1_modification"111},112{113"command": "merge-conflict.accept.all-incoming",114"when": "scmProvider == git && scmResourceGroup == merge",115"group": "1_modification"116}117],118"editor/title": [119{120"command": "merge-conflict.previous",121"group": "navigation@1",122"when": "!isMergeEditor && mergeConflictsCount && mergeConflictsCount != 0"123},124{125"command": "merge-conflict.next",126"group": "navigation@2",127"when": "!isMergeEditor && mergeConflictsCount && mergeConflictsCount != 0"128}129]130},131"configuration": {132"title": "%config.title%",133"properties": {134"merge-conflict.codeLens.enabled": {135"type": "boolean",136"description": "%config.codeLensEnabled%",137"default": true138},139"merge-conflict.decorators.enabled": {140"type": "boolean",141"description": "%config.decoratorsEnabled%",142"default": true143},144"merge-conflict.autoNavigateNextConflict.enabled": {145"type": "boolean",146"description": "%config.autoNavigateNextConflictEnabled%",147"default": false148},149"merge-conflict.diffViewPosition": {150"type": "string",151"enum": [152"Current",153"Beside",154"Below"155],156"description": "%config.diffViewPosition%",157"enumDescriptions": [158"%config.diffViewPosition.current%",159"%config.diffViewPosition.beside%",160"%config.diffViewPosition.below%"161],162"default": "Current"163}164}165}166},167"dependencies": {168"@vscode/extension-telemetry": "^0.9.8"169},170"devDependencies": {171"@types/node": "22.x"172},173"repository": {174"type": "git",175"url": "https://github.com/microsoft/vscode.git"176}177}178179180