@cspell/dict-npm 5.2.35 → 5.2.36
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/dict/npm.txt +4 -0
- package/package.json +24 -24
package/dict/npm.txt
CHANGED
|
@@ -173,6 +173,7 @@ babel-types
|
|
|
173
173
|
babelify
|
|
174
174
|
babylon
|
|
175
175
|
backbone
|
|
176
|
+
backend
|
|
176
177
|
backendless
|
|
177
178
|
backstage-plugin-gitlab-backend
|
|
178
179
|
baqend
|
|
@@ -435,6 +436,7 @@ consectetur-culpa-non
|
|
|
435
436
|
consola
|
|
436
437
|
consolidate
|
|
437
438
|
constants
|
|
439
|
+
content-classifier
|
|
438
440
|
content-disposition
|
|
439
441
|
content-type
|
|
440
442
|
context7-mcp
|
|
@@ -1275,6 +1277,7 @@ interaction-external-push
|
|
|
1275
1277
|
interaction-external-remove
|
|
1276
1278
|
interaction-external-repulse
|
|
1277
1279
|
interaction-external-slow
|
|
1280
|
+
interaction-particles-attract
|
|
1278
1281
|
interaction-particles-collisions
|
|
1279
1282
|
interaction-particles-links
|
|
1280
1283
|
interceptors
|
|
@@ -2522,6 +2525,7 @@ synion
|
|
|
2522
2525
|
system
|
|
2523
2526
|
systeminformation
|
|
2524
2527
|
systemjs
|
|
2528
|
+
t
|
|
2525
2529
|
tail-iron-became
|
|
2526
2530
|
tailwind
|
|
2527
2531
|
tailwind-merge
|
package/package.json
CHANGED
|
@@ -1,30 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cspell/dict-npm",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.36",
|
|
4
4
|
"description": "Dictionary of common NPM packages for cspell.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
7
7
|
"provenance": true
|
|
8
8
|
},
|
|
9
|
-
"exports": {
|
|
10
|
-
".": "./cspell-ext.json",
|
|
11
|
-
"./cspell": "./cspell-ext.json",
|
|
12
|
-
"./cspell-ext.json": "./cspell-ext.json"
|
|
13
|
-
},
|
|
14
|
-
"scripts": {
|
|
15
|
-
"#update-dictionary": "# Update dictionary will download the latest list of npm packages and build the dictionary.",
|
|
16
|
-
"update-dictionary": "pnpm update-npm-package-list --silent && pnpm run build",
|
|
17
|
-
"build": "cspell-tools-cli build",
|
|
18
|
-
"test": "cspell samples/list.txt -c ./cspell-ext.json \"--locale=*\" --languageId=javascript",
|
|
19
|
-
"update-npm-package-list": "./scripts/update-npm-package-list.mjs",
|
|
20
|
-
"prepublishOnly": "echo pre-publish",
|
|
21
|
-
"prepare:dictionary": "pnpm run build"
|
|
22
|
-
},
|
|
23
|
-
"repository": {
|
|
24
|
-
"type": "git",
|
|
25
|
-
"url": "https://github.com/streetsidesoftware/cspell-dicts",
|
|
26
|
-
"directory": "dictionaries/npm"
|
|
27
|
-
},
|
|
28
9
|
"keywords": [
|
|
29
10
|
"cspell",
|
|
30
11
|
"npm",
|
|
@@ -32,15 +13,34 @@
|
|
|
32
13
|
"dictionary",
|
|
33
14
|
"spelling"
|
|
34
15
|
],
|
|
35
|
-
"
|
|
36
|
-
"license": "MIT",
|
|
16
|
+
"homepage": "https://github.com/streetsidesoftware/cspell-dicts/blob/main/dictionaries/npm#readme",
|
|
37
17
|
"bugs": {
|
|
38
18
|
"url": "https://github.com/streetsidesoftware/cspell-dicts/issues"
|
|
39
19
|
},
|
|
40
|
-
"
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/streetsidesoftware/cspell-dicts",
|
|
23
|
+
"directory": "dictionaries/npm"
|
|
24
|
+
},
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"author": "Street Side Software <support@streetsidesoftware.nl>",
|
|
27
|
+
"exports": {
|
|
28
|
+
".": "./cspell-ext.json",
|
|
29
|
+
"./cspell": "./cspell-ext.json",
|
|
30
|
+
"./cspell-ext.json": "./cspell-ext.json"
|
|
31
|
+
},
|
|
41
32
|
"files": [
|
|
42
33
|
"dict/npm.txt",
|
|
43
34
|
"cspell-ext.json"
|
|
44
35
|
],
|
|
45
|
-
"
|
|
36
|
+
"scripts": {
|
|
37
|
+
"#update-dictionary": "# Update dictionary will download the latest list of npm packages and build the dictionary.",
|
|
38
|
+
"build": "cspell-tools-cli build",
|
|
39
|
+
"prepare:dictionary": "pnpm run build",
|
|
40
|
+
"prepublishOnly": "echo pre-publish",
|
|
41
|
+
"test": "cspell samples/list.txt -c ./cspell-ext.json \"--locale=*\" --languageId=javascript",
|
|
42
|
+
"update-dictionary": "pnpm update-npm-package-list --silent && pnpm run build",
|
|
43
|
+
"update-npm-package-list": "./scripts/update-npm-package-list.mjs"
|
|
44
|
+
},
|
|
45
|
+
"gitHead": "eee9113795b19024199db1f2cd91a622321b3eb0"
|
|
46
46
|
}
|