vscode-eslint 0.0.1

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.
Files changed (160) hide show
  1. package/$shared/customMessages.ts +113 -0
  2. package/$shared/settings.ts +189 -0
  3. package/.CodeQL.yml +5 -0
  4. package/.azure-pipelines.yml +27 -0
  5. package/.github/commands.yml +127 -0
  6. package/.github/locker.yml +6 -0
  7. package/.github/needs_more_info.yml +6 -0
  8. package/.github/workflows/npm-publish.yml +53 -0
  9. package/.github/workflows/release-please.yml +22 -0
  10. package/.lsifrc.json +4 -0
  11. package/.vscode/launch.json +20 -0
  12. package/.vscode/settings.json +52 -0
  13. package/.vscode/spellright.dict +8 -0
  14. package/.vscode/tasks.json +39 -0
  15. package/.vscodeignore +23 -0
  16. package/CHANGELOG.md +524 -0
  17. package/License.txt +17 -0
  18. package/README.md +517 -0
  19. package/SECURITY.md +41 -0
  20. package/agents.md +36 -0
  21. package/bin/vscode-eslint.js +56 -0
  22. package/build/azure-pipelines/linux/build.yml +14 -0
  23. package/build/azure-pipelines/pre-release.yml +42 -0
  24. package/build/azure-pipelines/release.yml +45 -0
  25. package/build/azure-pipelines/win32/build.yml +14 -0
  26. package/build/bin/all.js +29 -0
  27. package/build/bin/linking.js +102 -0
  28. package/build/bin/symlink.js +35 -0
  29. package/client/.mocharc.json +6 -0
  30. package/client/agents.md +5 -0
  31. package/client/package-lock.json +176 -0
  32. package/client/package.json +29 -0
  33. package/client/src/client.ts +992 -0
  34. package/client/src/extension.ts +180 -0
  35. package/client/src/node-utils.ts +393 -0
  36. package/client/src/settings.ts +379 -0
  37. package/client/src/tasks.ts +186 -0
  38. package/client/src/tests/glob.test.ts +31 -0
  39. package/client/src/vscode-utils.ts +28 -0
  40. package/client/test/mocha.opts +3 -0
  41. package/client/tsconfig.json +20 -0
  42. package/client/webpack.config.js +25 -0
  43. package/contributing.md +19 -0
  44. package/esbuild.js +62 -0
  45. package/eslint.config.js +129 -0
  46. package/eslint_icon.png +0 -0
  47. package/history/settings_1_9_x.md +110 -0
  48. package/images/2_1_10/eslint-dialog.png +0 -0
  49. package/images/2_1_10/eslint-status.png +0 -0
  50. package/package-json-schema.json +9 -0
  51. package/package.json +686 -0
  52. package/playgrounds/7.0/.eslintignore +1 -0
  53. package/playgrounds/7.0/.eslintrc.json +71 -0
  54. package/playgrounds/7.0/.vscode/settings.json +85 -0
  55. package/playgrounds/7.0/app.js +12 -0
  56. package/playgrounds/7.0/build/.eslintignore +1 -0
  57. package/playgrounds/7.0/build/.eslintrc.json +30 -0
  58. package/playgrounds/7.0/build/build.js +11 -0
  59. package/playgrounds/7.0/jsconfig.json +5 -0
  60. package/playgrounds/7.0/package-lock.json +2133 -0
  61. package/playgrounds/7.0/package.json +10 -0
  62. package/playgrounds/7.0/readme.md +0 -0
  63. package/playgrounds/7.0/subDir/sub.js +11 -0
  64. package/playgrounds/7.0/subDir/test.jsx +10 -0
  65. package/playgrounds/7.0/test.js +11 -0
  66. package/playgrounds/7.0/test.sh +1 -0
  67. package/playgrounds/7.0/test.vue +33 -0
  68. package/playgrounds/7.0/test2.html +8 -0
  69. package/playgrounds/8.0/.eslintignore +1 -0
  70. package/playgrounds/8.0/.eslintrc.json +71 -0
  71. package/playgrounds/8.0/.vscode/settings.json +91 -0
  72. package/playgrounds/8.0/app.js +12 -0
  73. package/playgrounds/8.0/build/.eslintignore +1 -0
  74. package/playgrounds/8.0/build/.eslintrc.json +30 -0
  75. package/playgrounds/8.0/build/build.js +11 -0
  76. package/playgrounds/8.0/jsconfig.json +5 -0
  77. package/playgrounds/8.0/package-lock.json +2321 -0
  78. package/playgrounds/8.0/package.json +10 -0
  79. package/playgrounds/8.0/readme.md +17 -0
  80. package/playgrounds/8.0/subDir/sub.js +11 -0
  81. package/playgrounds/8.0/subDir/test.jsx +10 -0
  82. package/playgrounds/8.0/test.ipynb +49 -0
  83. package/playgrounds/8.0/test.js +3 -0
  84. package/playgrounds/8.0/test.sh +1 -0
  85. package/playgrounds/8.0/test.vue +33 -0
  86. package/playgrounds/8.0/test2.html +8 -0
  87. package/playgrounds/9.0/flat/.vscode/settings.json +3 -0
  88. package/playgrounds/9.0/flat/app.js +12 -0
  89. package/playgrounds/9.0/flat/dist/ignore.js +12 -0
  90. package/playgrounds/9.0/flat/eslint.config.js +61 -0
  91. package/playgrounds/9.0/flat/package-lock.json +1053 -0
  92. package/playgrounds/9.0/flat/package.json +9 -0
  93. package/playgrounds/9.0/rc/.eslintrc.json +57 -0
  94. package/playgrounds/9.0/rc/.vscode/settings.json +3 -0
  95. package/playgrounds/9.0/rc/app.js +12 -0
  96. package/playgrounds/9.0/rc/package-lock.json +1345 -0
  97. package/playgrounds/9.0/rc/package.json +9 -0
  98. package/playgrounds/flat-config/.vscode/settings.json +22 -0
  99. package/playgrounds/flat-config/app.js +12 -0
  100. package/playgrounds/flat-config/eslint.config.js +51 -0
  101. package/playgrounds/flat-config/package-lock.json +2733 -0
  102. package/playgrounds/flat-config/package.json +12 -0
  103. package/playgrounds/flat-config/sub/sub.js +2 -0
  104. package/playgrounds/flat-config/test.ts +7 -0
  105. package/playgrounds/flat-config/tsconfig.json +11 -0
  106. package/playgrounds/flat-config-fail/f1/app.js +12 -0
  107. package/playgrounds/flat-config-fail/f1/eslint.config.js +51 -0
  108. package/playgrounds/flat-config-fail/package-lock.json +1683 -0
  109. package/playgrounds/flat-config-fail/package.json +11 -0
  110. package/playgrounds/flat-config-mjs/.vscode/settings.json +21 -0
  111. package/playgrounds/flat-config-mjs/app.js +12 -0
  112. package/playgrounds/flat-config-mjs/eslint.config.mjs +53 -0
  113. package/playgrounds/flat-config-mjs/package-lock.json +2860 -0
  114. package/playgrounds/flat-config-mjs/package.json +11 -0
  115. package/playgrounds/flat-config-mjs/sub/sub.js +2 -0
  116. package/playgrounds/flat-config-mjs/test.ts +7 -0
  117. package/playgrounds/flat-config-mjs/tsconfig.json +11 -0
  118. package/playgrounds/load-eslint/.vscode/settings.json +21 -0
  119. package/playgrounds/load-eslint/app.js +12 -0
  120. package/playgrounds/load-eslint/eslint.config.js +51 -0
  121. package/playgrounds/load-eslint/package-lock.json +2860 -0
  122. package/playgrounds/load-eslint/package.json +11 -0
  123. package/playgrounds/load-eslint/sub/sub.js +2 -0
  124. package/playgrounds/load-eslint/test.ts +7 -0
  125. package/playgrounds/load-eslint/tsconfig.json +11 -0
  126. package/playgrounds/noLib/test.js +22 -0
  127. package/playgrounds/noWD/.vscode/settings.json +2 -0
  128. package/playgrounds/noWD/src/.eslintrc.json +18 -0
  129. package/playgrounds/noWD/src/package-lock.json +2812 -0
  130. package/playgrounds/noWD/src/package.json +12 -0
  131. package/playgrounds/noWD/src/test.js +3 -0
  132. package/playgrounds/notebooks/notebook.ipynb +7072 -0
  133. package/playgrounds/notebooks/notebook2.ipynb +20 -0
  134. package/playgrounds/testing.code-workspace +28 -0
  135. package/playgrounds/ts/.eslintrc.base.json +23 -0
  136. package/playgrounds/ts/.eslintrc.json +191 -0
  137. package/playgrounds/ts/.vscode/settings.json +12 -0
  138. package/playgrounds/ts/package-lock.json +2687 -0
  139. package/playgrounds/ts/package.json +11 -0
  140. package/playgrounds/ts/test copy.ts +4 -0
  141. package/playgrounds/ts/test.ipynb +49 -0
  142. package/playgrounds/ts/test.ts +4 -0
  143. package/playgrounds/ts/test.tsx +14 -0
  144. package/playgrounds/ts/tsconfig.json +100 -0
  145. package/server/agents.md +9 -0
  146. package/server/package-lock.json +93 -0
  147. package/server/package.json +32 -0
  148. package/server/src/diff.ts +1079 -0
  149. package/server/src/eslint.ts +1471 -0
  150. package/server/src/eslintServer.ts +865 -0
  151. package/server/src/is.ts +18 -0
  152. package/server/src/languageDefaults.ts +40 -0
  153. package/server/src/linkedMap.ts +448 -0
  154. package/server/src/paths.ts +128 -0
  155. package/server/src/thenable.d.ts +5 -0
  156. package/server/tsconfig.json +21 -0
  157. package/server/webpack.config.js +25 -0
  158. package/shared.webpack.config.js +59 -0
  159. package/tsconfig.base.json +9 -0
  160. package/tsconfig.json +21 -0
