@cspell/cspell-bundled-dicts 9.6.4 → 9.8.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.
@@ -0,0 +1,198 @@
1
+ //#endregion
2
+ //#region src/cspell-bundled.js
3
+ const cspellBundled = {
4
+ version: "0.2",
5
+ name: "cspell default settings .js",
6
+ id: "cspell-default-js",
7
+ readonly: true,
8
+ language: "en",
9
+ description: "Default cspell configuration.",
10
+ flagWords: [],
11
+ maxNumberOfProblems: 1e4,
12
+ ignorePaths: [],
13
+ allowCompoundWords: false,
14
+ dictionaryDefinitions: [],
15
+ dictionaries: [
16
+ "companies",
17
+ "softwareTerms",
18
+ "public-licenses",
19
+ "filetypes"
20
+ ],
21
+ patterns: [
22
+ {
23
+ name: "HTML-symbol-entity",
24
+ description: "Matches on HTML symbols like `♣`",
25
+ pattern: /&[a-z]+;/g
26
+ },
27
+ {
28
+ name: "MARKDOWN-link-reference",
29
+ description: "Markdown reference link: `[This is a link][reference]`, matches `[reference]`",
30
+ pattern: /(?<=\])\[[-\w.`'"*&;#@ ]+\]/g
31
+ },
32
+ {
33
+ name: "MARKDOWN-link-footer",
34
+ description: "Markdown referenced link: `[reference]: https://www.google.com`, matches the entire reference.",
35
+ pattern: /\[[-\w.`'"*&;#@ ]+\]:( [^\s]*)?/g
36
+ },
37
+ {
38
+ name: "MARKDOWN-link",
39
+ description: "Markdown link: `[link text](link)`, matches `link`",
40
+ pattern: /(?<=\]\()[^)\s]+/g
41
+ },
42
+ {
43
+ name: "MARKDOWN-anchor",
44
+ description: "Markdown Anchors: `<a id=\"my_link\"></a>`, matches `my_link`",
45
+ pattern: /(?<=<a\s+id=")[^"\s]+/g
46
+ }
47
+ ],
48
+ languageSettings: [
49
+ {
50
+ languageId: "javascript,javascriptreact",
51
+ dictionaries: [
52
+ "typescript",
53
+ "node",
54
+ "npm"
55
+ ]
56
+ },
57
+ {
58
+ languageId: "typescript,typescriptreact,mdx",
59
+ dictionaries: [
60
+ "typescript",
61
+ "node",
62
+ "npm"
63
+ ]
64
+ },
65
+ {
66
+ languageId: "javascriptreact,typescriptreact,mdx",
67
+ dictionaries: [
68
+ "html",
69
+ "html-symbol-entities",
70
+ "css",
71
+ "fonts"
72
+ ]
73
+ },
74
+ {
75
+ languageId: "markdown,asciidoc",
76
+ dictionaries: [
77
+ "npm",
78
+ "html",
79
+ "html-symbol-entities"
80
+ ]
81
+ },
82
+ {
83
+ languageId: "html,pug,jade,php,handlebars",
84
+ dictionaries: [
85
+ "html",
86
+ "fonts",
87
+ "typescript",
88
+ "css",
89
+ "npm",
90
+ "html-symbol-entities"
91
+ ]
92
+ },
93
+ {
94
+ languageId: "json,jsonc",
95
+ dictionaries: ["node", "npm"]
96
+ },
97
+ {
98
+ languageId: "php",
99
+ dictionaries: ["php"]
100
+ },
101
+ {
102
+ languageId: "css,less,scss",
103
+ dictionaries: ["fonts", "css"]
104
+ },
105
+ {
106
+ languageId: "map",
107
+ enabled: false
108
+ },
109
+ {
110
+ languageId: "image",
111
+ enabled: false
112
+ },
113
+ {
114
+ languageId: "binary",
115
+ enabled: false
116
+ },
117
+ {
118
+ languageId: "markdown,html,mdx",
119
+ ignoreRegExpList: ["HTML-symbol-entity"]
120
+ },
121
+ {
122
+ languageId: "html",
123
+ ignoreRegExpList: ["href"]
124
+ },
125
+ {
126
+ languageId: "markdown",
127
+ ignoreRegExpList: [
128
+ "MARKDOWN-link-reference",
129
+ "MARKDOWN-link-footer",
130
+ "MARKDOWN-link",
131
+ "MARKDOWN-anchor"
132
+ ]
133
+ }
134
+ ],
135
+ import: [
136
+ "@cspell/dict-ada/cspell-ext.json",
137
+ "@cspell/dict-al/cspell-ext.json",
138
+ "@cspell/dict-aws/cspell-ext.json",
139
+ "@cspell/dict-bash/cspell-ext.json",
140
+ "@cspell/dict-companies/cspell-ext.json",
141
+ "@cspell/dict-cpp/cspell-ext.json",
142
+ "@cspell/dict-cryptocurrencies/cspell-ext.json",
143
+ "@cspell/dict-csharp/cspell-ext.json",
144
+ "@cspell/dict-css/cspell-ext.json",
145
+ "@cspell/dict-dart/cspell-ext.json",
146
+ "@cspell/dict-data-science/cspell-ext.json",
147
+ "@cspell/dict-django/cspell-ext.json",
148
+ "@cspell/dict-docker/cspell-ext.json",
149
+ "@cspell/dict-dotnet/cspell-ext.json",
150
+ "@cspell/dict-elixir/cspell-ext.json",
151
+ "@cspell/dict-en_us/cspell-ext.json",
152
+ "@cspell/dict-en-common-misspellings/cspell-ext.json",
153
+ "@cspell/dict-en-gb-mit/cspell-ext.json",
154
+ "@cspell/dict-filetypes/cspell-ext.json",
155
+ "@cspell/dict-flutter/cspell-ext.json",
156
+ "@cspell/dict-fonts/cspell-ext.json",
157
+ "@cspell/dict-fsharp/cspell-ext.json",
158
+ "@cspell/dict-fullstack/cspell-ext.json",
159
+ "@cspell/dict-gaming-terms/cspell-ext.json",
160
+ "@cspell/dict-git/cspell-ext.json",
161
+ "@cspell/dict-golang/cspell-ext.json",
162
+ "@cspell/dict-google/cspell-ext.json",
163
+ "@cspell/dict-haskell/cspell-ext.json",
164
+ "@cspell/dict-html-symbol-entities/cspell-ext.json",
165
+ "@cspell/dict-html/cspell-ext.json",
166
+ "@cspell/dict-java/cspell-ext.json",
167
+ "@cspell/dict-julia/cspell-ext.json",
168
+ "@cspell/dict-k8s/cspell-ext.json",
169
+ "@cspell/dict-kotlin/cspell-ext.json",
170
+ "@cspell/dict-latex/cspell-ext.json",
171
+ "@cspell/dict-lorem-ipsum/cspell-ext.json",
172
+ "@cspell/dict-lua/cspell-ext.json",
173
+ "@cspell/dict-makefile/cspell-ext.json",
174
+ "@cspell/dict-markdown/cspell-ext.json",
175
+ "@cspell/dict-monkeyc/cspell-ext.json",
176
+ "@cspell/dict-node/cspell-ext.json",
177
+ "@cspell/dict-npm/cspell-ext.json",
178
+ "@cspell/dict-php/cspell-ext.json",
179
+ "@cspell/dict-powershell/cspell-ext.json",
180
+ "@cspell/dict-public-licenses/cspell-ext.json",
181
+ "@cspell/dict-python/cspell-ext.json",
182
+ "@cspell/dict-r/cspell-ext.json",
183
+ "@cspell/dict-ruby/cspell-ext.json",
184
+ "@cspell/dict-rust/cspell-ext.json",
185
+ "@cspell/dict-shell/cspell-ext.json",
186
+ "@cspell/dict-scala/cspell-ext.json",
187
+ "@cspell/dict-sql/cspell-ext.json",
188
+ "@cspell/dict-software-terms/cspell-ext.json",
189
+ "@cspell/dict-svelte/cspell-ext.json",
190
+ "@cspell/dict-swift/cspell-ext.json",
191
+ "@cspell/dict-terraform/cspell-ext.json",
192
+ "@cspell/dict-typescript/cspell-ext.json",
193
+ "@cspell/dict-vue/cspell-ext.json",
194
+ "@cspell/dict-zig/cspell-ext.json"
195
+ ]
196
+ };
197
+ //#endregion
198
+ export { cspellBundled as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cspell/cspell-bundled-dicts",
3
- "version": "9.6.4",
3
+ "version": "9.8.0",
4
4
  "description": "Dictionaries bundled with cspell",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -12,17 +12,16 @@
12
12
  "files": [
13
13
  "cspell-default.json",
14
14
  "cspell-default.config.js",
15
- "cspell-compatibility.json",
16
- "compatibility-words.txt.gz"
15
+ "dist/cspell-bundled.mjs"
17
16
  ],
18
17
  "exports": {
19
18
  ".": "./cspell-default.config.js",
19
+ "./cspell-bundled.js": "./dist/cspell-bundled.mjs",
20
20
  "./cspell-default.config.js": "./cspell-default.config.js",
21
21
  "./cspell-default.json": "./cspell-default.json"
22
22
  },
23
23
  "scripts": {
24
- "build": "tsc -p .",
25
- "build-dict": "cspell-tools-cli compile compatibility-words.txt",
24
+ "build": "tsc -p . && tsdown",
26
25
  "clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
27
26
  "clean-build": "pnpm run clean && pnpm run build",
28
27
  "watch": "pnpm run build --watch",
@@ -51,54 +50,54 @@
51
50
  "@cspell/dict-al": "^1.1.1",
52
51
  "@cspell/dict-aws": "^4.0.17",
53
52
  "@cspell/dict-bash": "^4.2.2",
54
- "@cspell/dict-companies": "^3.2.10",
53
+ "@cspell/dict-companies": "^3.2.11",
55
54
  "@cspell/dict-cpp": "^7.0.2",
56
55
  "@cspell/dict-cryptocurrencies": "^5.0.5",
57
56
  "@cspell/dict-csharp": "^4.0.8",
58
- "@cspell/dict-css": "^4.0.19",
57
+ "@cspell/dict-css": "^4.1.1",
59
58
  "@cspell/dict-dart": "^2.3.2",
60
59
  "@cspell/dict-data-science": "^2.0.13",
61
60
  "@cspell/dict-django": "^4.1.6",
62
61
  "@cspell/dict-docker": "^1.1.17",
63
- "@cspell/dict-dotnet": "^5.0.11",
62
+ "@cspell/dict-dotnet": "^5.0.13",
64
63
  "@cspell/dict-elixir": "^4.0.8",
65
64
  "@cspell/dict-en-common-misspellings": "^2.1.12",
66
- "@cspell/dict-en-gb-mit": "^3.1.17",
67
- "@cspell/dict-en_us": "^4.4.28",
68
- "@cspell/dict-filetypes": "^3.0.15",
65
+ "@cspell/dict-en-gb-mit": "^3.1.22",
66
+ "@cspell/dict-en_us": "^4.4.33",
67
+ "@cspell/dict-filetypes": "^3.0.18",
69
68
  "@cspell/dict-flutter": "^1.1.1",
70
- "@cspell/dict-fonts": "^4.0.5",
69
+ "@cspell/dict-fonts": "^4.0.6",
71
70
  "@cspell/dict-fsharp": "^1.1.1",
72
- "@cspell/dict-fullstack": "^3.2.8",
71
+ "@cspell/dict-fullstack": "^3.2.9",
73
72
  "@cspell/dict-gaming-terms": "^1.1.2",
74
73
  "@cspell/dict-git": "^3.1.0",
75
74
  "@cspell/dict-golang": "^6.0.26",
76
75
  "@cspell/dict-google": "^1.0.9",
77
76
  "@cspell/dict-haskell": "^4.0.6",
78
- "@cspell/dict-html": "^4.0.14",
77
+ "@cspell/dict-html": "^4.0.15",
79
78
  "@cspell/dict-html-symbol-entities": "^4.0.5",
80
79
  "@cspell/dict-java": "^5.0.12",
81
80
  "@cspell/dict-julia": "^1.1.1",
82
81
  "@cspell/dict-k8s": "^1.0.12",
83
82
  "@cspell/dict-kotlin": "^1.1.1",
84
- "@cspell/dict-latex": "^5.0.0",
83
+ "@cspell/dict-latex": "^5.1.0",
85
84
  "@cspell/dict-lorem-ipsum": "^4.0.5",
86
85
  "@cspell/dict-lua": "^4.0.8",
87
86
  "@cspell/dict-makefile": "^1.0.5",
88
- "@cspell/dict-markdown": "^2.0.14",
87
+ "@cspell/dict-markdown": "^2.0.16",
89
88
  "@cspell/dict-monkeyc": "^1.0.12",
90
89
  "@cspell/dict-node": "^5.0.9",
91
- "@cspell/dict-npm": "^5.2.32",
90
+ "@cspell/dict-npm": "^5.2.38",
92
91
  "@cspell/dict-php": "^4.1.1",
93
92
  "@cspell/dict-powershell": "^5.0.15",
94
- "@cspell/dict-public-licenses": "^2.0.15",
95
- "@cspell/dict-python": "^4.2.25",
93
+ "@cspell/dict-public-licenses": "^2.0.16",
94
+ "@cspell/dict-python": "^4.2.26",
96
95
  "@cspell/dict-r": "^2.1.1",
97
- "@cspell/dict-ruby": "^5.1.0",
96
+ "@cspell/dict-ruby": "^5.1.1",
98
97
  "@cspell/dict-rust": "^4.1.2",
99
98
  "@cspell/dict-scala": "^5.0.9",
100
99
  "@cspell/dict-shell": "^1.1.2",
101
- "@cspell/dict-software-terms": "^5.1.20",
100
+ "@cspell/dict-software-terms": "^5.2.2",
102
101
  "@cspell/dict-sql": "^2.2.1",
103
102
  "@cspell/dict-svelte": "^1.0.7",
104
103
  "@cspell/dict-swift": "^2.0.6",
@@ -111,8 +110,9 @@
111
110
  "node": ">=20"
112
111
  },
113
112
  "devDependencies": {
114
- "@cspell/cspell-tools": "9.6.4",
115
- "@cspell/cspell-types": "9.6.4"
113
+ "@cspell/cspell-tools": "9.8.0",
114
+ "@cspell/cspell-types": "9.8.0",
115
+ "@cspell/dictionary-bundler-plugin": ""
116
116
  },
117
- "gitHead": "e126c7f5708d4258ada35ba1d29d18952d7f0886"
117
+ "gitHead": "c822013ce676dffb5fa5544567c25a3ae666718f"
118
118
  }