-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
228 lines (228 loc) · 5.43 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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
{
"name": "sn-scriptsync",
"displayName": "sn-scriptsync",
"description": "SN Utils sn-sriptSync for VS Code. (Personal work of Arnoud Kooi)",
"version": "3.3.5",
"publisher": "arnoudkooicom",
"icon": "img/icon256.png",
"repository": {
"type": "git",
"url": "https://github.com/arnoudkooi/sn-scriptsync"
},
"bugs": {
"url": "https://github.com/arnoudkooi/sn-scriptsync/issues",
"email": "[email protected]"
},
"categories": [
"Linters",
"Programming Languages",
"Other"
],
"engines": {
"vscode": "^1.58.0"
},
"keywords": [
"ServiceNow",
"sn-scriptsync",
"sn-utils"
],
"activationEvents": [
"onStartupFinished",
"onView:scriptSync"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.snScriptSyncEnable",
"title": "sn-scriptsync: Enable"
},
{
"command": "extension.snScriptSyncDisable",
"title": "sn-scriptsync: Disable"
},
{
"command": "extension.bgScriptGlobal",
"title": "sn-scriptsync: Selection to Background Script (global)",
"when": "editorLangId == javascript"
},
{
"command": "extension.bgScriptScope",
"title": "sn-scriptsync: Selection to Background Script (scope)",
"when": "editorLangId == javascript"
},
{
"command": "extension.openInInstance",
"title": "sn-scriptsync: Open in Instance"
},
{
"command": "extension.refreshFromInstance",
"title": "sn-scriptsync: Retrieve current version from Instance"
},
{
"command": "extension.requestScopeArtifacts",
"title": "sn-scriptsync: Load/Refresh artifacts from scope"
},
{
"command": "extension.requestScopeArtifactsAll",
"title": "sn-scriptsync: Load/Refresh artifacts from scope (include empty)"
},
{
"command": "extension.requestInstanceMetaData",
"title": "sn-scriptsync: Load instance tablenames and properties for IntelliSense"
},
{
"command": "extension.bgScriptExecute",
"title": "sn-scriptsync: Execute Backgroundscipt (.js files in /background folder only)"
}
],
"keybindings": [
{
"command": "extension.requestInstanceMetaData",
"key": "ctrl+alt+j",
"mac": "ctrl+cmd+j"
},
{
"command": "extension.requestScopeArtifacts",
"key": "ctrl+alt+a",
"mac": "ctrl+cmd+a"
},
{
"command": "extension.requestScopeArtifactsAll",
"key": "ctrl+alt+e",
"mac": "ctrl+cmd+e"
},
{
"command": "extension.openInInstance",
"key": "ctrl+alt+i",
"mac": "ctrl+cmd+i"
},
{
"command": "extension.refreshFromInstance",
"key": "ctrl+alt+r",
"mac": "ctrl+cmd+r"
},
{
"command": "extension.bgScriptExecute",
"key": "ctrl+enter",
"mac": "cmd+enter",
"when": "editorLangId == javascript && resourceDirname =~ /background/"
}
],
"menus": {
"editor/context": [
{
"command": "extension.bgScriptGlobal",
"group": "sn-scriptsync",
"title": "Selection to Background Script (global)",
"when": "editorLangId == javascript"
},
{
"command": "extension.bgScriptScope",
"group": "sn-scriptsync",
"title": "Selection to Background Script (scope)",
"when": "editorLangId == javascript"
},
{
"command": "extension.openInInstance",
"group": "sn-scriptsync",
"title": "Open in Instance"
},
{
"command": "extension.refreshFromInstance",
"group": "sn-scriptsync",
"title": "Retrieve current version from Instance"
},
{
"command": "extension.requestScopeArtifacts",
"group": "sn-scriptsync",
"title": "Load/Refresh artifacts from scope"
},
{
"command": "extension.requestScopeArtifactsAll",
"group": "sn-scriptsync",
"title": "Load/Refresh artifacts from scope (include empty)"
},
{
"command": "extension.requestInstanceMetaData",
"group": "sn-scriptsync",
"title": "Load instance tablenames and properties for IntelliSense"
},
{
"command": "extension.bgScriptExecute",
"group": "sn-scriptsync",
"title": "Execute Background Script in Instance",
"when": "editorLangId == javascript && resourceDirname =~ /background/"
}
]
},
"configuration": {
"type": "object",
"title": "sn-scriptsync",
"properties": {
"sn-scriptsync.path": {
"type": "string",
"default": "scriptsync",
"description": "Scripts folder (Extension will auto activate when folder path ends with this name)"
},
"sn-scriptsync.refresh": {
"type": "integer",
"default": "60",
"description": "Update check (Not in use"
}
}
},
"viewsContainers": {
"activitybar": [
{
"id": "sn-scriptsync",
"title": "sn-scriptsync",
"icon": "img/icon24.svg"
}
]
},
"views": {
"sn-scriptsync": [
{
"id": "scopeTreeView",
"name": "Scoped App Files"
},
{
"id": "infoTreeView",
"name": "Info"
}
]
},
"viewsWelcome": [
{
"view": "scopeTreeView",
"contents": "Please load scope via right click context menu."
}
],
"snippets": [
{
"language": "xml",
"path": "./autocomplete/jelly.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^18.15.11",
"diff": "^5.1.0",
"tslint": "^5.20.1",
"typescript": "^5.0.4",
"@types/vscode": "^1.58.0"
},
"dependencies": {
"sass": "^1.61.0",
"ws": "^8.17.1"
},
"resolutions": {
"minimist": "1.2.6"
}
}