-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.44 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "sfcc-vscode-extension",
"displayName": "SFCC Context Menu",
"version": "1.0.0",
"description": "Context Menu to make Developing for Salesforce Commerce Cloud Easier",
"license": "MIT",
"publisher": "SFCCDevOps",
"categories": [
"Other"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#00435f",
"theme": "dark"
},
"homepage": "https://github.com/sfccdevops/sfcc-vscode-extension#readme",
"repository": {
"type": "git",
"url": "https://github.com/sfccdevops/sfcc-vscode-extension.git"
},
"bugs": {
"url": "https://github.com/sfccdevops/sfcc-vscode-extension/issues"
},
"engines": {
"vscode": "^1.25.0"
},
"keywords": [
"salesforce",
"sfcc",
"commerce-cloud",
"demandware",
"sandbox",
"sfra",
"vscode",
"extension",
"context-menu"
],
"contributors": [
{
"name": "Peter Schmalfeldt",
"email": "[email protected]",
"url": "https://peterschmalfeldt.com"
}
],
"activationEvents": [
"onCommand:extension.searchCommerceCloudDocs",
"onCommand:extension.openInBusinessManager"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "extension.searchCommerceCloudDocs",
"title": "Search SFCC Docs"
},
{
"command": "extension.openInBusinessManager",
"title": "Open in BM"
}
],
"menus": {
"editor/context": [
{
"command": "extension.searchCommerceCloudDocs",
"when": "editorTextFocus && editorHasSelection && resourceExtname =~ /[isml|js]/)",
"group": "SFCC@1"
},
{
"command": "extension.openInBusinessManager",
"when": "editorTextFocus && editorHasSelection && resourceExtname == .isml",
"group": "SFCC@1"
}
]
},
"keybindings": [
{
"command": "extension.searchCommerceCloudDocs",
"when": "editorHasSelection && resourceExtname =~ /[isml|js]/)",
"key": "ctrl+shift+f",
"mac": "cmd+shift+f"
}, {
"command": "extension.openInBusinessManager",
"when": "editorHasSelection && resourceExtname == .isml",
"key": "ctrl+shift+b",
"mac": "cmd+shift+b"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"vscode": "^1.1.22"
},
"dependencies": {
"opn": "^6.0.0",
"rxjs": "^6.4.0"
}
}