norn-cli 1.7.0 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/cli.js +83717 -438
  2. package/package.json +35 -1
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "norn-cli",
3
3
  "displayName": "Norn - REST Client",
4
4
  "description": "A powerful REST client for making HTTP requests with sequences, variables, scripts, and cookie support",
5
- "version": "1.7.0",
5
+ "version": "1.9.0",
6
6
  "publisher": "Norn-PeterKrustanov",
7
7
  "author": {
8
8
  "name": "Peter Krastanov"
@@ -40,6 +40,7 @@
40
40
  ],
41
41
  "activationEvents": [
42
42
  "onLanguage:norn",
43
+ "onLanguage:nornsql",
43
44
  "onLanguage:nornapi",
44
45
  "onLanguage:nornenv",
45
46
  "onChatParticipant:norn.chat",
@@ -181,6 +182,21 @@
181
182
  },
182
183
  "configuration": "./language-configuration.json"
183
184
  },
185
+ {
186
+ "id": "nornsql",
187
+ "aliases": [
188
+ "Norn SQL",
189
+ "nornsql"
190
+ ],
191
+ "extensions": [
192
+ ".nornsql"
193
+ ],
194
+ "icon": {
195
+ "light": "./images/nornsql-icon.svg",
196
+ "dark": "./images/nornsql-icon.svg"
197
+ },
198
+ "configuration": "./language-configuration.json"
199
+ },
184
200
  {
185
201
  "id": "nornapi",
186
202
  "aliases": [
@@ -208,6 +224,14 @@
208
224
  "scopeName": "source.nornenv",
209
225
  "path": "./syntaxes/nornenv.tmLanguage.json"
210
226
  },
227
+ {
228
+ "language": "nornsql",
229
+ "scopeName": "source.nornsql",
230
+ "path": "./syntaxes/nornsql.tmLanguage.json",
231
+ "embeddedLanguages": {
232
+ "meta.embedded.block.sql": "sql"
233
+ }
234
+ },
211
235
  {
212
236
  "language": "nornapi",
213
237
  "scopeName": "source.nornapi",
@@ -338,6 +362,12 @@
338
362
  "settings": {
339
363
  "foreground": "#85EA2C"
340
364
  }
365
+ },
366
+ {
367
+ "scope": "support.type.connection.nornenv",
368
+ "settings": {
369
+ "foreground": "#d7ba7d"
370
+ }
341
371
  }
342
372
  ]
343
373
  }
@@ -364,7 +394,9 @@
364
394
  },
365
395
  "devDependencies": {
366
396
  "@types/mocha": "^10.0.10",
397
+ "@types/mssql": "^9.1.9",
367
398
  "@types/node": "22.x",
399
+ "@types/pg": "^8.18.0",
368
400
  "@types/tough-cookie": "^4.0.5",
369
401
  "@types/vscode": "^1.108.1",
370
402
  "@vscode/test-cli": "^0.0.12",
@@ -379,6 +411,8 @@
379
411
  "ajv": "^8.17.1",
380
412
  "axios": "^1.13.2",
381
413
  "chalk": "^5.4.1",
414
+ "mssql": "^12.2.0",
415
+ "pg": "^8.20.0",
382
416
  "tough-cookie": "^6.0.0"
383
417
  },
384
418
  "bin": {