@cspell/dict-npm 5.2.10 → 5.2.12
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/README.md +87 -18
- package/dict/npm.txt +5 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,44 +4,99 @@ This dictionary contains a list of popular JavaScript packages found on [npmjs.c
|
|
|
4
4
|
|
|
5
5
|
This is a pre-built dictionary for use with CSpell.
|
|
6
6
|
|
|
7
|
+
<!--- @@inject: ../../static/requirements.md --->
|
|
8
|
+
|
|
7
9
|
## Requirements
|
|
8
10
|
|
|
9
11
|
| Tool | Version |
|
|
10
12
|
| ------------------------------------------------------------------------------------------------------------------------------------ | ------- |
|
|
11
|
-
| [cspell](https://github.com/streetsidesoftware/cspell) | `>=
|
|
12
|
-
| [Code Spell Checker - Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker) | `>=
|
|
13
|
+
| [cspell](https://github.com/streetsidesoftware/cspell) | `>= 8` |
|
|
14
|
+
| [Code Spell Checker - Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker) | `>= 4` |
|
|
13
15
|
|
|
14
|
-
|
|
16
|
+
<!--- @@inject-end: ../../static/requirements.md --->
|
|
15
17
|
|
|
16
|
-
|
|
18
|
+
<!--- @@inject: ./static/install.md --->
|
|
17
19
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
## Local Installation
|
|
21
|
+
|
|
22
|
+
**This package is bundled with CSpell.**
|
|
23
|
+
|
|
24
|
+
## Configuration
|
|
25
|
+
|
|
26
|
+
<details>
|
|
27
|
+
<summary>VSCode Settings</summary>
|
|
22
28
|
|
|
23
|
-
|
|
29
|
+
Add the following to your VSCode settings:
|
|
24
30
|
|
|
25
|
-
|
|
26
|
-
|
|
31
|
+
**`.vscode/settings.json`**
|
|
32
|
+
|
|
33
|
+
```jsonc
|
|
34
|
+
{
|
|
35
|
+
"cSpell.dictionaries": ["npm"],
|
|
36
|
+
}
|
|
27
37
|
```
|
|
28
38
|
|
|
29
|
-
|
|
39
|
+
</details>
|
|
40
|
+
|
|
41
|
+
<details>
|
|
42
|
+
<summary>CSpell Settings <code>cspell.json</code></summary>
|
|
30
43
|
|
|
31
|
-
|
|
44
|
+
**`cspell.json`**
|
|
32
45
|
|
|
33
|
-
```
|
|
46
|
+
```jsonc
|
|
34
47
|
{
|
|
35
|
-
|
|
36
|
-
"import": ["@cspell/dict-npm/cspell-ext.json"],
|
|
37
|
-
// …
|
|
48
|
+
"dictionaries": ["npm"],
|
|
38
49
|
}
|
|
39
50
|
```
|
|
40
51
|
|
|
41
|
-
|
|
52
|
+
</details>
|
|
53
|
+
|
|
54
|
+
<details>
|
|
55
|
+
<summary>CSpell Settings <code>cspell.config.yaml</code></summary>
|
|
56
|
+
|
|
57
|
+
**`cspell.config.yaml`**
|
|
58
|
+
|
|
59
|
+
```yaml
|
|
60
|
+
dictionaries:
|
|
61
|
+
- npm
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
</details>
|
|
65
|
+
|
|
66
|
+
## Local Installation using CDN
|
|
67
|
+
|
|
68
|
+
> **NOTE:** This package is bundled with CSpell.
|
|
69
|
+
|
|
70
|
+
## Dictionary Information
|
|
71
|
+
|
|
72
|
+
| Name | Enabled | Description |
|
|
73
|
+
| ----- | ------- | ----------------------------------------- |
|
|
74
|
+
| `npm` | | Dictionary of Common Javascript Packages. |
|
|
75
|
+
|
|
76
|
+
## Language Settings
|
|
77
|
+
|
|
78
|
+
| Name | Locale | File Type |
|
|
79
|
+
| ----- | ------ | ---------------------------------------------------------------- |
|
|
80
|
+
| `npm` | `*` | `javascript`, `typescript`, `javascriptreact`, `typescriptreact` |
|
|
81
|
+
|
|
82
|
+
<!--- @@inject-end: ./static/install.md --->
|
|
83
|
+
|
|
84
|
+
<!--- @@inject: ../../static/contributing.md --->
|
|
85
|
+
|
|
86
|
+
## Contributing
|
|
87
|
+
|
|
88
|
+
Please help correct any mistakes in the dictionaries.
|
|
89
|
+
|
|
90
|
+
See: [Contributing](https://github.com/streetsidesoftware/cspell-dicts#contributing)
|
|
91
|
+
|
|
92
|
+
Special thanks to all of our amazing contributors!
|
|
93
|
+
|
|
94
|
+
### Dictionary Development
|
|
42
95
|
|
|
43
96
|
See: [How to Create a New Dictionary](https://github.com/streetsidesoftware/cspell-dicts#how-to-create-a-new-dictionary)
|
|
44
97
|
|
|
98
|
+
<!--- @@inject-end: ../../static/contributing.md --->
|
|
99
|
+
|
|
45
100
|
## License
|
|
46
101
|
|
|
47
102
|
MIT
|
|
@@ -51,3 +106,17 @@ MIT
|
|
|
51
106
|
<!---
|
|
52
107
|
cspell:ignore npmjs
|
|
53
108
|
--->
|
|
109
|
+
|
|
110
|
+
<!--- @@inject: ../../static/footer.md --->
|
|
111
|
+
|
|
112
|
+
<br/>
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
<p align="center">
|
|
117
|
+
Brought to you by <a href="https://streetsidesoftware.com" title="Street Side Software">
|
|
118
|
+
<img width="16" alt="Street Side Software Logo" src="https://i.imgur.com/CyduuVY.png" /> Street Side Software
|
|
119
|
+
</a>
|
|
120
|
+
</p>
|
|
121
|
+
|
|
122
|
+
<!--- @@inject-end: ../../static/footer.md --->
|
package/dict/npm.txt
CHANGED
|
@@ -1127,6 +1127,7 @@ hastscript
|
|
|
1127
1127
|
hay-against-any-hurry
|
|
1128
1128
|
hbs
|
|
1129
1129
|
he
|
|
1130
|
+
headlessui
|
|
1130
1131
|
heapdump
|
|
1131
1132
|
helmet
|
|
1132
1133
|
helper-plugin-utils
|
|
@@ -1631,6 +1632,7 @@ netlify
|
|
|
1631
1632
|
netlify-cms-backend-bitbucket
|
|
1632
1633
|
netlify-cms-backend-git-gateway
|
|
1633
1634
|
netlify-cms-backend-gitlab
|
|
1635
|
+
netlify-cms-backend-proxy
|
|
1634
1636
|
netlify-cms-backend-test
|
|
1635
1637
|
newman
|
|
1636
1638
|
newrelic
|
|
@@ -2168,6 +2170,7 @@ remark-preset-github
|
|
|
2168
2170
|
remark-preset-wooorm
|
|
2169
2171
|
remark-rehype
|
|
2170
2172
|
remarkable
|
|
2173
|
+
remeda
|
|
2171
2174
|
renyii
|
|
2172
2175
|
replace-ext
|
|
2173
2176
|
replace-in-file
|
|
@@ -2202,6 +2205,7 @@ rimraf
|
|
|
2202
2205
|
riot
|
|
2203
2206
|
robotjs
|
|
2204
2207
|
roboto
|
|
2208
|
+
rolldown
|
|
2205
2209
|
rollup
|
|
2206
2210
|
rollup-plugin-babel
|
|
2207
2211
|
rollup-plugin-buble
|
|
@@ -2639,6 +2643,7 @@ utils
|
|
|
2639
2643
|
utils-merge
|
|
2640
2644
|
uuid
|
|
2641
2645
|
uvu
|
|
2646
|
+
valibot
|
|
2642
2647
|
valid-url
|
|
2643
2648
|
validate-commit-msg
|
|
2644
2649
|
validate-npm-package-name
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cspell/dict-npm",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.12",
|
|
4
4
|
"description": "Dictionary of common NPM packages for cspell.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"dict/npm.txt",
|
|
43
43
|
"cspell-ext.json"
|
|
44
44
|
],
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "2488b6872181472ef3b7982e2cc839d6beb39ef7"
|
|
46
46
|
}
|