-
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.44 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.44 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": "GitChanges",
"displayName": "Git Changes",
"description": "Show changed files in git",
"version": "0.4.0",
"author": "https://github.com/jazzg62",
"publisher": "jazzg62",
"icon": "logo.png",
"repository": {
"type": "git",
"url": "https://github.com/jazzg62/copy-changes"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:cc.showChanges",
"onCommand:cc.showSelectedChanges"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "cc.showChanges",
"title": "Show Changes",
"when": "scmProvider == git"
},
{
"command": "cc.showSelectedChanges",
"title": "Show Select Changes",
"when": "scmProvider == git"
}
],
"menus": {
"scm/resourceState/context": [
{
"command": "cc.showChanges",
"group": "navigation",
"when": "scmProvider == git"
},
{
"command": "cc.showSelectedChanges",
"group": "navigation",
"when": "scmProvider == git"
}
]
}
},
"scripts": {
"build": "tsc",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js",
"publish": "vsce package && vsce publish"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "14.x",
"@types/vscode": "^1.66.0",
"@vscode/test-electron": "^2.1.3",
"eslint": "^8.11.0",
"glob": "^7.2.0",
"mocha": "^9.2.2",
"typescript": "^4.5.5"
}
}