forked from adhamu/history-in-sublime-merge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.06 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "sublime-merge-x",
"displayName": "Sublime Merge X",
"version": "0.1.6",
"description": "Launch contextual aware Sublime Merge commands from VS Code.",
"categories": [
"SCM Providers"
],
"repository": "https://github.com/ajitid/sublime-merge-x.git",
"license": "MIT",
"author": {
"name": "ajitid"
},
"publisher": "ajitid",
"main": "./out/extension.js",
"scripts": {
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js",
"vscode:prepublish": "npm run compile",
"watch": "tsc -watch -p ./"
},
"contributes": {
"commands": [
{
"command": "sublime-merge-x.viewFileHistory",
"title": "View File History",
"category": "Sublime Merge"
},
{
"command": "sublime-merge-x.viewLineHistory",
"title": "View Line History",
"category": "Sublime Merge"
},
{
"command": "sublime-merge-x.blameLine",
"title": "Blame Line",
"category": "Sublime Merge"
},
{
"command": "sublime-merge-x.openRepository",
"title": "Open Repository",
"category": "Sublime Merge"
}
],
"configuration": [
{
"title": "Sublime Merge X",
"properties": {
"sublime-merge-x.path": {
"type": "string",
"markdownDescription": "Path to Sublime Merge (smerge) command. If not set, the extension will check your `$PATH` instead to find it."
}
}
}
]
},
"dependencies": {
"command-exists": "^1.2.9",
"find-up": "^5.0.0"
},
"devDependencies": {
"@types/command-exists": "^1.2.3",
"@types/glob": "^7.1.3",
"@types/node": "^14.14.25",
"@types/vscode": "^1.75.0",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.8.0",
"glob": "^7.1.6",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0"
},
"engines": {
"vscode": "^1.75.0"
},
"icon": "sublime-merge.png"
}