@storm-software/cspell 0.10.1 → 0.11.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.
package/dist/index.js ADDED
@@ -0,0 +1,508 @@
1
+ // cspell-all.json
2
+ var cspell_all_default = {
3
+ version: "0.2",
4
+ enabledLanguageIds: [
5
+ "c",
6
+ "cpp",
7
+ "csharp",
8
+ "dart",
9
+ "elixir",
10
+ "fsharp",
11
+ "golang",
12
+ "haskell",
13
+ "java",
14
+ "lua",
15
+ "php",
16
+ "powershell",
17
+ "python",
18
+ "r",
19
+ "ruby",
20
+ "scala",
21
+ "svelte",
22
+ "swift",
23
+ "vue"
24
+ ],
25
+ dictionaries: [
26
+ "ada",
27
+ "bash",
28
+ "companies",
29
+ "cpp",
30
+ "csharp",
31
+ "dart",
32
+ "django",
33
+ "dotnet",
34
+ "elixir",
35
+ "en-gb",
36
+ "fsharp",
37
+ "gaming-terms",
38
+ "golang",
39
+ "haskell",
40
+ "java",
41
+ "latex",
42
+ "lua",
43
+ "php",
44
+ "powershell",
45
+ "python",
46
+ "r",
47
+ "ruby",
48
+ "scala",
49
+ "svelte",
50
+ "swift",
51
+ "vue"
52
+ ],
53
+ languageSettings: [
54
+ {
55
+ languageId: "php",
56
+ dictionaries: ["storm", "php"]
57
+ },
58
+ {
59
+ languageId: "html,pug,jade,php,handlebars",
60
+ dictionaries: [
61
+ "storm",
62
+ "html",
63
+ "fonts",
64
+ "typescript",
65
+ "css",
66
+ "npm",
67
+ "html-symbol-entities"
68
+ ]
69
+ }
70
+ ],
71
+ import: [
72
+ "./cspell-recommended.json",
73
+ "@cspell/dict-ada/cspell-ext.json",
74
+ "@cspell/dict-bash/cspell-ext.json",
75
+ "@cspell/dict-companies/cspell-ext.json",
76
+ "@cspell/dict-cpp/cspell-ext.json",
77
+ "@cspell/dict-csharp/cspell-ext.json",
78
+ "@cspell/dict-dart/cspell-ext.json",
79
+ "@cspell/dict-django/cspell-ext.json",
80
+ "@cspell/dict-dotnet/cspell-ext.json",
81
+ "@cspell/dict-elixir/cspell-ext.json",
82
+ "@cspell/dict-en-gb/cspell-ext.json",
83
+ "@cspell/dict-fsharp/cspell-ext.json",
84
+ "@cspell/dict-gaming-terms/cspell-ext.json",
85
+ "@cspell/dict-golang/cspell-ext.json",
86
+ "@cspell/dict-haskell/cspell-ext.json",
87
+ "@cspell/dict-java/cspell-ext.json",
88
+ "@cspell/dict-latex/cspell-ext.json",
89
+ "@cspell/dict-lua/cspell-ext.json",
90
+ "@cspell/dict-php/cspell-ext.json",
91
+ "@cspell/dict-powershell/cspell-ext.json",
92
+ "@cspell/dict-python/cspell-ext.json",
93
+ "@cspell/dict-r/cspell-ext.json",
94
+ "@cspell/dict-ruby/cspell-ext.json",
95
+ "@cspell/dict-scala/cspell-ext.json",
96
+ "@cspell/dict-svelte/cspell-ext.json",
97
+ "@cspell/dict-swift/cspell-ext.json",
98
+ "@cspell/dict-vue/cspell-ext.json"
99
+ ]
100
+ };
101
+
102
+ // cspell-base.json
103
+ var cspell_base_default = {
104
+ version: "0.2",
105
+ description: "Base CSpell configuration used by Storm Software.",
106
+ language: "en",
107
+ enabled: true,
108
+ caseSensitive: false,
109
+ enabledLanguageIds: [
110
+ "typescript",
111
+ "javascript",
112
+ "typescriptreact",
113
+ "javascriptreact",
114
+ "mdx",
115
+ "rust",
116
+ "json",
117
+ "jsonc",
118
+ "yaml",
119
+ "css",
120
+ "html",
121
+ "markdown"
122
+ ],
123
+ maxNumberOfProblems: 1e4,
124
+ dictionaries: [
125
+ "storm",
126
+ "en_us",
127
+ "softwareTerms",
128
+ "filetypes",
129
+ "fonts",
130
+ "node",
131
+ "npm",
132
+ "sql",
133
+ "rust",
134
+ "fullstack",
135
+ "fonts",
136
+ "css",
137
+ "html",
138
+ "html-symbol-entities",
139
+ "markdown"
140
+ ],
141
+ flagWords: [],
142
+ useGitignore: true,
143
+ ignoreRegExpList: ["GHSA-[-\\w]+"],
144
+ overrides: [
145
+ {
146
+ filename: "**/CHANGELOG*.md",
147
+ ignoreRegExpList: ["@[-\\w]+"]
148
+ },
149
+ {
150
+ filename: "'**/*.md*",
151
+ ignoreRegExpList: ["\\]\\([^)]+\\)"]
152
+ }
153
+ ],
154
+ patterns: [
155
+ {
156
+ name: "HTML-symbol-entity",
157
+ description: "Matches on HTML symbols like `♣`",
158
+ pattern: "/&[a-z]+;/g"
159
+ },
160
+ {
161
+ name: "MARKDOWN-link-reference",
162
+ description: "Markdown reference link: `[This is a link][reference]`, matches `[reference]`",
163
+ pattern: "/(?<=])[[-w.`'\"*&;#@ ]+]/g"
164
+ },
165
+ {
166
+ name: "MARKDOWN-link-footer",
167
+ description: "Markdown referenced link: `[reference]: https://www.google.com`, matches the entire reference.",
168
+ pattern: "/[[-w.`'\"*&;#@ ]+]:( [^s]*)?/g"
169
+ },
170
+ {
171
+ name: "MARKDOWN-link",
172
+ description: "Markdown link: `[link text](link)`, matches `link`",
173
+ pattern: "/(?<=]()[^)s]+/g"
174
+ },
175
+ {
176
+ name: "MARKDOWN-anchor",
177
+ description: 'Markdown Anchors: `<a id="my_link"></a>`, matches `my_link`',
178
+ pattern: '/(?<=<as+id=")[^"s]+/g'
179
+ }
180
+ ],
181
+ languageSettings: [
182
+ {
183
+ languageId: "javascript,javascriptreact",
184
+ dictionaries: ["storm", "typescript", "node", "npm"]
185
+ },
186
+ {
187
+ languageId: "typescript,typescriptreact,mdx",
188
+ dictionaries: ["storm", "typescript", "node", "npm", "softwareTerms"]
189
+ },
190
+ {
191
+ languageId: "json,jsonc,yaml",
192
+ dictionaries: ["storm", "softwareTerms", "public-licenses"]
193
+ },
194
+ {
195
+ languageId: "json,jsonc",
196
+ dictionaries: ["storm", "node", "npm"]
197
+ },
198
+ {
199
+ languageId: "javascriptreact,typescriptreact,mdx",
200
+ dictionaries: ["storm", "html", "html-symbol-entities", "css", "fonts"]
201
+ },
202
+ {
203
+ languageId: "markdown,asciidoc",
204
+ dictionaries: ["storm", "npm", "html", "html-symbol-entities"]
205
+ },
206
+ {
207
+ languageId: "html",
208
+ dictionaries: [
209
+ "storm",
210
+ "html",
211
+ "fonts",
212
+ "typescript",
213
+ "css",
214
+ "npm",
215
+ "html-symbol-entities"
216
+ ]
217
+ },
218
+ {
219
+ languageId: "css,less,scss",
220
+ dictionaries: ["storm", "fonts", "css"]
221
+ },
222
+ {
223
+ languageId: "map",
224
+ enabled: false
225
+ },
226
+ {
227
+ languageId: "image",
228
+ enabled: false
229
+ },
230
+ {
231
+ languageId: "binary",
232
+ enabled: false
233
+ },
234
+ {
235
+ languageId: "markdown,html,mdx",
236
+ ignoreRegExpList: ["HTML-symbol-entity", "public-licenses"]
237
+ },
238
+ {
239
+ languageId: "html",
240
+ ignoreRegExpList: ["href"]
241
+ },
242
+ {
243
+ languageId: "markdown,mdx",
244
+ ignoreRegExpList: ["markdown"]
245
+ },
246
+ {
247
+ languageId: "markdown",
248
+ ignoreRegExpList: [
249
+ "MARKDOWN-link-reference",
250
+ "MARKDOWN-link-footer",
251
+ "MARKDOWN-link",
252
+ "MARKDOWN-anchor"
253
+ ]
254
+ }
255
+ ],
256
+ import: [
257
+ "./cspell-ext.json",
258
+ "@cspell/dict-css/cspell-ext.json",
259
+ "@cspell/dict-en_us/cspell-ext.json",
260
+ "@cspell/dict-filetypes/cspell-ext.json",
261
+ "@cspell/dict-fullstack/cspell-ext.json",
262
+ "@cspell/dict-html-symbol-entities/cspell-ext.json",
263
+ "@cspell/dict-html/cspell-ext.json",
264
+ "@cspell/dict-fonts/cspell-ext.json",
265
+ "@cspell/dict-lorem-ipsum/cspell-ext.json",
266
+ "@cspell/dict-markdown/cspell-ext.json",
267
+ "@cspell/dict-node/cspell-ext.json",
268
+ "@cspell/dict-npm/cspell-ext.json",
269
+ "@cspell/dict-rust/cspell-ext.json",
270
+ "@cspell/dict-sql/cspell-ext.json",
271
+ "@cspell/dict-software-terms/cspell-ext.json",
272
+ "@cspell/dict-typescript/cspell-ext.json"
273
+ ]
274
+ };
275
+
276
+ // cspell-ext.json
277
+ var cspell_ext_default = {
278
+ id: "storm",
279
+ name: "Storm Software",
280
+ description: "The Storm Software keywords Dictionary.",
281
+ readonly: true,
282
+ dictionaryDefinitions: [
283
+ {
284
+ name: "storm",
285
+ path: "./dict/storm.txt",
286
+ description: "Storm Software keywords."
287
+ }
288
+ ],
289
+ dictionaries: [],
290
+ languageSettings: [
291
+ {
292
+ languageId: [
293
+ "typescript",
294
+ "javascript",
295
+ "typescriptreact",
296
+ "javascriptreact",
297
+ "mdx",
298
+ "rust",
299
+ "json",
300
+ "jsonc",
301
+ "yaml",
302
+ "markdown"
303
+ ],
304
+ locale: "*",
305
+ includeRegExpList: [],
306
+ ignoreRegExpList: [],
307
+ patterns: [],
308
+ dictionaries: ["storm"],
309
+ dictionaryDefinitions: []
310
+ }
311
+ ]
312
+ };
313
+
314
+ // cspell-minimal.json
315
+ var cspell_minimal_default = {
316
+ version: "0.2",
317
+ description: "Base CSpell configuration used by Storm Software.",
318
+ language: "en",
319
+ caseSensitive: false,
320
+ dictionaries: [
321
+ "storm",
322
+ "en_us",
323
+ "softwareTerms",
324
+ "filetypes",
325
+ "node",
326
+ "npm",
327
+ "fullstack",
328
+ "markdown"
329
+ ],
330
+ flagWords: [],
331
+ useGitignore: true,
332
+ ignoreRegExpList: [
333
+ "GHSA-[-\\w]+",
334
+ "Markdown links",
335
+ "Markdown code blocks",
336
+ "Inline code blocks",
337
+ "Link contents",
338
+ "Snippet references",
339
+ "Snippet references 2",
340
+ "Multi-line code blocks",
341
+ "HTML Tags"
342
+ ],
343
+ ignorePaths: [],
344
+ overrides: [
345
+ {
346
+ filename: "**/CHANGELOG*.md",
347
+ ignoreRegExpList: ["@[-\\w]+"]
348
+ },
349
+ {
350
+ filename: "'**/*.md*",
351
+ ignoreRegExpList: ["\\]\\([^)]+\\)"]
352
+ }
353
+ ],
354
+ patterns: [
355
+ {
356
+ name: "Markdown links",
357
+ pattern: "\\((.*)\\)",
358
+ description: ""
359
+ },
360
+ {
361
+ name: "Markdown code blocks",
362
+ pattern: "/^(\\s*`{3,}).*[\\s\\S]*?^\\1/gmx",
363
+ description: "Taken from the cSpell example at https://cspell.org/configuration/patterns/#verbose-regular-expressions"
364
+ },
365
+ {
366
+ name: "Inline code blocks",
367
+ pattern: "\\`([^\\`\\r\\n]+?)\\`",
368
+ description: "https://stackoverflow.com/questions/41274241/how-to-capture-inline-markdown-code-but-not-a-markdown-code-fence-with-regex"
369
+ },
370
+ {
371
+ name: "Link contents",
372
+ pattern: "\\<a(.*)\\>",
373
+ description: ""
374
+ },
375
+ {
376
+ name: "Snippet references",
377
+ pattern: "-- snippet:(.*)",
378
+ description: ""
379
+ },
380
+ {
381
+ name: "Snippet references 2",
382
+ pattern: "\\<\\[sample:(.*)",
383
+ description: "another kind of snippet reference"
384
+ },
385
+ {
386
+ name: "Multi-line code blocks",
387
+ pattern: "/^\\s*```[\\s\\S]*?^\\s*```/gm"
388
+ },
389
+ {
390
+ name: "HTML Tags",
391
+ pattern: "<[^>]*>",
392
+ description: "Reference: https://stackoverflow.com/questions/11229831/regular-expression-to-remove-html-tags-from-a-string"
393
+ }
394
+ ],
395
+ import: [
396
+ "./cspell-ext.json",
397
+ "@cspell/dict-css/cspell-ext.json",
398
+ "@cspell/dict-en_us/cspell-ext.json",
399
+ "@cspell/dict-filetypes/cspell-ext.json",
400
+ "@cspell/dict-fullstack/cspell-ext.json",
401
+ "@cspell/dict-html-symbol-entities/cspell-ext.json",
402
+ "@cspell/dict-html/cspell-ext.json",
403
+ "@cspell/dict-fonts/cspell-ext.json",
404
+ "@cspell/dict-lorem-ipsum/cspell-ext.json",
405
+ "@cspell/dict-markdown/cspell-ext.json",
406
+ "@cspell/dict-node/cspell-ext.json",
407
+ "@cspell/dict-npm/cspell-ext.json",
408
+ "@cspell/dict-rust/cspell-ext.json",
409
+ "@cspell/dict-sql/cspell-ext.json",
410
+ "@cspell/dict-software-terms/cspell-ext.json",
411
+ "@cspell/dict-typescript/cspell-ext.json"
412
+ ]
413
+ };
414
+
415
+ // cspell-recommended.json
416
+ var cspell_recommended_default = {
417
+ version: "0.2",
418
+ enabledLanguageIds: [
419
+ "handlebars",
420
+ "dockerfile",
421
+ "terraform",
422
+ "tfvars",
423
+ "commit-msg"
424
+ ],
425
+ dictionaries: [
426
+ "storm",
427
+ "public-licenses",
428
+ "filetypes",
429
+ "cryptocurrencies",
430
+ "docker",
431
+ "git",
432
+ "k8s",
433
+ "aws",
434
+ "terraform"
435
+ ],
436
+ languageSettings: [
437
+ {
438
+ languageId: "typescript,typescriptreact,mdx",
439
+ dictionaries: [
440
+ "storm",
441
+ "typescript",
442
+ "node",
443
+ "npm",
444
+ "aws",
445
+ "softwareTerms"
446
+ ]
447
+ },
448
+ {
449
+ languageId: "json,jsonc,yaml",
450
+ dictionaries: [
451
+ "storm",
452
+ "aws",
453
+ "k8s",
454
+ "softwareTerms",
455
+ "public-licenses"
456
+ ]
457
+ },
458
+ {
459
+ languageId: "json,jsonc",
460
+ dictionaries: ["storm", "node", "npm", "aws"]
461
+ },
462
+ {
463
+ languageId: "dockerfile",
464
+ dictionaries: ["storm", "aws", "k8s", "docker"]
465
+ },
466
+ {
467
+ languageId: "json,jsonc",
468
+ dictionaries: ["storm", "node", "npm", "aws"]
469
+ }
470
+ ],
471
+ import: [
472
+ "./cspell-base.json",
473
+ "@cspell/dict-aws/cspell-ext.json",
474
+ "@cspell/dict-cryptocurrencies/cspell-ext.json",
475
+ "@cspell/dict-docker/cspell-ext.json",
476
+ "@cspell/dict-en_us/cspell-ext.json",
477
+ "@cspell/dict-en-common-misspellings/cspell-ext.json",
478
+ "@cspell/dict-filetypes/cspell-ext.json",
479
+ "@cspell/dict-fonts/cspell-ext.json",
480
+ "@cspell/dict-fullstack/cspell-ext.json",
481
+ "@cspell/dict-git/cspell-ext.json",
482
+ "@cspell/dict-html-symbol-entities/cspell-ext.json",
483
+ "@cspell/dict-html/cspell-ext.json",
484
+ "@cspell/dict-k8s/cspell-ext.json",
485
+ "@cspell/dict-lorem-ipsum/cspell-ext.json",
486
+ "@cspell/dict-markdown/cspell-ext.json",
487
+ "@cspell/dict-makefile/cspell-ext.json",
488
+ "@cspell/dict-node/cspell-ext.json",
489
+ "@cspell/dict-npm/cspell-ext.json",
490
+ "@cspell/dict-public-licenses/cspell-ext.json",
491
+ "@cspell/dict-rust/cspell-ext.json",
492
+ "@cspell/dict-sql/cspell-ext.json",
493
+ "@cspell/dict-software-terms/cspell-ext.json",
494
+ "@cspell/dict-typescript/cspell-ext.json"
495
+ ]
496
+ };
497
+
498
+ // index.ts
499
+ var configs = {
500
+ base: cspell_base_default,
501
+ minimal: cspell_minimal_default,
502
+ recommended: cspell_recommended_default,
503
+ ext: cspell_ext_default,
504
+ all: cspell_all_default
505
+ };
506
+ export {
507
+ configs
508
+ };
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@storm-software/cspell",
3
- "version": "0.10.1",
3
+ "version": "0.11.0",
4
+ "type": "module",
4
5
  "description": "A package containing CSpell keyword dictionaries and shared configurations for Storm Software.",
