-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.18 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
{
"name": "salesforce-diff",
"displayName": "Salesforce Diff",
"description": "Diff local files with what is compiled on salesforce",
"version": "0.0.7",
"publisher": "chuckjonas",
"engines": {
"vscode": "^1.5.0"
},
"icon": "images/diff-icon.png",
"repository": {
"type": "git",
"url": "https://github.com/ChuckJonas/vscode-salesforce-diff"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.diffDefaultOrg",
"onCommand:extension.diffSelectOrg"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.diffDefaultOrg",
"title": "SF DIFF: Current Org",
"icon": {
"light": "./images/diff-black.png",
"dark": "./images/diff-white.png"
}
},
{
"command": "extension.diffSelectOrg",
"title": "SF DIFF: Select an Org",
"icon": {
"light": "./images/diff-select-black.png",
"dark": "./images/diff-select-white.png"
}
}
],
"menus": {
"editor/title": [
{
"when": "resourceLangId == apex || resourceFilename =~ /-meta.xml/",
"command": "extension.diffDefaultOrg",
"alt": "extension.diffSelectOrg",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^12.7.2",
"mocha": "^6.2.0",
"typescript": "^3.3.1",
"vscode": "^1.0.0"
},
"dependencies": {
"@oclif/command": "1",
"@oclif/config": "1",
"@oclif/errors": "1",
"@salesforce/command": "^2.1.0",
"@salesforce/core": "^2.1.0",
"@types/rimraf": "^2.0.2",
"rimraf": "^3.0.0"
}
}