@storm-software/cspell 0.45.91 → 0.46.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/cspell-all.json +1 -1
- package/cspell-minimal.json +28 -71
- package/cspell-recommended.json +122 -53
- package/dict/storm.txt +6 -0
- package/dist/index.cjs +227 -258
- package/dist/index.js +227 -258
- package/package.json +29 -29
- package/cspell-base.json +0 -172
package/package.json
CHANGED
|
@@ -1,15 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/cspell",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"
|
|
3
|
+
"version": "0.46.0",
|
|
4
|
+
"private": false,
|
|
5
5
|
"description": "A package containing CSpell keyword dictionaries and shared configurations for Storm Software.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"storm-software",
|
|
8
|
+
"monorepo",
|
|
9
|
+
"storm-ops",
|
|
10
|
+
"sullivanpj",
|
|
11
|
+
"cspell",
|
|
12
|
+
"cspell-ext",
|
|
13
|
+
"dictionary",
|
|
14
|
+
"spelling"
|
|
15
|
+
],
|
|
16
|
+
"homepage": "https://stormsoftware.com",
|
|
17
|
+
"bugs": "https://github.com/storm-software/storm-ops/issues",
|
|
6
18
|
"repository": {
|
|
7
19
|
"type": "github",
|
|
8
20
|
"url": "https://github.com/storm-software/storm-ops",
|
|
9
21
|
"directory": "packages/cspell"
|
|
10
22
|
},
|
|
11
|
-
"
|
|
12
|
-
|
|
23
|
+
"funding": {
|
|
24
|
+
"type": "github",
|
|
25
|
+
"url": "https://github.com/sponsors/storm-software"
|
|
26
|
+
},
|
|
27
|
+
"license": "Apache-2.0",
|
|
13
28
|
"author": {
|
|
14
29
|
"name": "Storm Software",
|
|
15
30
|
"email": "contact@stormsoftware.com",
|
|
@@ -34,16 +49,7 @@
|
|
|
34
49
|
"url": "https://stormsoftware.com"
|
|
35
50
|
}
|
|
36
51
|
],
|
|
37
|
-
"
|
|
38
|
-
"type": "github",
|
|
39
|
-
"url": "https://github.com/sponsors/storm-software"
|
|
40
|
-
},
|
|
41
|
-
"license": "Apache-2.0",
|
|
42
|
-
"private": false,
|
|
43
|
-
"packageManager": "pnpm@10.3.0",
|
|
44
|
-
"engines": { "node": ">=22.4.0", "pnpm": ">=10.3.0" },
|
|
45
|
-
"main": "./dist/index.cjs",
|
|
46
|
-
"module": "./dist/index.js",
|
|
52
|
+
"type": "module",
|
|
47
53
|
"exports": {
|
|
48
54
|
"./package.json": "./package.json",
|
|
49
55
|
".": {
|
|
@@ -65,15 +71,17 @@
|
|
|
65
71
|
"./cspell.json": "./cspell-ext.json",
|
|
66
72
|
"./cspell-ext.json": "./cspell-ext.json",
|
|
67
73
|
"./cspell-minimal.json": "./cspell-minimal.json",
|
|
68
|
-
"./cspell-base.json": "./cspell-base.json",
|
|
69
74
|
"./cspell-recommended.json": "./cspell-recommended.json",
|
|
75
|
+
"./cspell-extra.json": "./cspell-extra.json",
|
|
70
76
|
"./cspell-all.json": "./cspell-all.json",
|
|
71
77
|
"./ext": "./cspell-ext.json",
|
|
72
78
|
"./minimal": "./cspell-minimal.json",
|
|
73
|
-
"./base": "./cspell-base.json",
|
|
74
79
|
"./recommended": "./cspell-recommended.json",
|
|
80
|
+
"./extra": "./cspell-extra.json",
|
|
75
81
|
"./all": "./cspell-all.json"
|
|
76
82
|
},
|
|
83
|
+
"main": "./dist/index.cjs",
|
|
84
|
+
"module": "./dist/index.js",
|
|
77
85
|
"types": "./dist/index.d.ts",
|
|
78
86
|
"files": [
|
|
79
87
|
"*.d.ts",
|
|
@@ -86,18 +94,6 @@
|
|
|
86
94
|
"dict/storm.txt",
|
|
87
95
|
"dist/**/*"
|
|
88
96
|
],
|
|
89
|
-
"keywords": [
|
|
90
|
-
"storm-software",
|
|
91
|
-
"monorepo",
|
|
92
|
-
"storm-ops",
|
|
93
|
-
"sullivanpj",
|
|
94
|
-
"cspell",
|
|
95
|
-
"cspell-ext",
|
|
96
|
-
"dictionary",
|
|
97
|
-
"spelling"
|
|
98
|
-
],
|
|
99
|
-
"peerDependencies": { "cspell": "^8.19.4" },
|
|
100
|
-
"peerDependenciesMeta": { "cspell": { "optional": false } },
|
|
101
97
|
"dependencies": { "cspell": "^8.19.4" },
|
|
102
98
|
"devDependencies": {
|
|
103
99
|
"@cspell/cspell-pipe": "8.17.3",
|
|
@@ -143,6 +139,10 @@
|
|
|
143
139
|
"@cspell/dict-vue": "^3.0.5",
|
|
144
140
|
"tsup": "8.4.0"
|
|
145
141
|
},
|
|
142
|
+
"peerDependencies": { "cspell": "^8.19.4" },
|
|
143
|
+
"peerDependenciesMeta": { "cspell": { "optional": false } },
|
|
144
|
+
"packageManager": "pnpm@10.3.0",
|
|
145
|
+
"engines": { "node": ">=22.4.0", "pnpm": ">=10.3.0" },
|
|
146
146
|
"publishConfig": { "access": "public" },
|
|
147
|
-
"gitHead": "
|
|
147
|
+
"gitHead": "03cfadf0bfba0ea0d2084a11e8d813f9aad467f2"
|
|
148
148
|
}
|
package/cspell-base.json
DELETED
|
@@ -1,172 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": "0.2",
|
|
3
|
-
"description": "Base CSpell configuration used by Storm Software.",
|
|
4
|
-
"language": "en",
|
|
5
|
-
"enabled": true,
|
|
6
|
-
"caseSensitive": false,
|
|
7
|
-
"enabledLanguageIds": [
|
|
8
|
-
"typescript",
|
|
9
|
-
"javascript",
|
|
10
|
-
"typescriptreact",
|
|
11
|
-
"javascriptreact",
|
|
12
|
-
"mdx",
|
|
13
|
-
"rust",
|
|
14
|
-
"json",
|
|
15
|
-
"jsonc",
|
|
16
|
-
"yaml",
|
|
17
|
-
"css",
|
|
18
|
-
"html",
|
|
19
|
-
"markdown"
|
|
20
|
-
],
|
|
21
|
-
"maxNumberOfProblems": 10000,
|
|
22
|
-
"dictionaries": [
|
|
23
|
-
"storm",
|
|
24
|
-
"en_us",
|
|
25
|
-
"softwareTerms",
|
|
26
|
-
"filetypes",
|
|
27
|
-
"fonts",
|
|
28
|
-
"node",
|
|
29
|
-
"npm",
|
|
30
|
-
"sql",
|
|
31
|
-
"rust",
|
|
32
|
-
"fullstack",
|
|
33
|
-
"fonts",
|
|
34
|
-
"css",
|
|
35
|
-
"html",
|
|
36
|
-
"html-symbol-entities",
|
|
37
|
-
"markdown"
|
|
38
|
-
],
|
|
39
|
-
"flagWords": [],
|
|
40
|
-
"useGitignore": true,
|
|
41
|
-
"ignoreRegExpList": ["GHSA-[-\\w]+"],
|
|
42
|
-
"overrides": [
|
|
43
|
-
{
|
|
44
|
-
"filename": "**/CHANGELOG*.md",
|
|
45
|
-
"ignoreRegExpList": ["@[-\\w]+"]
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"filename": "'**/*.md*",
|
|
49
|
-
"ignoreRegExpList": ["\\]\\([^)]+\\)"]
|
|
50
|
-
}
|
|
51
|
-
],
|
|
52
|
-
"patterns": [
|
|
53
|
-
{
|
|
54
|
-
"name": "HTML-symbol-entity",
|
|
55
|
-
"description": "Matches on HTML symbols like `♣`",
|
|
56
|
-
"pattern": "/&[a-z]+;/g"
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
"name": "MARKDOWN-link-reference",
|
|
60
|
-
"description": "Markdown reference link: `[This is a link][reference]`, matches `[reference]`",
|
|
61
|
-
"pattern": "/(?<=])[[-w.`'\"*&;#@ ]+]/g"
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"name": "MARKDOWN-link-footer",
|
|
65
|
-
"description": "Markdown referenced link: `[reference]: https://www.google.com`, matches the entire reference.",
|
|
66
|
-
"pattern": "/[[-w.`'\"*&;#@ ]+]:( [^s]*)?/g"
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"name": "MARKDOWN-link",
|
|
70
|
-
"description": "Markdown link: `[link text](link)`, matches `link`",
|
|
71
|
-
"pattern": "/(?<=]()[^)s]+/g"
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"name": "MARKDOWN-anchor",
|
|
75
|
-
"description": "Markdown Anchors: `<a id=\"my_link\"></a>`, matches `my_link`",
|
|
76
|
-
"pattern": "/(?<=<as+id=\")[^\"s]+/g"
|
|
77
|
-
}
|
|
78
|
-
],
|
|
79
|
-
"languageSettings": [
|
|
80
|
-
{
|
|
81
|
-
"languageId": "javascript,javascriptreact",
|
|
82
|
-
"dictionaries": ["storm", "typescript", "node", "npm"]
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
"languageId": "typescript,typescriptreact,mdx",
|
|
86
|
-
"dictionaries": ["storm", "typescript", "node", "npm", "softwareTerms"]
|
|
87
|
-
},
|
|
88
|
-
{
|
|
89
|
-
"languageId": "json,jsonc,yaml",
|
|
90
|
-
"dictionaries": ["storm", "softwareTerms", "public-licenses"]
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"languageId": "json,jsonc",
|
|
94
|
-
"dictionaries": ["storm", "node", "npm"]
|
|
95
|
-
},
|
|
96
|
-
{
|
|
97
|
-
"languageId": "javascriptreact,typescriptreact,mdx",
|
|
98
|
-
"dictionaries": ["storm", "html", "html-symbol-entities", "css", "fonts"]
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
"languageId": "markdown,asciidoc",
|
|
102
|
-
"dictionaries": ["storm", "npm", "html", "html-symbol-entities"]
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"languageId": "html",
|
|
106
|
-
"dictionaries": [
|
|
107
|
-
"storm",
|
|
108
|
-
"html",
|
|
109
|
-
"fonts",
|
|
110
|
-
"typescript",
|
|
111
|
-
"css",
|
|
112
|
-
"npm",
|
|
113
|
-
"html-symbol-entities"
|
|
114
|
-
]
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
"languageId": "css,less,scss",
|
|
118
|
-
"dictionaries": ["storm", "fonts", "css"]
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
"languageId": "map",
|
|
122
|
-
"enabled": false
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
"languageId": "image",
|
|
126
|
-
"enabled": false
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
"languageId": "binary",
|
|
130
|
-
"enabled": false
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
"languageId": "markdown,html,mdx",
|
|
134
|
-
"ignoreRegExpList": ["HTML-symbol-entity", "public-licenses"]
|
|
135
|
-
},
|
|
136
|
-
{
|
|
137
|
-
"languageId": "html",
|
|
138
|
-
"ignoreRegExpList": ["href"]
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
"languageId": "markdown,mdx",
|
|
142
|
-
"ignoreRegExpList": ["markdown"]
|
|
143
|
-
},
|
|
144
|
-
{
|
|
145
|
-
"languageId": "markdown",
|
|
146
|
-
"ignoreRegExpList": [
|
|
147
|
-
"MARKDOWN-link-reference",
|
|
148
|
-
"MARKDOWN-link-footer",
|
|
149
|
-
"MARKDOWN-link",
|
|
150
|
-
"MARKDOWN-anchor"
|
|
151
|
-
]
|
|
152
|
-
}
|
|
153
|
-
],
|
|
154
|
-
"import": [
|
|
155
|
-
"./cspell-ext.json",
|
|
156
|
-
"@cspell/dict-css/cspell-ext.json",
|
|
157
|
-
"@cspell/dict-en_us/cspell-ext.json",
|
|
158
|
-
"@cspell/dict-filetypes/cspell-ext.json",
|
|
159
|
-
"@cspell/dict-fullstack/cspell-ext.json",
|
|
160
|
-
"@cspell/dict-html-symbol-entities/cspell-ext.json",
|
|
161
|
-
"@cspell/dict-html/cspell-ext.json",
|
|
162
|
-
"@cspell/dict-fonts/cspell-ext.json",
|
|
163
|
-
"@cspell/dict-lorem-ipsum/cspell-ext.json",
|
|
164
|
-
"@cspell/dict-markdown/cspell-ext.json",
|
|
165
|
-
"@cspell/dict-node/cspell-ext.json",
|
|
166
|
-
"@cspell/dict-npm/cspell-ext.json",
|
|
167
|
-
"@cspell/dict-rust/cspell-ext.json",
|
|
168
|
-
"@cspell/dict-sql/cspell-ext.json",
|
|
169
|
-
"@cspell/dict-software-terms/cspell-ext.json",
|
|
170
|
-
"@cspell/dict-typescript/cspell-ext.json"
|
|
171
|
-
]
|
|
172
|
-
}
|