5
6
  "repository": {
6
7
  "type": "github",
@@ -41,19 +42,39 @@
41
42
  "private": false,
42
43
  "packageManager": "pnpm@9.15.2",
43
44
  "engines": { "node": ">=22.4.0", "pnpm": ">=9.15.2" },
45
+ "main": "./dist/index.cjs",
46
+ "module": "./dist/index.js",
44
47
  "exports": {
45
- ".": "./cspell-ext.json",
46
- "./cspell": "./cspell-ext.json",
48
+ "./package.json": "./package.json",
49
+ ".": {
50
+ "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
51
+ "require": {
52
+ "types": "./dist/index.d.cts",
53
+ "default": "./dist/index.cjs"
54
+ },
55
+ "default": { "types": "./dist/index.d.ts", "default": "./dist/index.cjs" }
56
+ },
57
+ "./index": {
58
+ "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" },
59
+ "require": {
60
+ "types": "./dist/index.d.cts",
61
+ "default": "./dist/index.cjs"
62
+ },
63
+ "default": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
64
+ },
65
+ "./cspell.json": "./cspell-ext.json",
47
66
  "./cspell-ext.json": "./cspell-ext.json",
48
67
  "./cspell-minimal.json": "./cspell-minimal.json",
49
68
  "./cspell-base.json": "./cspell-base.json",
50
69
  "./cspell-recommended.json": "./cspell-recommended.json",
51
70
  "./cspell-all.json": "./cspell-all.json",
71
+ "./ext": "./cspell-ext.json",
52
72
  "./minimal": "./cspell-minimal.json",
53
73
  "./base": "./cspell-base.json",
54
74
  "./recommended": "./cspell-recommended.json",
55
75
  "./all": "./cspell-all.json"
56
76
  },
