-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
214 lines (214 loc) · 4.82 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
{
"name": "pcf-builder",
"displayName": "PCF Builder",
"publisher": "danish-naglekar",
"description": "Helps with initializing, building and testing Power Apps Component Framework components",
"version": "1.1.2",
"engines": {
"vscode": "^1.51.0"
},
"homepage": "https://github.com/Power-Maverick/PCF-Builder-VSCode",
"bugs": {
"url": "https://github.com/Power-Maverick/PCF-Builder-VSCode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Power-Maverick/PCF-Builder-VSCode.git"
},
"categories": [
"Other"
],
"keywords": [
"Power Apps Component Framework",
"Power Apps",
"PCF",
"Snippets",
"Power Platform",
"Test Harness",
"Webview"
],
"license": "MIT",
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"icon": "icon/PB_Icon.png",
"contributes": {
"commands": [
{
"command": "pcf-builder.init",
"category": "PCF Builder",
"title": "Initialize Component (Simple)"
},
{
"command": "pcf-builder.build",
"category": "PCF Builder",
"title": "Build Component"
},
{
"command": "pcf-builder.testwatch",
"category": "PCF Builder",
"title": "Test Component with Watch"
},
{
"command": "pcf-builder.testnowatch",
"category": "PCF Builder",
"title": "Test Component with No Watch"
},
{
"command": "pcf-builder.updatePCFCLI",
"category": "PCF Builder",
"title": "Update PCF CLI"
},
{
"command": "pcf-builder.createProfile",
"category": "PCF Builder",
"title": "Create Authentication Profile"
},
{
"command": "pcf-builder.listProfile",
"category": "PCF Builder",
"title": "List Authentication Profile"
},
{
"command": "pcf-builder.deleteProfile",
"category": "PCF Builder",
"title": "Delete Authentication Profile"
},
{
"command": "pcf-builder.switchProfile",
"category": "PCF Builder",
"title": "Switch Authentication Profile"
},
{
"command": "pcf-builder.pcfPush",
"category": "PCF Builder",
"title": "Quick PCF Push"
},
{
"command": "pcf-builder.orgDetails",
"category": "PCF Builder",
"title": "Show Current Authentication Profile"
},
{
"command": "pcf-builder.forcePCF",
"category": "PCF Builder",
"title": "Initialize Component (Advanced)"
},
{
"command": "pcf-builder.addRESX",
"category": "PCF Builder",
"title": "Add new RESX File"
},
{
"command": "pcf-builder.addGitHubAction",
"category": "PCF Builder",
"title": "Add GitHub Action"
},
{
"command": "pcf-builder.generateReadMe",
"category": "PCF Builder",
"title": "Generate ReadMe file"
},
{
"command": "pcf-builder.previewPCFComponent",
"category": "PCF Builder",
"title": "Preview Component",
"icon": "$(play)"
},
{
"command": "pcf-builder.openDeveloperTools",
"title": "Open Dev Tools",
"category": "PCF Builder",
"icon": "$(tools)"
}
],
"menus": {
"explorer/context": [
{
"when": "explorerResourceIsFolder",
"command": "pcf-builder.addRESX",
"group": "2_workspace"
}
],
"editor/title": [
{
"when": "pcf-builder:isPCF",
"command": "pcf-builder.previewPCFComponent",
"group": "navigation@1"
},
{
"when": "pcf-builder:isPCF && !isWeb",
"command": "pcf-builder.openDeveloperTools",
"group": "navigation@2"
}
]
},
"keybindings": [
{
"command": "pcf-builder.init",
"key": "ctrl+p ctrl+i"
},
{
"command": "pcf-builder.build",
"key": "ctrl+p ctrl+b"
},
{
"command": "pcf-builder.testwatch",
"key": "ctrl+p ctrl+t"
},
{
"command": "pcf-builder.updatePCFCLI",
"key": "ctrl+p ctrl+u"
},
{
"command": "pcf-builder.pcfPush",
"key": "ctrl+p ctrl+q"
},
{
"command": "pcf-builder.forcePCF",
"key": "ctrl+p ctrl+f"
},
{
"command": "pcf-builder.addRESX",
"key": "ctrl+p ctrl+r"
},
{
"command": "pcf-builder.previewPCFComponent",
"key": "ctrl+p f5"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js",
"deploy": "vsce publish --yarn"
},
"dependencies": {
"@types/xml-parser": "^1.2.29",
"dayjs": "^1.10.5",
"generator-pcf": "^1.4.2",
"mobx": "^6.3.2",
"xml-parser": "^1.2.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.29",
"@types/glob": "^7.1.3",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"@types/vscode": "^1.51.0",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"glob": "^7.1.6",
"mocha": "^7.1.1",
"typescript": "^3.8.3",
"vsce": "^1.93.0",
"vscode-test": "^1.3.0"
}
}