cspell 6.27.0 → 6.28.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/package.json +12 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cspell",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.28.0",
|
|
4
4
|
"description": "A Spelling Checker for Code!",
|
|
5
5
|
"funding": "https://github.com/streetsidesoftware/cspell?sponsor=1",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"files": [
|
|
30
30
|
"bin.js",
|
|
31
31
|
"dist",
|
|
32
|
+
"!**/*.tsbuildInfo",
|
|
32
33
|
"!**/__mocks__",
|
|
33
34
|
"!**/*.test.*",
|
|
34
35
|
"!**/*.spec.*",
|
|
@@ -38,7 +39,6 @@
|
|
|
38
39
|
"clean": "shx rm -rf dist coverage .tsbuildinfo",
|
|
39
40
|
"build": "pnpm run compile && pnpm run build-api",
|
|
40
41
|
"build-api": "rollup -c rollup.config.mjs",
|
|
41
|
-
"build-dev": "tsc -p tsconfig.dev.json",
|
|
42
42
|
"build:readme": "pnpm build:readme:help",
|
|
43
43
|
"build:readme:help": "pnpm build:readme:help:lint && pnpm build:readme:help:trace && inject-markdown README.md && prettier -w README.md",
|
|
44
44
|
"build:readme:help:lint": "./bin.js lint --help > static/help-lint.txt",
|
|
@@ -76,14 +76,14 @@
|
|
|
76
76
|
},
|
|
77
77
|
"homepage": "https://streetsidesoftware.github.io/cspell/",
|
|
78
78
|
"dependencies": {
|
|
79
|
-
"@cspell/cspell-pipe": "6.
|
|
80
|
-
"@cspell/dynamic-import": "6.
|
|
79
|
+
"@cspell/cspell-pipe": "6.28.0",
|
|
80
|
+
"@cspell/dynamic-import": "6.28.0",
|
|
81
81
|
"chalk": "^4.1.2",
|
|
82
82
|
"commander": "^10.0.0",
|
|
83
|
-
"cspell-gitignore": "6.
|
|
84
|
-
"cspell-glob": "6.
|
|
85
|
-
"cspell-io": "6.
|
|
86
|
-
"cspell-lib": "6.
|
|
83
|
+
"cspell-gitignore": "6.28.0",
|
|
84
|
+
"cspell-glob": "6.28.0",
|
|
85
|
+
"cspell-io": "6.28.0",
|
|
86
|
+
"cspell-lib": "6.28.0",
|
|
87
87
|
"fast-glob": "^3.2.12",
|
|
88
88
|
"fast-json-stable-stringify": "^2.1.0",
|
|
89
89
|
"file-entry-cache": "^6.0.1",
|
|
@@ -97,18 +97,15 @@
|
|
|
97
97
|
"node": ">=14"
|
|
98
98
|
},
|
|
99
99
|
"devDependencies": {
|
|
100
|
-
"@cspell/cspell-json-reporter": "6.
|
|
101
|
-
"@cspell/cspell-types": "6.
|
|
100
|
+
"@cspell/cspell-json-reporter": "6.28.0",
|
|
101
|
+
"@cspell/cspell-types": "6.28.0",
|
|
102
102
|
"@types/file-entry-cache": "^5.0.2",
|
|
103
103
|
"@types/glob": "^8.1.0",
|
|
104
104
|
"@types/imurmurhash": "^0.1.1",
|
|
105
105
|
"@types/micromatch": "^4.0.2",
|
|
106
106
|
"@types/semver": "^7.3.13",
|
|
107
107
|
"micromatch": "^4.0.5",
|
|
108
|
-
"minimatch": "^7.
|
|
109
|
-
"rollup": "^3.17.3",
|
|
110
|
-
"rollup-plugin-dts": "^5.2.0",
|
|
111
|
-
"vitest": "^0.28.5"
|
|
108
|
+
"minimatch": "^7.4.2"
|
|
112
109
|
},
|
|
113
|
-
"gitHead": "
|
|
110
|
+
"gitHead": "1c314413e76908e5fbf61fd2555726112b177c0e"
|
|
114
111
|
}
|