@@ -0,0 +1,1053 @@
1
+ {
2
+ "name": "eslint9_flat_config",
3
+ "version": "1.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "eslint9_flat_config",
9
+ "version": "1.0.0",
10
+ "devDependencies": {
11
+ "eslint": "^9.39.1",
12
+ "globals": "^16.5.0"
13
+ }
14
+ },
15
+ "node_modules/@aashutoshrathi/word-wrap": {
16
+ "version": "1.2.6",
17
+ "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
18
+ "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
19
+ "dev": true,
20
+ "engines": {
21
+ "node": ">=0.10.0"
22
+ }
23
+ },
24
+ "node_modules/@eslint-community/eslint-utils": {
25
+ "version": "4.9.0",
26
+ "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz",
27
+ "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==",
28
+ "dev": true,
29
+ "license": "MIT",
30
+ "dependencies": {
31
+ "eslint-visitor-keys": "^3.4.3"
32
+ },
33
+ "engines": {
34
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
35
+ },
36
+ "funding": {
37
+ "url": "https://opencollective.com/eslint"
38
+ },
39
+ "peerDependencies": {
40
+ "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
41
+ }
42
+ },
43
+ "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
44
+ "version": "3.4.3",
45
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
46
+ "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
47
+ "dev": true,
48
+ "license": "Apache-2.0",
49
+ "engines": {
50
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
51
+ },
52
+ "funding": {
53
+ "url": "https://opencollective.com/eslint"
54
+ }
55
+ },
56
+ "node_modules/@eslint-community/regexpp": {
57
+ "version": "4.12.2",
58
+ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz",
59
+ "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
60
+ "dev": true,
61
+ "license": "MIT",
62
+ "engines": {
63
+ "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
64
+ }
65
+ },
66
+ "node_modules/@eslint/config-array": {
67
+ "version": "0.21.1",
68
+ "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz",
69
+ "integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==",
70
+ "dev": true,
71
+ "license": "Apache-2.0",
72
+ "dependencies": {
73
+ "@eslint/object-schema": "^2.1.7",
74
+ "debug": "^4.3.1",
75
+ "minimatch": "^3.1.2"
76
+ },
77
+ "engines": {
78
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
79
+ }
80
+ },
81
+ "node_modules/@eslint/config-helpers": {
82
+ "version": "0.4.2",
83
+ "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz",
84
+ "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==",
85
+ "dev": true,
86
+ "license": "Apache-2.0",
87
+ "dependencies": {
88
+ "@eslint/core": "^0.17.0"
89
+ },
90
+ "engines": {
91
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
92
+ }
93
+ },
94
+ "node_modules/@eslint/core": {
95
+ "version": "0.17.0",
96
+ "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz",
97
+ "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==",
98
+ "dev": true,
99
+ "license": "Apache-2.0",
100
+ "dependencies": {
101
+ "@types/json-schema": "^7.0.15"
102
+ },
103
+ "engines": {
104
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
105
+ }
106
+ },
107
+ "node_modules/@eslint/eslintrc": {
108
+ "version": "3.3.3",
109
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.3.tgz",
110
+ "integrity": "sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==",
111
+ "dev": true,
112
+ "license": "MIT",
113
+ "dependencies": {
114
+ "ajv": "^6.12.4",
115
+ "debug": "^4.3.2",
116
+ "espree": "^10.0.1",
117
+ "globals": "^14.0.0",
118
+ "ignore": "^5.2.0",
119
+ "import-fresh": "^3.2.1",
120
+ "js-yaml": "^4.1.1",
121
+ "minimatch": "^3.1.2",
122
+ "strip-json-comments": "^3.1.1"
123
+ },
124
+ "engines": {
125
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
126
+ },
127
+ "funding": {
128
+ "url": "https://opencollective.com/eslint"
129
+ }
130
+ },
131
+ "node_modules/@eslint/eslintrc/node_modules/globals": {
132
+ "version": "14.0.0",
133
+ "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz",
134
+ "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
135
+ "dev": true,
136
+ "license": "MIT",
137
+ "engines": {
138
+ "node": ">=18"
139
+ },
140
+ "funding": {
141
+ "url": "https://github.com/sponsors/sindresorhus"
142
+ }
143
+ },
144
+ "node_modules/@eslint/js": {
145
+ "version": "9.39.1",
146
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.1.tgz",
147
+ "integrity": "sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==",
148
+ "dev": true,
149
+ "license": "MIT",
150
+ "engines": {
151
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
152
+ },
153
+ "funding": {
154
+ "url": "https://eslint.org/donate"
155
+ }
156
+ },
157
+ "node_modules/@eslint/object-schema": {
158
+ "version": "2.1.7",
159
+ "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz",
160
+ "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==",
161
+ "dev": true,
162
+ "license": "Apache-2.0",
163
+ "engines": {
164
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
165
+ }
166
+ },
167
+ "node_modules/@eslint/plugin-kit": {
168
+ "version": "0.4.1",
169
+ "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz",
170
+ "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==",
171
+ "dev": true,
172
+ "license": "Apache-2.0",
173
+ "dependencies": {
174
+ "@eslint/core": "^0.17.0",
175
+ "levn": "^0.4.1"
176
+ },
177
+ "engines": {
178
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
179
+ }
180
+ },
181
+ "node_modules/@humanfs/core": {
182
+ "version": "0.19.1",
183
+ "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
184
+ "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
185
+ "dev": true,
186
+ "license": "Apache-2.0",
187
+ "engines": {
188
+ "node": ">=18.18.0"
189
+ }
190
+ },
191
+ "node_modules/@humanfs/node": {
192
+ "version": "0.16.7",
193
+ "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz",
194
+ "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==",
195
+ "dev": true,
196
+ "license": "Apache-2.0",
197
+ "dependencies": {
198
+ "@humanfs/core": "^0.19.1",
199
+ "@humanwhocodes/retry": "^0.4.0"
200
+ },
201
+ "engines": {
202
+ "node": ">=18.18.0"
203
+ }
204
+ },
205
+ "node_modules/@humanwhocodes/module-importer": {
206
+ "version": "1.0.1",
207
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
208
+ "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
209
+ "dev": true,
210
+ "engines": {
211
+ "node": ">=12.22"
212
+ },
213
+ "funding": {
214
+ "type": "github",
215
+ "url": "https://github.com/sponsors/nzakas"
216
+ }
217
+ },
218
+ "node_modules/@humanwhocodes/retry": {
219
+ "version": "0.4.3",
220
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz",
221
+ "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
222
+ "dev": true,
223
+ "license": "Apache-2.0",
224
+ "engines": {
225
+ "node": ">=18.18"
226
+ },
227
+ "funding": {
228
+ "type": "github",
229
+ "url": "https://github.com/sponsors/nzakas"
230
+ }
231
+ },
232
+ "node_modules/@types/estree": {
233
+ "version": "1.0.8",
234
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
235
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
236
+ "dev": true,
237
+ "license": "MIT"
238
+ },
239
+ "node_modules/@types/json-schema": {
240
+ "version": "7.0.15",
241
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
242
+ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
243
+ "dev": true,
244
+ "license": "MIT"
245
+ },
246
+ "node_modules/acorn": {
247
+ "version": "8.15.0",
248
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
249
+ "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
250
+ "dev": true,
251
+ "license": "MIT",
252
+ "bin": {
253
+ "acorn": "bin/acorn"
254
+ },
255
+ "engines": {
256
+ "node": ">=0.4.0"
257
+ }
258
+ },
259
+ "node_modules/acorn-jsx": {
260
+ "version": "5.3.2",
261
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
262
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
263
+ "dev": true,
264
+ "license": "MIT",
265
+ "peerDependencies": {
266
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
267
+ }
268
+ },
269
+ "node_modules/ajv": {
270
+ "version": "6.12.6",
271
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
272
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
273
+ "dev": true,
274
+ "license": "MIT",
275
+ "dependencies": {
276
+ "fast-deep-equal": "^3.1.1",
277
+ "fast-json-stable-stringify": "^2.0.0",
278
+ "json-schema-traverse": "^0.4.1",
279
+ "uri-js": "^4.2.2"
280
+ },
281
+ "funding": {
282
+ "type": "github",
283
+ "url": "https://github.com/sponsors/epoberezkin"
284
+ }
285
+ },
286
+ "node_modules/ansi-styles": {
287
+ "version": "4.3.0",
288
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
289
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
290
+ "dev": true,
291
+ "dependencies": {
292
+ "color-convert": "^2.0.1"
293
+ },
294
+ "engines": {
295
+ "node": ">=8"
296
+ },
297
+ "funding": {
298
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
299
+ }
300
+ },
301
+ "node_modules/argparse": {
302
+ "version": "2.0.1",
303
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
304
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
305
+ "dev": true,
306
+ "license": "Python-2.0"
307
+ },
308
+ "node_modules/balanced-match": {
309
+ "version": "1.0.2",
310
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
311
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
312
+ "dev": true,
313
+ "license": "MIT"
314
+ },
315
+ "node_modules/brace-expansion": {
316
+ "version": "1.1.12",
317
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
318
+ "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
319
+ "dev": true,
320
+ "license": "MIT",
321
+ "dependencies": {
322
+ "balanced-match": "^1.0.0",
323
+ "concat-map": "0.0.1"
324
+ }
325
+ },
326
+ "node_modules/callsites": {
327
+ "version": "3.1.0",
328
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
329
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
330
+ "dev": true,
331
+ "license": "MIT",
332
+ "engines": {
333
+ "node": ">=6"
334
+ }
335
+ },
336
+ "node_modules/chalk": {
337
+ "version": "4.1.2",
338
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
339
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
340
+ "dev": true,
341
+ "dependencies": {
342
+ "ansi-styles": "^4.1.0",
343
+ "supports-color": "^7.1.0"
344
+ },
345
+ "engines": {
346
+ "node": ">=10"
347
+ },
348
+ "funding": {
349
+ "url": "https://github.com/chalk/chalk?sponsor=1"
350
+ }
351
+ },
352
+ "node_modules/color-convert": {
353
+ "version": "2.0.1",
354
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
355
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
356
+ "dev": true,
357
+ "dependencies": {
358
+ "color-name": "~1.1.4"
359
+ },
360
+ "engines": {
361
+ "node": ">=7.0.0"
362
+ }
363
+ },
364
+ "node_modules/color-name": {
365
+ "version": "1.1.4",
366
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
367
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
368
+ "dev": true
369
+ },
370
+ "node_modules/concat-map": {
371
+ "version": "0.0.1",
372
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
373
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
374
+ "dev": true,
375
+ "license": "MIT"
376
+ },
377
+ "node_modules/cross-spawn": {
378
+ "version": "7.0.6",
379
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
380
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
381
+ "dev": true,
382
+ "license": "MIT",
383
+ "dependencies": {
384
+ "path-key": "^3.1.0",
385
+ "shebang-command": "^2.0.0",
386
+ "which": "^2.0.1"
387
+ },
388
+ "engines": {
389
+ "node": ">= 8"
390
+ }
391
+ },
392
+ "node_modules/debug": {
393
+ "version": "4.4.3",
394
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
395
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
396
+ "dev": true,
397
+ "license": "MIT",
398
+ "dependencies": {
399
+ "ms": "^2.1.3"
400
+ },
401
+ "engines": {
402
+ "node": ">=6.0"
403
+ },
404
+ "peerDependenciesMeta": {
405
+ "supports-color": {
406
+ "optional": true
407
+ }
408
+ }
409
+ },
410
+ "node_modules/deep-is": {
411
+ "version": "0.1.4",
412
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
413
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
414
+ "dev": true
415
+ },
416
+ "node_modules/escape-string-regexp": {
417
+ "version": "4.0.0",
418
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
419
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
420
+ "dev": true,
421
+ "engines": {
422
+ "node": ">=10"
423
+ },
424
+ "funding": {
425
+ "url": "https://github.com/sponsors/sindresorhus"
426
+ }
427
+ },
428
+ "node_modules/eslint": {
429
+ "version": "9.39.1",
430
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.1.tgz",
431
+ "integrity": "sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==",
432
+ "dev": true,
433
+ "license": "MIT",
434
+ "dependencies": {
435
+ "@eslint-community/eslint-utils": "^4.8.0",
436
+ "@eslint-community/regexpp": "^4.12.1",
437
+ "@eslint/config-array": "^0.21.1",
438
+ "@eslint/config-helpers": "^0.4.2",
439
+ "@eslint/core": "^0.17.0",
440
+ "@eslint/eslintrc": "^3.3.1",
441
+ "@eslint/js": "9.39.1",
442
+ "@eslint/plugin-kit": "^0.4.1",
443
+ "@humanfs/node": "^0.16.6",
444
+ "@humanwhocodes/module-importer": "^1.0.1",
445
+ "@humanwhocodes/retry": "^0.4.2",
446
+ "@types/estree": "^1.0.6",
447
+ "ajv": "^6.12.4",
448
+ "chalk": "^4.0.0",
449
+ "cross-spawn": "^7.0.6",
450
+ "debug": "^4.3.2",
451
+ "escape-string-regexp": "^4.0.0",
452
+ "eslint-scope": "^8.4.0",
453
+ "eslint-visitor-keys": "^4.2.1",
454
+ "espree": "^10.4.0",
455
+ "esquery": "^1.5.0",
456
+ "esutils": "^2.0.2",
457
+ "fast-deep-equal": "^3.1.3",
458
+ "file-entry-cache": "^8.0.0",
459
+ "find-up": "^5.0.0",
460
+ "glob-parent": "^6.0.2",
461
+ "ignore": "^5.2.0",
462
+ "imurmurhash": "^0.1.4",
463
+ "is-glob": "^4.0.0",
464
+ "json-stable-stringify-without-jsonify": "^1.0.1",
465
+ "lodash.merge": "^4.6.2",
466
+ "minimatch": "^3.1.2",
467
+ "natural-compare": "^1.4.0",
468
+ "optionator": "^0.9.3"
469
+ },
470
+ "bin": {
471
+ "eslint": "bin/eslint.js"
472
+ },
473
+ "engines": {
474
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
475
+ },
476
+ "funding": {
477
+ "url": "https://eslint.org/donate"
478
+ },
479
+ "peerDependencies": {
480
+ "jiti": "*"
481
+ },
482
+ "peerDependenciesMeta": {
483
+ "jiti": {
484
+ "optional": true
485
+ }
486
+ }
487
+ },
488
+ "node_modules/eslint-scope": {
489
+ "version": "8.4.0",
490
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz",
491
+ "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==",
492
+ "dev": true,
493
+ "license": "BSD-2-Clause",
494
+ "dependencies": {
495
+ "esrecurse": "^4.3.0",
496
+ "estraverse": "^5.2.0"
497
+ },
498
+ "engines": {
499
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
500
+ },
501
+ "funding": {
502
+ "url": "https://opencollective.com/eslint"
503
+ }
504
+ },
505
+ "node_modules/eslint-visitor-keys": {
506
+ "version": "4.2.1",
507
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
508
+ "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
509
+ "dev": true,
510
+ "license": "Apache-2.0",
511
+ "engines": {
512
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
513
+ },
514
+ "funding": {
515
+ "url": "https://opencollective.com/eslint"
516
+ }
517
+ },
518
+ "node_modules/espree": {
519
+ "version": "10.4.0",
520
+ "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz",
521
+ "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==",
522
+ "dev": true,
523
+ "license": "BSD-2-Clause",
524
+ "dependencies": {
525
+ "acorn": "^8.15.0",
526
+ "acorn-jsx": "^5.3.2",
527
+ "eslint-visitor-keys": "^4.2.1"
528
+ },
529
+ "engines": {
530
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
531
+ },
532
+ "funding": {
533
+ "url": "https://opencollective.com/eslint"
534
+ }
535
+ },
536
+ "node_modules/esquery": {
537
+ "version": "1.5.0",
538
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz",
539
+ "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==",
540
+ "dev": true,
541
+ "dependencies": {
542
+ "estraverse": "^5.1.0"
543
+ },
544
+ "engines": {
545
+ "node": ">=0.10"
546
+ }
547
+ },
548
+ "node_modules/esrecurse": {
549
+ "version": "4.3.0",
550
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
551
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
552
+ "dev": true,
553
+ "license": "BSD-2-Clause",
554
+ "dependencies": {
555
+ "estraverse": "^5.2.0"
556
+ },
557
+ "engines": {
558
+ "node": ">=4.0"
559
+ }
560
+ },
561
+ "node_modules/estraverse": {
562
+ "version": "5.3.0",
563
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
564
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
565
+ "dev": true,
566
+ "engines": {
567
+ "node": ">=4.0"
568
+ }
569
+ },
570
+ "node_modules/esutils": {
571
+ "version": "2.0.3",
572
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
573
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
574
+ "dev": true,
575
+ "engines": {
576
+ "node": ">=0.10.0"
577
+ }
578
+ },
579
+ "node_modules/fast-deep-equal": {
580
+ "version": "3.1.3",
581
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
582
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
583
+ "dev": true,
584
+ "license": "MIT"
585
+ },
586
+ "node_modules/fast-json-stable-stringify": {
587
+ "version": "2.1.0",
588
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
589
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
590
+ "dev": true,
591
+ "license": "MIT"
592
+ },
593
+ "node_modules/fast-levenshtein": {
594
+ "version": "2.0.6",
595
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
596
+ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
597
+ "dev": true
598
+ },
599
+ "node_modules/file-entry-cache": {
600
+ "version": "8.0.0",
601
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
602
+ "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
603
+ "dev": true,
604
+ "dependencies": {
605
+ "flat-cache": "^4.0.0"
606
+ },
607
+ "engines": {
608
+ "node": ">=16.0.0"
609
+ }
610
+ },
611
+ "node_modules/find-up": {
612
+ "version": "5.0.0",
613
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
614
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
615
+ "dev": true,
616
+ "dependencies": {
617
+ "locate-path": "^6.0.0",
618
+ "path-exists": "^4.0.0"
619
+ },
620
+ "engines": {
621
+ "node": ">=10"
622
+ },
623
+ "funding": {
624
+ "url": "https://github.com/sponsors/sindresorhus"
625
+ }
626
+ },
627
+ "node_modules/flat-cache": {
628
+ "version": "4.0.1",
629
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
630
+ "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
631
+ "dev": true,
632
+ "dependencies": {
633
+ "flatted": "^3.2.9",
634
+ "keyv": "^4.5.4"
635
+ },
636
+ "engines": {
637
+ "node": ">=16"
638
+ }
639
+ },
640
+ "node_modules/flatted": {
641
+ "version": "3.4.2",
642
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz",
643
+ "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==",
644
+ "dev": true,
645
+ "license": "ISC"
646
+ },
647
+ "node_modules/glob-parent": {
648
+ "version": "6.0.2",
649
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
650
+ "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
651
+ "dev": true,
652
+ "dependencies": {
653
+ "is-glob": "^4.0.3"
654
+ },
655
+ "engines": {
656
+ "node": ">=10.13.0"
657
+ }
658
+ },
659
+ "node_modules/globals": {
660
+ "version": "16.5.0",
661
+ "resolved": "https://registry.npmjs.org/globals/-/globals-16.5.0.tgz",
662
+ "integrity": "sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==",
663
+ "dev": true,
664
+ "license": "MIT",
665
+ "engines": {
666
+ "node": ">=18"
667
+ },
668
+ "funding": {
669
+ "url": "https://github.com/sponsors/sindresorhus"
670
+ }
671
+ },
672
+ "node_modules/has-flag": {
673
+ "version": "4.0.0",
674
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
675
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
676
+ "dev": true,
677
+ "engines": {
678
+ "node": ">=8"
679
+ }
680
+ },
681
+ "node_modules/ignore": {
682
+ "version": "5.3.2",
683
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
684
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
685
+ "dev": true,
686
+ "license": "MIT",
687
+ "engines": {
688
+ "node": ">= 4"
689
+ }
690
+ },
691
+ "node_modules/import-fresh": {
692
+ "version": "3.3.1",
693
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
694
+ "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
695
+ "dev": true,
696
+ "license": "MIT",
697
+ "dependencies": {
698
+ "parent-module": "^1.0.0",
699
+ "resolve-from": "^4.0.0"
700
+ },
701
+ "engines": {
702
+ "node": ">=6"
703
+ },
704
+ "funding": {
705
+ "url": "https://github.com/sponsors/sindresorhus"
706
+ }
707
+ },
708
+ "node_modules/imurmurhash": {
709
+ "version": "0.1.4",
710
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
711
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
712
+ "dev": true,
713
+ "engines": {
714
+ "node": ">=0.8.19"
715
+ }
716
+ },
717
+ "node_modules/is-extglob": {
718
+ "version": "2.1.1",
719
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
720
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
721
+ "dev": true,
722
+ "engines": {
723
+ "node": ">=0.10.0"
724
+ }
725
+ },
726
+ "node_modules/is-glob": {
727
+ "version": "4.0.3",
728
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
729
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
730
+ "dev": true,
731
+ "dependencies": {
732
+ "is-extglob": "^2.1.1"
733
+ },
734
+ "engines": {
735
+ "node": ">=0.10.0"
736
+ }
737
+ },
738
+ "node_modules/isexe": {
739
+ "version": "2.0.0",
740
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
741
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
742
+ "dev": true,
743
+ "license": "ISC"
744
+ },
745
+ "node_modules/js-yaml": {
746
+ "version": "4.1.1",
747
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz",
748
+ "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
749
+ "dev": true,
750
+ "license": "MIT",
751
+ "dependencies": {
752
+ "argparse": "^2.0.1"
753
+ },
754
+ "bin": {
755
+ "js-yaml": "bin/js-yaml.js"
756
+ }
757
+ },
758
+ "node_modules/json-buffer": {
759
+ "version": "3.0.1",
760
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
761
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
762
+ "dev": true
763
+ },
764
+ "node_modules/json-schema-traverse": {
765
+ "version": "0.4.1",
766
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
767
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
768
+ "dev": true,
769
+ "license": "MIT"
770
+ },
771
+ "node_modules/json-stable-stringify-without-jsonify": {
772
+ "version": "1.0.1",
773
+ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
774
+ "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
775
+ "dev": true
776
+ },
777
+ "node_modules/keyv": {
778
+ "version": "4.5.4",
779
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
780
+ "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
781
+ "dev": true,
782
+ "dependencies": {
783
+ "json-buffer": "3.0.1"
784
+ }
785
+ },
786
+ "node_modules/levn": {
787
+ "version": "0.4.1",
788
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
789
+ "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
790
+ "dev": true,
791
+ "dependencies": {
792
+ "prelude-ls": "^1.2.1",
793
+ "type-check": "~0.4.0"
794
+ },
795
+ "engines": {
796
+ "node": ">= 0.8.0"
797
+ }
798
+ },
799
+ "node_modules/locate-path": {
800
+ "version": "6.0.0",
801
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
802
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
803
+ "dev": true,
804
+ "dependencies": {
805
+ "p-locate": "^5.0.0"
806
+ },
807
+ "engines": {
808
+ "node": ">=10"
809
+ },
810
+ "funding": {
811
+ "url": "https://github.com/sponsors/sindresorhus"
812
+ }
813
+ },
814
+ "node_modules/lodash.merge": {
815
+ "version": "4.6.2",
816
+ "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
817
+ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
818
+ "dev": true
819
+ },
820
+ "node_modules/minimatch": {
821
+ "version": "3.1.2",
822
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
823
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
824
+ "dev": true,
825
+ "license": "ISC",
826
+ "dependencies": {
827
+ "brace-expansion": "^1.1.7"
828
+ },
829
+ "engines": {
830
+ "node": "*"
831
+ }
832
+ },
833
+ "node_modules/ms": {
834
+ "version": "2.1.3",
835
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
836
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
837
+ "dev": true,
838
+ "license": "MIT"
839
+ },
840
+ "node_modules/natural-compare": {
841
+ "version": "1.4.0",
842
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
843
+ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
844
+ "dev": true
845
+ },
846
+ "node_modules/optionator": {
847
+ "version": "0.9.3",
848
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz",
849
+ "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==",
850
+ "dev": true,
851
+ "dependencies": {
852
+ "@aashutoshrathi/word-wrap": "^1.2.3",
853
+ "deep-is": "^0.1.3",
854
+ "fast-levenshtein": "^2.0.6",
855
+ "levn": "^0.4.1",
856
+ "prelude-ls": "^1.2.1",
857
+ "type-check": "^0.4.0"
858
+ },
859
+ "engines": {
860
+ "node": ">= 0.8.0"
861
+ }
862
+ },
863
+ "node_modules/p-limit": {
864
+ "version": "3.1.0",
865
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
866
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
867
+ "dev": true,
868
+ "dependencies": {
869
+ "yocto-queue": "^0.1.0"
870
+ },
871
+ "engines": {
872
+ "node": ">=10"
873
+ },
874
+ "funding": {
875
+ "url": "https://github.com/sponsors/sindresorhus"
876
+ }
877
+ },
878
+ "node_modules/p-locate": {
879
+ "version": "5.0.0",
880
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
881
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
882
+ "dev": true,
883
+ "dependencies": {
884
+ "p-limit": "^3.0.2"
885
+ },
886
+ "engines": {
887
+ "node": ">=10"
888
+ },
889
+ "funding": {
890
+ "url": "https://github.com/sponsors/sindresorhus"
891
+ }
892
+ },
893
+ "node_modules/parent-module": {
894
+ "version": "1.0.1",
895
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
896
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
897
+ "dev": true,
898
+ "license": "MIT",
899
+ "dependencies": {
900
+ "callsites": "^3.0.0"
901
+ },
902
+ "engines": {
903
+ "node": ">=6"
904
+ }
905
+ },
906
+ "node_modules/path-exists": {
907
+ "version": "4.0.0",
908
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
909
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
910
+ "dev": true,
911
+ "engines": {
912
+ "node": ">=8"
913
+ }
914
+ },
915
+ "node_modules/path-key": {
916
+ "version": "3.1.1",
917
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
918
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
919
+ "dev": true,
920
+ "license": "MIT",
921
+ "engines": {
922
+ "node": ">=8"
923
+ }
924
+ },
925
+ "node_modules/prelude-ls": {
926
+ "version": "1.2.1",
927
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
928
+ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
929
+ "dev": true,
930
+ "engines": {
931
+ "node": ">= 0.8.0"
932
+ }
933
+ },
934
+ "node_modules/punycode": {
935
+ "version": "2.3.1",
936
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
937
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
938
+ "dev": true,
939
+ "license": "MIT",
940
+ "engines": {
941
+ "node": ">=6"
942
+ }
943
+ },
944
+ "node_modules/resolve-from": {
945
+ "version": "4.0.0",
946
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
947
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
948
+ "dev": true,
949
+ "license": "MIT",
950
+ "engines": {
951
+ "node": ">=4"
952
+ }
953
+ },
954
+ "node_modules/shebang-command": {
955
+ "version": "2.0.0",
956
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
957
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
958
+ "dev": true,
959
+ "license": "MIT",
960
+ "dependencies": {
961
+ "shebang-regex": "^3.0.0"
962
+ },
963
+ "engines": {
964
+ "node": ">=8"
965
+ }
966
+ },
967
+ "node_modules/shebang-regex": {
968
+ "version": "3.0.0",
969
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
970
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
971
+ "dev": true,
972
+ "license": "MIT",
973
+ "engines": {
974
+ "node": ">=8"
975
+ }
976
+ },
977
+ "node_modules/strip-json-comments": {
978
+ "version": "3.1.1",
979
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
980
+ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
981
+ "dev": true,
982
+ "license": "MIT",
983
+ "engines": {
984
+ "node": ">=8"
985
+ },
986
+ "funding": {
987
+ "url": "https://github.com/sponsors/sindresorhus"
988
+ }
989
+ },
990
+ "node_modules/supports-color": {
991
+ "version": "7.2.0",
992
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
993
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
994
+ "dev": true,
995
+ "dependencies": {
996
+ "has-flag": "^4.0.0"
997
+ },
998
+ "engines": {
999
+ "node": ">=8"
1000
+ }
1001
+ },
1002
+ "node_modules/type-check": {
1003
+ "version": "0.4.0",
1004
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
1005
+ "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
1006
+ "dev": true,
1007
+ "dependencies": {
1008
+ "prelude-ls": "^1.2.1"
1009
+ },
1010
+ "engines": {
1011
+ "node": ">= 0.8.0"
1012
+ }
1013
+ },
1014
+ "node_modules/uri-js": {
1015
+ "version": "4.4.1",
1016
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
1017
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
1018
+ "dev": true,
1019
+ "license": "BSD-2-Clause",
1020
+ "dependencies": {
1021
+ "punycode": "^2.1.0"
1022
+ }
1023
+ },
1024
+ "node_modules/which": {
1025
+ "version": "2.0.2",
1026
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
1027
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
1028
+ "dev": true,
1029
+ "license": "ISC",
1030
+ "dependencies": {
1031
+ "isexe": "^2.0.0"
1032
+ },
1033
+ "bin": {
1034
+ "node-which": "bin/node-which"
1035
+ },
1036
+ "engines": {
1037
+ "node": ">= 8"
1038
+ }
1039
+ },
1040
+ "node_modules/yocto-queue": {
1041
+ "version": "0.1.0",
1042
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
1043
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
1044
+ "dev": true,
1045
+ "engines": {
1046
+ "node": ">=10"
1047
+ },
1048
+ "funding": {
1049
+ "url": "https://github.com/sponsors/sindresorhus"
1050
+ }
1051
+ }
1052
+ }
1053
+ }