77
+ "types": "./dist/index.d.ts",
57
78
  "files": [
58
79
  "*.d.ts",
59
80
  "*.js",
@@ -61,8 +82,9 @@
61
82
  "cspell-base.json",
62
83
  "cspell-ext.json",
63
84
  "cspell-minimal.json",
64
- "cspell-recommendedjson",
65
- "dict/storm.txt"
85
+ "cspell-recommended.json",
86
+ "dict/storm.txt",
87
+ "dist/**/*"
66
88
  ],
67
89
  "keywords": [
68
90
  "storm-software",
@@ -74,88 +96,9 @@
74
96
  "dictionary",
75
97
  "spelling"
76
98
  ],
77
- "peerDependencies": {
78
- "@cspell/dict-aws": "^4.0.2",
79
- "@cspell/dict-bash": "^4.1.3",
80
- "@cspell/dict-companies": "^3.1.2",
81
- "@cspell/dict-cpp": "^6.0.3",
82
- "@cspell/dict-cryptocurrencies": "^5.0.0",
83
- "@cspell/dict-csharp": "^4.0.2",
84
- "@cspell/dict-css": "^4.0.12",
85
- "@cspell/dict-docker": "^1.1.7",
86
- "@cspell/dict-dotnet": "^5.0.2",
87
- "@cspell/dict-en-common-misspellings": "^2.0.3",
88
- "@cspell/dict-en-gb": "^4.1.44",
89
- "@cspell/dict-en_us": "^4.3.23",
90
- "@cspell/dict-filetypes": "^3.0.4",
91
- "@cspell/dict-fonts": "^4.0.0",
92
- "@cspell/dict-fullstack": "^3.1.8",
93
- "@cspell/dict-git": "^3.0.0",
94
- "@cspell/dict-golang": "^6.0.9",
95
- "@cspell/dict-html": "^4.0.5",
96
- "@cspell/dict-html-symbol-entities": "^4.0.0",
97
- "@cspell/dict-java": "^5.0.7",
98
- "@cspell/dict-k8s": "^1.0.5",
99
- "@cspell/dict-lorem-ipsum": "^4.0.0",
100
- "@cspell/dict-makefile": "^1.0.0",
101
- "@cspell/dict-node": "^5.0.1",
102
- "@cspell/dict-npm": "^5.0.16",
103
- "@cspell/dict-php": "^4.0.8",
104
- "@cspell/dict-powershell": "^5.0.4",
105
- "@cspell/dict-public-licenses": "^2.0.7",
106
- "@cspell/dict-python": "^4.1.11",
107
- "@cspell/dict-r": "^2.0.1",
108
- "@cspell/dict-ruby": "^5.0.2",
109
- "@cspell/dict-rust": "^4.0.4",
110
- "@cspell/dict-software-terms": "^4.2.2",
111
- "@cspell/dict-sql": "^2.1.3",
112
- "@cspell/dict-svelte": "^1.0.2",
113
- "@cspell/dict-swift": "^2.0.1",
114
- "@cspell/dict-typescript": "^3.1.5",
115
- "@cspell/dict-vue": "^3.0.0"
116
- },
117
- "peerDependenciesMeta": {
118
- "@cspell/dict-aws": { "optional": true },
119
- "@cspell/dict-bash": { "optional": true },
120
- "@cspell/dict-companies": { "optional": true },
121
- "@cspell/dict-cpp": { "optional": true },
122
- "@cspell/dict-cryptocurrencies": { "optional": true },
123
- "@cspell/dict-csharp": { "optional": true },
124
- "@cspell/dict-css": { "optional": true },
125
- "@cspell/dict-docker": { "optional": true },
126
- "@cspell/dict-dotnet": { "optional": true },
127
- "@cspell/dict-en-common-misspellings": { "optional": true },
128
- "@cspell/dict-en-gb": { "optional": true },
129
- "@cspell/dict-en_us": { "optional": true },
130
- "@cspell/dict-filetypes": { "optional": true },
131
- "@cspell/dict-fonts": { "optional": true },
132
- "@cspell/dict-fullstack": { "optional": true },
133
- "@cspell/dict-git": { "optional": true },
134
- "@cspell/dict-golang": { "optional": true },
135
- "@cspell/dict-html": { "optional": true },
136
- "@cspell/dict-html-symbol-entities": { "optional": true },
137
- "@cspell/dict-java": { "optional": true },
138
- "@cspell/dict-k8s": { "optional": true },
139
- "@cspell/dict-lorem-ipsum": { "optional": true },
140
- "@cspell/dict-makefile": { "optional": true },
141
- "@cspell/dict-node": { "optional": true },
142
- "@cspell/dict-npm": { "optional": true },
143
- "@cspell/dict-php": { "optional": true },
144
- "@cspell/dict-powershell": { "optional": true },
145
- "@cspell/dict-public-licenses": { "optional": true },
146
- "@cspell/dict-python": { "optional": true },
147
- "@cspell/dict-r": { "optional": true },
148
- "@cspell/dict-ruby": { "optional": true },
149
- "@cspell/dict-rust": { "optional": true },
150
- "@cspell/dict-software-terms": { "optional": true },
151
- "@cspell/dict-sql": { "optional": true },
152
- "@cspell/dict-svelte": { "optional": true },
153
- "@cspell/dict-swift": { "optional": true },
154
- "@cspell/dict-typescript": { "optional": true },
155
- "@cspell/dict-vue": { "optional": true }
156
- },
157
- "dependencies": { "cspell": "8.8.4" },
158
- "devDependencies": {
99
+ "peerDependencies": { "cspell": "8.8.4" },
100
+ "peerDependenciesMeta": { "cspell": { "optional": false } },
101
+ "dependencies": {
159
102
  "@cspell/cspell-tools": "^8.17.1",
160
103
  "@cspell/dict-aws": "^4.0.2",
161
104
  "@cspell/dict-bash": "^4.1.3",
@@ -196,5 +139,6 @@
196
139
  "@cspell/dict-typescript": "^3.1.5",
197
140
  "@cspell/dict-vue": "^3.0.0"
198
141
  },
142
+ "devDependencies": { "cspell": "8.8.4", "tsup": "8.3.5" },
199
143
  "publishConfig": { "access": "public" }
200
144
  }