-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.6 KB
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
{
"name": "diff-visualizer",
"displayName": "Diff Visualizer",
"description": "Visualize and explore file changes, commit history between Git branches with an intuitive interface",
"version": "0.0.9",
"publisher": "lixiaoliang",
"license": "MIT",
"icon": "./images/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/lxliang912/diff-visualizer"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:branchDiff.panel",
"onCommand:branchDiff.compare"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "branchDiff.compare",
"title": "Diff Visualizer: Compare Branches"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "branch-diff",
"title": "Diff Visualizer",
"icon": "$(git-compare)"
}
]
},
"views": {
"branch-diff": [
{
"type": "webview",
"id": "branchDiff.panel",
"name": ""
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"lint": "eslint src --ext ts",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/node": "^20.x",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.x",
"@typescript-eslint/parser": "^6.x",
"eslint": "^8.x",
"typescript": "^5.x"
},
"dependencies": {
"simple-git": "^3.22.0"
}
}