@elastic/distillate 0.0.0 → 0.1.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.
Files changed (285) hide show
  1. package/LICENSE.txt +93 -0
  2. package/NOTICE.txt +30 -0
  3. package/README.md +142 -0
  4. package/THIRD_PARTY_LICENSES.md +768 -0
  5. package/dist/cjs/collector.js +420 -0
  6. package/dist/cjs/collector.js.map +1 -0
  7. package/dist/cjs/css_scan.js +186 -0
  8. package/dist/cjs/css_scan.js.map +1 -0
  9. package/dist/cjs/dom_sink.js +40 -0
  10. package/dist/cjs/dom_sink.js.map +1 -0
  11. package/dist/cjs/emotion.js +189 -0
  12. package/dist/cjs/emotion.js.map +1 -0
  13. package/dist/cjs/engine.js +79 -0
  14. package/dist/cjs/engine.js.map +1 -0
  15. package/dist/cjs/environment.js +9 -0
  16. package/dist/cjs/environment.js.map +1 -0
  17. package/dist/cjs/hash.js +86 -0
  18. package/dist/cjs/hash.js.map +1 -0
  19. package/dist/cjs/idents.js +23 -0
  20. package/dist/cjs/idents.js.map +1 -0
  21. package/dist/cjs/index.js +42 -0
  22. package/dist/cjs/index.js.map +1 -0
  23. package/dist/cjs/instance.js +34 -0
  24. package/dist/cjs/instance.js.map +1 -0
  25. package/dist/cjs/local_vars.js +100 -0
  26. package/dist/cjs/local_vars.js.map +1 -0
  27. package/dist/cjs/minify.js +77 -0
  28. package/dist/cjs/minify.js.map +1 -0
  29. package/dist/cjs/names.js +77 -0
  30. package/dist/cjs/names.js.map +1 -0
  31. package/dist/cjs/nesting.js +406 -0
  32. package/dist/cjs/nesting.js.map +1 -0
  33. package/dist/cjs/package.json +3 -0
  34. package/dist/cjs/runtime.js +257 -0
  35. package/dist/cjs/runtime.js.map +1 -0
  36. package/dist/cjs/styles/authoring.js +169 -0
  37. package/dist/cjs/styles/authoring.js.map +1 -0
  38. package/dist/cjs/styles/declarations.js +139 -0
  39. package/dist/cjs/styles/declarations.js.map +1 -0
  40. package/dist/cjs/styles/index.js +32 -0
  41. package/dist/cjs/styles/index.js.map +1 -0
  42. package/dist/cjs/styles/module.js +233 -0
  43. package/dist/cjs/styles/module.js.map +1 -0
  44. package/dist/cjs/styles/registry.js +187 -0
  45. package/dist/cjs/styles/registry.js.map +1 -0
  46. package/dist/cjs/styles/types.js +9 -0
  47. package/dist/cjs/styles/types.js.map +1 -0
  48. package/dist/cjs/testing.js +37 -0
  49. package/dist/cjs/testing.js.map +1 -0
  50. package/dist/cjs/theme.js +249 -0
  51. package/dist/cjs/theme.js.map +1 -0
  52. package/dist/cjs/tokens/contextual_var.js +39 -0
  53. package/dist/cjs/tokens/contextual_var.js.map +1 -0
  54. package/dist/cjs/tokens/index.js +24 -0
  55. package/dist/cjs/tokens/index.js.map +1 -0
  56. package/dist/cjs/tokens/kind.js +14 -0
  57. package/dist/cjs/tokens/kind.js.map +1 -0
  58. package/dist/cjs/tokens/light_dark.js +42 -0
  59. package/dist/cjs/tokens/light_dark.js.map +1 -0
  60. package/dist/cjs/tokens/scale_token.js +28 -0
  61. package/dist/cjs/tokens/scale_token.js.map +1 -0
  62. package/dist/cjs/tokens/theme_token.js +28 -0
  63. package/dist/cjs/tokens/theme_token.js.map +1 -0
  64. package/dist/cjs/var_invariant.js +115 -0
  65. package/dist/cjs/var_invariant.js.map +1 -0
  66. package/dist/collector.d.ts +84 -0
  67. package/dist/collector.d.ts.map +1 -0
  68. package/dist/collector.js +416 -0
  69. package/dist/collector.js.map +1 -0
  70. package/dist/css_scan.d.ts +57 -0
  71. package/dist/css_scan.d.ts.map +1 -0
  72. package/dist/css_scan.js +180 -0
  73. package/dist/css_scan.js.map +1 -0
  74. package/dist/dom_sink.d.ts +27 -0
  75. package/dist/dom_sink.d.ts.map +1 -0
  76. package/dist/dom_sink.js +36 -0
  77. package/dist/dom_sink.js.map +1 -0
  78. package/dist/emotion.d.ts +47 -0
  79. package/dist/emotion.d.ts.map +1 -0
  80. package/dist/emotion.js +184 -0
  81. package/dist/emotion.js.map +1 -0
  82. package/dist/engine.d.ts +41 -0
  83. package/dist/engine.d.ts.map +1 -0
  84. package/dist/engine.js +75 -0
  85. package/dist/engine.js.map +1 -0
  86. package/dist/environment.d.ts +43 -0
  87. package/dist/environment.d.ts.map +1 -0
  88. package/dist/environment.js +8 -0
  89. package/dist/environment.js.map +1 -0
  90. package/dist/hash.d.ts +2 -0
  91. package/dist/hash.d.ts.map +1 -0
  92. package/dist/hash.js +82 -0
  93. package/dist/hash.js.map +1 -0
  94. package/dist/idents.d.ts +9 -0
  95. package/dist/idents.d.ts.map +1 -0
  96. package/dist/idents.js +19 -0
  97. package/dist/idents.js.map +1 -0
  98. package/dist/index.d.ts +9 -0
  99. package/dist/index.d.ts.map +1 -0
  100. package/dist/index.js +14 -0
  101. package/dist/index.js.map +1 -0
  102. package/dist/instance.d.ts +16 -0
  103. package/dist/instance.d.ts.map +1 -0
  104. package/dist/instance.js +30 -0
  105. package/dist/instance.js.map +1 -0
  106. package/dist/local_vars.d.ts +75 -0
  107. package/dist/local_vars.d.ts.map +1 -0
  108. package/dist/local_vars.js +92 -0
  109. package/dist/local_vars.js.map +1 -0
  110. package/dist/minify.d.ts +11 -0
  111. package/dist/minify.d.ts.map +1 -0
  112. package/dist/minify.js +73 -0
  113. package/dist/minify.js.map +1 -0
  114. package/dist/names.d.ts +39 -0
  115. package/dist/names.d.ts.map +1 -0
  116. package/dist/names.js +70 -0
  117. package/dist/names.js.map +1 -0
  118. package/dist/nesting.d.ts +59 -0
  119. package/dist/nesting.d.ts.map +1 -0
  120. package/dist/nesting.js +400 -0
  121. package/dist/nesting.js.map +1 -0
  122. package/dist/runtime.d.ts +36 -0
  123. package/dist/runtime.d.ts.map +1 -0
  124. package/dist/runtime.js +252 -0
  125. package/dist/runtime.js.map +1 -0
  126. package/dist/styles/authoring.d.ts +59 -0
  127. package/dist/styles/authoring.d.ts.map +1 -0
  128. package/dist/styles/authoring.js +155 -0
  129. package/dist/styles/authoring.js.map +1 -0
  130. package/dist/styles/declarations.d.ts +10 -0
  131. package/dist/styles/declarations.d.ts.map +1 -0
  132. package/dist/styles/declarations.js +132 -0
  133. package/dist/styles/declarations.js.map +1 -0
  134. package/dist/styles/index.d.ts +7 -0
  135. package/dist/styles/index.d.ts.map +1 -0
  136. package/dist/styles/index.js +12 -0
  137. package/dist/styles/index.js.map +1 -0
  138. package/dist/styles/module.d.ts +5 -0
  139. package/dist/styles/module.d.ts.map +1 -0
  140. package/dist/styles/module.js +229 -0
  141. package/dist/styles/module.js.map +1 -0
  142. package/dist/styles/registry.d.ts +48 -0
  143. package/dist/styles/registry.d.ts.map +1 -0
  144. package/dist/styles/registry.js +182 -0
  145. package/dist/styles/registry.js.map +1 -0
  146. package/dist/styles/types.d.ts +211 -0
  147. package/dist/styles/types.d.ts.map +1 -0
  148. package/dist/styles/types.js +8 -0
  149. package/dist/styles/types.js.map +1 -0
  150. package/dist/testing.d.ts +10 -0
  151. package/dist/testing.d.ts.map +1 -0
  152. package/dist/testing.js +31 -0
  153. package/dist/testing.js.map +1 -0
  154. package/dist/theme.d.ts +85 -0
  155. package/dist/theme.d.ts.map +1 -0
  156. package/dist/theme.js +240 -0
  157. package/dist/theme.js.map +1 -0
  158. package/dist/tokens/contextual_var.d.ts +35 -0
  159. package/dist/tokens/contextual_var.d.ts.map +1 -0
  160. package/dist/tokens/contextual_var.js +33 -0
  161. package/dist/tokens/contextual_var.js.map +1 -0
  162. package/dist/tokens/index.d.ts +5 -0
  163. package/dist/tokens/index.d.ts.map +1 -0
  164. package/dist/tokens/index.js +11 -0
  165. package/dist/tokens/index.js.map +1 -0
  166. package/dist/tokens/kind.d.ts +2 -0
  167. package/dist/tokens/kind.d.ts.map +1 -0
  168. package/dist/tokens/kind.js +10 -0
  169. package/dist/tokens/kind.js.map +1 -0
  170. package/dist/tokens/light_dark.d.ts +20 -0
  171. package/dist/tokens/light_dark.d.ts.map +1 -0
  172. package/dist/tokens/light_dark.js +37 -0
  173. package/dist/tokens/light_dark.js.map +1 -0
  174. package/dist/tokens/scale_token.d.ts +20 -0
  175. package/dist/tokens/scale_token.d.ts.map +1 -0
  176. package/dist/tokens/scale_token.js +23 -0
  177. package/dist/tokens/scale_token.js.map +1 -0
  178. package/dist/tokens/theme_token.d.ts +20 -0
  179. package/dist/tokens/theme_token.d.ts.map +1 -0
  180. package/dist/tokens/theme_token.js +23 -0
  181. package/dist/tokens/theme_token.js.map +1 -0
  182. package/dist/var_invariant.d.ts +25 -0
  183. package/dist/var_invariant.d.ts.map +1 -0
  184. package/dist/var_invariant.js +108 -0
  185. package/dist/var_invariant.js.map +1 -0
  186. package/docs/concepts/authoring.md +115 -0
  187. package/docs/concepts/collection.md +66 -0
  188. package/docs/concepts/distillery.md +47 -0
  189. package/docs/concepts/index.md +18 -0
  190. package/docs/concepts/naming-and-output.md +123 -0
  191. package/docs/concepts/ordering.md +61 -0
  192. package/docs/concepts/single-copy.md +103 -0
  193. package/docs/concepts/tokens.md +99 -0
  194. package/docs/docset.yml +53 -0
  195. package/docs/examples/01-stylesheet.ts +20 -0
  196. package/docs/examples/02-artifact.ts +26 -0
  197. package/docs/examples/03-variants.ts +40 -0
  198. package/docs/examples/04-emotion.ts +33 -0
  199. package/docs/examples/05-var-invariant.ts +31 -0
  200. package/docs/examples/06-payload.ts +85 -0
  201. package/docs/examples/fixture.ts +22 -0
  202. package/docs/getting-started/index.md +14 -0
  203. package/docs/getting-started/installation.md +30 -0
  204. package/docs/getting-started/quick-start.md +61 -0
  205. package/docs/getting-started/your-first-stylesheet.md +57 -0
  206. package/docs/guides/compact-artifacts.md +87 -0
  207. package/docs/guides/emotion-migration.md +60 -0
  208. package/docs/guides/index.md +17 -0
  209. package/docs/guides/name-collisions.md +37 -0
  210. package/docs/guides/non-css-surfaces.md +73 -0
  211. package/docs/guides/react-renderer.md +158 -0
  212. package/docs/guides/theming.md +107 -0
  213. package/docs/guides/var-invariant.md +24 -0
  214. package/docs/guides/vs-emotion.md +61 -0
  215. package/docs/index.md +73 -0
  216. package/docs/logo.svg +7 -0
  217. package/docs/playground/index.html +12 -0
  218. package/docs/playground/package.json +23 -0
  219. package/docs/playground/src/app/app.tsx +109 -0
  220. package/docs/playground/src/app/css_panel.tsx +119 -0
  221. package/docs/playground/src/app/editor_panel.tsx +87 -0
  222. package/docs/playground/src/app/index.ts +8 -0
  223. package/docs/playground/src/app/monaco_css_editor.tsx +84 -0
  224. package/docs/playground/src/app/monaco_source_editor.tsx +132 -0
  225. package/docs/playground/src/app/preview_panel.tsx +99 -0
  226. package/docs/playground/src/app/tokens_panel.tsx +117 -0
  227. package/docs/playground/src/app/types.ts +10 -0
  228. package/docs/playground/src/examples/snippets.test.ts +28 -0
  229. package/docs/playground/src/examples/snippets.ts +418 -0
  230. package/docs/playground/src/lib/compile.test.ts +157 -0
  231. package/docs/playground/src/lib/compile.ts +242 -0
  232. package/docs/playground/src/lib/demo_environment.test.ts +123 -0
  233. package/docs/playground/src/lib/demo_environment.ts +140 -0
  234. package/docs/playground/src/lib/editor_lib.test.ts +39 -0
  235. package/docs/playground/src/lib/editor_lib.ts +142 -0
  236. package/docs/playground/src/lib/format_css.test.ts +41 -0
  237. package/docs/playground/src/lib/format_css.ts +71 -0
  238. package/docs/playground/src/main.tsx +25 -0
  239. package/docs/playground/src/setup/chrome.test.ts +47 -0
  240. package/docs/playground/src/setup/chrome.ts +365 -0
  241. package/docs/playground/src/setup/monaco_env.ts +64 -0
  242. package/docs/playground/tsconfig.json +22 -0
  243. package/docs/playground/vite.config.ts +37 -0
  244. package/docs/playground/vitest.config.ts +35 -0
  245. package/docs/playground.md +28 -0
  246. package/docs/reference/api/emotion.md +372 -0
  247. package/docs/reference/api/index-1.md +2180 -0
  248. package/docs/reference/api/index.md +9 -0
  249. package/docs/reference/api/testing.md +92 -0
  250. package/docs/reference/api.md +12 -0
  251. package/docs/reference/entry-points.md +125 -0
  252. package/docs/reference/environment.md +60 -0
  253. package/docs/reference/index.md +11 -0
  254. package/docs/reference/okf-map.md +92 -0
  255. package/package.json +127 -4
  256. package/src/collector.ts +526 -0
  257. package/src/css_scan.ts +263 -0
  258. package/src/dom_sink.ts +65 -0
  259. package/src/emotion.ts +311 -0
  260. package/src/engine.ts +191 -0
  261. package/src/environment.ts +56 -0
  262. package/src/hash.ts +111 -0
  263. package/src/idents.ts +21 -0
  264. package/src/index.ts +93 -0
  265. package/src/instance.ts +49 -0
  266. package/src/local_vars.ts +220 -0
  267. package/src/minify.ts +87 -0
  268. package/src/names.ts +129 -0
  269. package/src/nesting.ts +596 -0
  270. package/src/runtime.ts +428 -0
  271. package/src/styles/authoring.ts +244 -0
  272. package/src/styles/declarations.ts +172 -0
  273. package/src/styles/index.ts +58 -0
  274. package/src/styles/module.ts +396 -0
  275. package/src/styles/registry.ts +261 -0
  276. package/src/styles/types.ts +283 -0
  277. package/src/testing.ts +48 -0
  278. package/src/theme.ts +454 -0
  279. package/src/tokens/contextual_var.ts +72 -0
  280. package/src/tokens/index.ts +17 -0
  281. package/src/tokens/kind.ts +13 -0
  282. package/src/tokens/light_dark.ts +58 -0
  283. package/src/tokens/scale_token.ts +41 -0
  284. package/src/tokens/theme_token.ts +42 -0
  285. package/src/var_invariant.ts +147 -0
@@ -0,0 +1,768 @@
1
+ # Third-party licenses
2
+
3
+ Source and distribution dependency closures of `@elastic/distillate`. Regenerated by `pnpm licenses:report`.
4
+
5
+ ## Distribution (runtime)
6
+
7
+ Packages a consumer installs with this library. Their license texts are folded into `NOTICE.txt`.
8
+
9
+ | Package | Version | SPDX | Path |
10
+ | --- | --- | --- | --- |
11
+ | `stylis` | 4.4.0 | MIT | `node_modules/.pnpm/stylis@4.4.0/node_modules/stylis` |
12
+
13
+ ## Source and build
14
+
15
+ Direct `devDependencies` and their installed dependency closure. These are not distributed in the published tarball.
16
+
17
+ | Package | Version | SPDX | Path |
18
+ | --- | --- | --- | --- |
19
+ | `@actions/core` | 3.0.1 | MIT | `node_modules/.pnpm/@actions+core@3.0.1/node_modules/@actions/core` |
20
+ | `@actions/exec` | 3.0.0 | MIT | `node_modules/.pnpm/@actions+exec@3.0.0/node_modules/@actions/exec` |
21
+ | `@actions/http-client` | 4.0.1 | MIT | `node_modules/.pnpm/@actions+http-client@4.0.1/node_modules/@actions/http-client` |
22
+ | `@actions/io` | 3.0.2 | MIT | `node_modules/.pnpm/@actions+io@3.0.2/node_modules/@actions/io` |
23
+ | `@babel/code-frame` | 7.29.7 | MIT | `node_modules/.pnpm/@babel+code-frame@7.29.7/node_modules/@babel/code-frame` |
24
+ | `@babel/helper-string-parser` | 7.29.7 | MIT | `node_modules/.pnpm/@babel+helper-string-parser@7.29.7/node_modules/@babel/helper-string-parser` |
25
+ | `@babel/helper-validator-identifier` | 7.29.7 | MIT | `node_modules/.pnpm/@babel+helper-validator-identifier@7.29.7/node_modules/@babel/helper-validator-identifier` |
26
+ | `@babel/parser` | 7.29.8 | MIT | `node_modules/.pnpm/@babel+parser@7.29.8/node_modules/@babel/parser` |
27
+ | `@babel/types` | 7.29.8 | MIT | `node_modules/.pnpm/@babel+types@7.29.8/node_modules/@babel/types` |
28
+ | `@bcoe/v8-coverage` | 1.0.2 | MIT | `node_modules/.pnpm/@bcoe+v8-coverage@1.0.2/node_modules/@bcoe/v8-coverage` |
29
+ | `@colors/colors` | 1.5.0 | MIT | `node_modules/.pnpm/@colors+colors@1.5.0/node_modules/@colors/colors` |
30
+ | `@commitlint/cli` | 19.8.1 | MIT | `node_modules/.pnpm/@commitlint+cli@19.8.1_@types+node@24.13.5_typescript@5.9.3/node_modules/@commitlint/cli` |
31
+ | `@commitlint/config-conventional` | 19.8.1 | MIT | `node_modules/.pnpm/@commitlint+config-conventional@19.8.1/node_modules/@commitlint/config-conventional` |
32
+ | `@commitlint/config-validator` | 19.8.1 | MIT | `node_modules/.pnpm/@commitlint+config-validator@19.8.1/node_modules/@commitlint/config-validator` |
33
+ | `@commitlint/ensure` | 19.8.1 | MIT | `node_modules/.pnpm/@commitlint+ensure@19.8.1/node_modules/@commitlint/ensure` |
34
+ | `@commitlint/execute-rule` | 19.8.1 | MIT | `node_modules/.pnpm/@commitlint+execute-rule@19.8.1/node_modules/@commitlint/execute-rule` |
35
+ | `@commitlint/format` | 19.8.1 | MIT | `node_modules/.pnpm/@commitlint+format@19.8.1/node_modules/@commitlint/format` |
36
+ | `@commitlint/is-ignored` | 19.8.1 | MIT | `node_modules/.pnpm/@commitlint+is-ignored@19.8.1/node_modules/@commitlint/is-ignored` |
37
+ | `@commitlint/lint` | 19.8.1 | MIT | `node_modules/.pnpm/@commitlint+lint@19.8.1/node_modules/@commitlint/lint` |
38
+ | `@commitlint/load` | 19.8.1 | MIT | `node_modules/.pnpm/@commitlint+load@19.8.1_@types+node@24.13.5_typescript@5.9.3/node_modules/@commitlint/load` |
39
+ | `@commitlint/message` | 19.8.1 | MIT | `node_modules/.pnpm/@commitlint+message@19.8.1/node_modules/@commitlint/message` |
40
+ | `@commitlint/parse` | 19.8.1 | MIT | `node_modules/.pnpm/@commitlint+parse@19.8.1/node_modules/@commitlint/parse` |
41
+ | `@commitlint/read` | 19.8.1 | MIT | `node_modules/.pnpm/@commitlint+read@19.8.1/node_modules/@commitlint/read` |
42
+ | `@commitlint/resolve-extends` | 19.8.1 | MIT | `node_modules/.pnpm/@commitlint+resolve-extends@19.8.1/node_modules/@commitlint/resolve-extends` |
43
+ | `@commitlint/rules` | 19.8.1 | MIT | `node_modules/.pnpm/@commitlint+rules@19.8.1/node_modules/@commitlint/rules` |
44
+ | `@commitlint/to-lines` | 19.8.1 | MIT | `node_modules/.pnpm/@commitlint+to-lines@19.8.1/node_modules/@commitlint/to-lines` |
45
+ | `@commitlint/top-level` | 19.8.1 | MIT | `node_modules/.pnpm/@commitlint+top-level@19.8.1/node_modules/@commitlint/top-level` |
46
+ | `@commitlint/types` | 19.8.1 | MIT | `node_modules/.pnpm/@commitlint+types@19.8.1/node_modules/@commitlint/types` |
47
+ | `@eslint-community/eslint-utils` | 4.10.1 | MIT | `node_modules/.pnpm/@eslint-community+eslint-utils@4.10.1_eslint@9.39.5_jiti@2.6.1_/node_modules/@eslint-community/eslint-utils` |
48
+ | `@eslint-community/regexpp` | 4.12.2 | MIT | `node_modules/.pnpm/@eslint-community+regexpp@4.12.2/node_modules/@eslint-community/regexpp` |
49
+ | `@eslint/config-array` | 0.21.2 | Apache-2.0 | `node_modules/.pnpm/@eslint+config-array@0.21.2/node_modules/@eslint/config-array` |
50
+ | `@eslint/config-helpers` | 0.4.2 | Apache-2.0 | `node_modules/.pnpm/@eslint+config-helpers@0.4.2/node_modules/@eslint/config-helpers` |
51
+ | `@eslint/core` | 0.17.0 | Apache-2.0 | `node_modules/.pnpm/@eslint+core@0.17.0/node_modules/@eslint/core` |
52
+ | `@eslint/eslintrc` | 3.3.7 | MIT | `node_modules/.pnpm/@eslint+eslintrc@3.3.7/node_modules/@eslint/eslintrc` |
53
+ | `@eslint/js` | 9.39.5 | MIT | `node_modules/.pnpm/@eslint+js@9.39.5/node_modules/@eslint/js` |
54
+ | `@eslint/object-schema` | 2.1.7 | Apache-2.0 | `node_modules/.pnpm/@eslint+object-schema@2.1.7/node_modules/@eslint/object-schema` |
55
+ | `@eslint/plugin-kit` | 0.4.1 | Apache-2.0 | `node_modules/.pnpm/@eslint+plugin-kit@0.4.1/node_modules/@eslint/plugin-kit` |
56
+ | `@gar/promise-retry` | 1.0.3 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@gar/promise-retry` |
57
+ | `@gerrit0/mini-shiki` | 3.23.0 | MIT | `node_modules/.pnpm/@gerrit0+mini-shiki@3.23.0/node_modules/@gerrit0/mini-shiki` |
58
+ | `@humanfs/core` | 0.19.2 | Apache-2.0 | `node_modules/.pnpm/@humanfs+core@0.19.2/node_modules/@humanfs/core` |
59
+ | `@humanfs/node` | 0.16.8 | Apache-2.0 | `node_modules/.pnpm/@humanfs+node@0.16.8/node_modules/@humanfs/node` |
60
+ | `@humanfs/types` | 0.15.0 | Apache-2.0 | `node_modules/.pnpm/@humanfs+types@0.15.0/node_modules/@humanfs/types` |
61
+ | `@humanwhocodes/module-importer` | 1.0.1 | Apache-2.0 | `node_modules/.pnpm/@humanwhocodes+module-importer@1.0.1/node_modules/@humanwhocodes/module-importer` |
62
+ | `@humanwhocodes/retry` | 0.4.3 | Apache-2.0 | `node_modules/.pnpm/@humanwhocodes+retry@0.4.3/node_modules/@humanwhocodes/retry` |
63
+ | `@isaacs/fs-minipass` | 4.0.1 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@isaacs/fs-minipass` |
64
+ | `@isaacs/string-locale-compare` | 1.1.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@isaacs/string-locale-compare` |
65
+ | `@jridgewell/resolve-uri` | 3.1.2 | MIT | `node_modules/.pnpm/@jridgewell+resolve-uri@3.1.2/node_modules/@jridgewell/resolve-uri` |
66
+ | `@jridgewell/sourcemap-codec` | 1.6.0 | MIT | `node_modules/.pnpm/@jridgewell+sourcemap-codec@1.6.0/node_modules/@jridgewell/sourcemap-codec` |
67
+ | `@jridgewell/trace-mapping` | 0.3.31 | MIT | `node_modules/.pnpm/@jridgewell+trace-mapping@0.3.31/node_modules/@jridgewell/trace-mapping` |
68
+ | `@nodelib/fs.scandir` | 2.1.5 | MIT | `node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir` |
69
+ | `@nodelib/fs.stat` | 2.0.5 | MIT | `node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat` |
70
+ | `@nodelib/fs.walk` | 1.2.8 | MIT | `node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk` |
71
+ | `@npmcli/agent` | 4.0.2 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@npmcli/agent` |
72
+ | `@npmcli/arborist` | 9.9.1 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@npmcli/arborist` |
73
+ | `@npmcli/config` | 10.12.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@npmcli/config` |
74
+ | `@npmcli/fs` | 5.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@npmcli/fs` |
75
+ | `@npmcli/git` | 7.0.2 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@npmcli/git` |
76
+ | `@npmcli/installed-package-contents` | 4.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@npmcli/installed-package-contents` |
77
+ | `@npmcli/map-workspaces` | 5.0.3 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@npmcli/map-workspaces` |
78
+ | `@npmcli/metavuln-calculator` | 9.0.3 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@npmcli/metavuln-calculator` |
79
+ | `@npmcli/name-from-folder` | 4.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@npmcli/name-from-folder` |
80
+ | `@npmcli/node-gyp` | 5.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@npmcli/node-gyp` |
81
+ | `@npmcli/package-json` | 7.0.5 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@npmcli/package-json` |
82
+ | `@npmcli/promise-spawn` | 9.0.1 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@npmcli/promise-spawn` |
83
+ | `@npmcli/query` | 5.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@npmcli/query` |
84
+ | `@npmcli/redact` | 4.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@npmcli/redact` |
85
+ | `@npmcli/run-script` | 10.0.4 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@npmcli/run-script` |
86
+ | `@octokit/auth-token` | 6.0.0 | MIT | `node_modules/.pnpm/@octokit+auth-token@6.0.0/node_modules/@octokit/auth-token` |
87
+ | `@octokit/core` | 7.0.8 | MIT | `node_modules/.pnpm/@octokit+core@7.0.8/node_modules/@octokit/core` |
88
+ | `@octokit/endpoint` | 11.0.5 | MIT | `node_modules/.pnpm/@octokit+endpoint@11.0.5/node_modules/@octokit/endpoint` |
89
+ | `@octokit/graphql` | 9.0.5 | MIT | `node_modules/.pnpm/@octokit+graphql@9.0.5/node_modules/@octokit/graphql` |
90
+ | `@octokit/openapi-types` | 27.0.0 | MIT | `node_modules/.pnpm/@octokit+openapi-types@27.0.0/node_modules/@octokit/openapi-types` |
91
+ | `@octokit/openapi-types` | 28.0.0 | MIT | `node_modules/.pnpm/@octokit+openapi-types@28.0.0/node_modules/@octokit/openapi-types` |
92
+ | `@octokit/openapi-types` | 29.0.1 | MIT | `node_modules/.pnpm/@octokit+openapi-types@29.0.1/node_modules/@octokit/openapi-types` |
93
+ | `@octokit/plugin-paginate-rest` | 14.0.0 | MIT | `node_modules/.pnpm/@octokit+plugin-paginate-rest@14.0.0_@octokit+core@7.0.8/node_modules/@octokit/plugin-paginate-rest` |
94
+ | `@octokit/plugin-retry` | 8.1.1 | MIT | `node_modules/.pnpm/@octokit+plugin-retry@8.1.1_@octokit+core@7.0.8/node_modules/@octokit/plugin-retry` |
95
+ | `@octokit/plugin-throttling` | 11.0.5 | MIT | `node_modules/.pnpm/@octokit+plugin-throttling@11.0.5_@octokit+core@7.0.8/node_modules/@octokit/plugin-throttling` |
96
+ | `@octokit/request` | 10.0.16 | MIT | `node_modules/.pnpm/@octokit+request@10.0.16/node_modules/@octokit/request` |
97
+ | `@octokit/request-error` | 7.1.2 | MIT | `node_modules/.pnpm/@octokit+request-error@7.1.2/node_modules/@octokit/request-error` |
98
+ | `@octokit/types` | 16.0.0 | MIT | `node_modules/.pnpm/@octokit+types@16.0.0/node_modules/@octokit/types` |
99
+ | `@octokit/types` | 17.0.0 | MIT | `node_modules/.pnpm/@octokit+types@17.0.0/node_modules/@octokit/types` |
100
+ | `@octokit/types` | 18.0.0 | MIT | `node_modules/.pnpm/@octokit+types@18.0.0/node_modules/@octokit/types` |
101
+ | `@pkgr/core` | 0.3.6 | MIT | `node_modules/.pnpm/@pkgr+core@0.3.6/node_modules/@pkgr/core` |
102
+ | `@pnpm/config.env-replace` | 1.1.0 | MIT | `node_modules/.pnpm/@pnpm+config.env-replace@1.1.0/node_modules/@pnpm/config.env-replace` |
103
+ | `@pnpm/network.ca-file` | 1.0.2 | MIT | `node_modules/.pnpm/@pnpm+network.ca-file@1.0.2/node_modules/@pnpm/network.ca-file` |
104
+ | `@pnpm/npm-conf` | 3.0.3 | MIT | `node_modules/.pnpm/@pnpm+npm-conf@3.0.3/node_modules/@pnpm/npm-conf` |
105
+ | `@rmenke/css-tokenizer-tests` | 1.2.0 | MIT | `node_modules/.pnpm/@rmenke+css-tokenizer-tests@1.2.0/node_modules/@rmenke/css-tokenizer-tests` |
106
+ | `@sec-ant/readable-stream` | 0.4.1 | MIT | `node_modules/.pnpm/@sec-ant+readable-stream@0.4.1/node_modules/@sec-ant/readable-stream` |
107
+ | `@semantic-release/commit-analyzer` | 13.0.1 | MIT | `node_modules/.pnpm/@semantic-release+commit-analyzer@13.0.1_semantic-release@25.0.9_typescript@5.9.3_/node_modules/@semantic-release/commit-analyzer` |
108
+ | `@semantic-release/error` | 4.0.0 | MIT | `node_modules/.pnpm/@semantic-release+error@4.0.0/node_modules/@semantic-release/error` |
109
+ | `@semantic-release/github` | 12.0.9 | MIT | `node_modules/.pnpm/@semantic-release+github@12.0.9_semantic-release@25.0.9_typescript@5.9.3_/node_modules/@semantic-release/github` |
110
+ | `@semantic-release/npm` | 13.1.5 | MIT | `node_modules/.pnpm/@semantic-release+npm@13.1.5_semantic-release@25.0.9_typescript@5.9.3_/node_modules/@semantic-release/npm` |
111
+ | `@semantic-release/release-notes-generator` | 14.1.1 | MIT | `node_modules/.pnpm/@semantic-release+release-notes-generator@14.1.1_semantic-release@25.0.9_typescript@5.9.3_/node_modules/@semantic-release/release-notes-generator` |
112
+ | `@shikijs/engine-oniguruma` | 3.23.0 | MIT | `node_modules/.pnpm/@shikijs+engine-oniguruma@3.23.0/node_modules/@shikijs/engine-oniguruma` |
113
+ | `@shikijs/langs` | 3.23.0 | MIT | `node_modules/.pnpm/@shikijs+langs@3.23.0/node_modules/@shikijs/langs` |
114
+ | `@shikijs/themes` | 3.23.0 | MIT | `node_modules/.pnpm/@shikijs+themes@3.23.0/node_modules/@shikijs/themes` |
115
+ | `@shikijs/types` | 3.23.0 | MIT | `node_modules/.pnpm/@shikijs+types@3.23.0/node_modules/@shikijs/types` |
116
+ | `@shikijs/vscode-textmate` | 10.0.2 | MIT | `node_modules/.pnpm/@shikijs+vscode-textmate@10.0.2/node_modules/@shikijs/vscode-textmate` |
117
+ | `@sigstore/bundle` | 4.0.0 | Apache-2.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@sigstore/bundle` |
118
+ | `@sigstore/core` | 3.2.1 | Apache-2.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@sigstore/core` |
119
+ | `@sigstore/protobuf-specs` | 0.5.1 | Apache-2.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@sigstore/protobuf-specs` |
120
+ | `@sigstore/sign` | 4.1.1 | Apache-2.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@sigstore/sign` |
121
+ | `@sigstore/tuf` | 4.0.2 | Apache-2.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@sigstore/tuf` |
122
+ | `@sigstore/verify` | 3.1.1 | Apache-2.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@sigstore/verify` |
123
+ | `@simple-libs/stream-utils` | 1.2.0 | MIT | `node_modules/.pnpm/@simple-libs+stream-utils@1.2.0/node_modules/@simple-libs/stream-utils` |
124
+ | `@sindresorhus/is` | 4.6.0 | MIT | `node_modules/.pnpm/@sindresorhus+is@4.6.0/node_modules/@sindresorhus/is` |
125
+ | `@sindresorhus/merge-streams` | 4.0.0 | MIT | `node_modules/.pnpm/@sindresorhus+merge-streams@4.0.0/node_modules/@sindresorhus/merge-streams` |
126
+ | `@standard-schema/spec` | 1.1.0 | MIT | `node_modules/.pnpm/@standard-schema+spec@1.1.0/node_modules/@standard-schema/spec` |
127
+ | `@tufjs/canonical-json` | 2.0.0 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@tufjs/canonical-json` |
128
+ | `@tufjs/models` | 4.1.0 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/@tufjs/models` |
129
+ | `@types/chai` | 5.2.3 | MIT | `node_modules/.pnpm/@types+chai@5.2.3/node_modules/@types/chai` |
130
+ | `@types/conventional-commits-parser` | 5.0.2 | MIT | `node_modules/.pnpm/@types+conventional-commits-parser@5.0.2/node_modules/@types/conventional-commits-parser` |
131
+ | `@types/debug` | 4.1.13 | MIT | `node_modules/.pnpm/@types+debug@4.1.13/node_modules/@types/debug` |
132
+ | `@types/deep-eql` | 4.0.2 | MIT | `node_modules/.pnpm/@types+deep-eql@4.0.2/node_modules/@types/deep-eql` |
133
+ | `@types/estree` | 1.0.9 | MIT | `node_modules/.pnpm/@types+estree@1.0.9/node_modules/@types/estree` |
134
+ | `@types/hast` | 3.0.5 | MIT | `node_modules/.pnpm/@types+hast@3.0.5/node_modules/@types/hast` |
135
+ | `@types/json-schema` | 7.0.15 | MIT | `node_modules/.pnpm/@types+json-schema@7.0.15/node_modules/@types/json-schema` |
136
+ | `@types/katex` | 0.16.8 | MIT | `node_modules/.pnpm/@types+katex@0.16.8/node_modules/@types/katex` |
137
+ | `@types/ms` | 2.1.0 | MIT | `node_modules/.pnpm/@types+ms@2.1.0/node_modules/@types/ms` |
138
+ | `@types/node` | 22.20.2 | MIT | `node_modules/.pnpm/@types+node@22.20.2/node_modules/@types/node` |
139
+ | `@types/node` | 24.13.5 | MIT | `node_modules/.pnpm/@types+node@24.13.5/node_modules/@types/node` |
140
+ | `@types/normalize-package-data` | 2.4.4 | MIT | `node_modules/.pnpm/@types+normalize-package-data@2.4.4/node_modules/@types/normalize-package-data` |
141
+ | `@types/stylis` | 4.2.7 | MIT | `node_modules/.pnpm/@types+stylis@4.2.7/node_modules/@types/stylis` |
142
+ | `@types/unist` | 2.0.11 | MIT | `node_modules/.pnpm/@types+unist@2.0.11/node_modules/@types/unist` |
143
+ | `@typescript-eslint/eslint-plugin` | 8.70.0 | MIT | `node_modules/.pnpm/@typescript-eslint+eslint-plugin@8.70.0_@typescript-eslint+parser@8.70.0_eslint@9.39.5__6275fc40e814d6e52430554ca2625ac6/node_modules/@typescript-eslint/eslint-plugin` |
144
+ | `@typescript-eslint/parser` | 8.70.0 | MIT | `node_modules/.pnpm/@typescript-eslint+parser@8.70.0_eslint@9.39.5_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/parser` |
145
+ | `@typescript-eslint/project-service` | 8.70.0 | MIT | `node_modules/.pnpm/@typescript-eslint+project-service@8.70.0_typescript@5.9.3/node_modules/@typescript-eslint/project-service` |
146
+ | `@typescript-eslint/scope-manager` | 8.70.0 | MIT | `node_modules/.pnpm/@typescript-eslint+scope-manager@8.70.0/node_modules/@typescript-eslint/scope-manager` |
147
+ | `@typescript-eslint/tsconfig-utils` | 8.70.0 | MIT | `node_modules/.pnpm/@typescript-eslint+tsconfig-utils@8.70.0_typescript@5.9.3/node_modules/@typescript-eslint/tsconfig-utils` |
148
+ | `@typescript-eslint/type-utils` | 8.70.0 | MIT | `node_modules/.pnpm/@typescript-eslint+type-utils@8.70.0_eslint@9.39.5_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/type-utils` |
149
+ | `@typescript-eslint/types` | 8.70.0 | MIT | `node_modules/.pnpm/@typescript-eslint+types@8.70.0/node_modules/@typescript-eslint/types` |
150
+ | `@typescript-eslint/typescript-estree` | 8.70.0 | MIT | `node_modules/.pnpm/@typescript-eslint+typescript-estree@8.70.0_typescript@5.9.3/node_modules/@typescript-eslint/typescript-estree` |
151
+ | `@typescript-eslint/utils` | 8.70.0 | MIT | `node_modules/.pnpm/@typescript-eslint+utils@8.70.0_eslint@9.39.5_jiti@2.6.1__typescript@5.9.3/node_modules/@typescript-eslint/utils` |
152
+ | `@typescript-eslint/visitor-keys` | 8.70.0 | MIT | `node_modules/.pnpm/@typescript-eslint+visitor-keys@8.70.0/node_modules/@typescript-eslint/visitor-keys` |
153
+ | `@vitest/coverage-v8` | 4.1.11 | MIT | `node_modules/.pnpm/@vitest+coverage-v8@4.1.11_vitest@4.1.11/node_modules/@vitest/coverage-v8` |
154
+ | `@vitest/expect` | 4.1.11 | MIT | `node_modules/.pnpm/@vitest+expect@4.1.11/node_modules/@vitest/expect` |
155
+ | `@vitest/mocker` | 4.1.11 | MIT | `node_modules/.pnpm/@vitest+mocker@4.1.11_vite@6.4.3_@types+node@24.13.5_jiti@2.6.1_yaml@2.9.0_/node_modules/@vitest/mocker` |
156
+ | `@vitest/pretty-format` | 4.1.11 | MIT | `node_modules/.pnpm/@vitest+pretty-format@4.1.11/node_modules/@vitest/pretty-format` |
157
+ | `@vitest/runner` | 4.1.11 | MIT | `node_modules/.pnpm/@vitest+runner@4.1.11/node_modules/@vitest/runner` |
158
+ | `@vitest/snapshot` | 4.1.11 | MIT | `node_modules/.pnpm/@vitest+snapshot@4.1.11/node_modules/@vitest/snapshot` |
159
+ | `@vitest/spy` | 4.1.11 | MIT | `node_modules/.pnpm/@vitest+spy@4.1.11/node_modules/@vitest/spy` |
160
+ | `@vitest/utils` | 4.1.11 | MIT | `node_modules/.pnpm/@vitest+utils@4.1.11/node_modules/@vitest/utils` |
161
+ | `abbrev` | 4.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/abbrev` |
162
+ | `acorn` | 8.18.0 | MIT | `node_modules/.pnpm/acorn@8.18.0/node_modules/acorn` |
163
+ | `acorn-jsx` | 5.3.2 | MIT | `node_modules/.pnpm/acorn-jsx@5.3.2_acorn@8.18.0/node_modules/acorn-jsx` |
164
+ | `agent-base` | 7.1.4 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/agent-base` |
165
+ | `agent-base` | 9.0.0 | MIT | `node_modules/.pnpm/agent-base@9.0.0/node_modules/agent-base` |
166
+ | `aggregate-error` | 5.0.0 | MIT | `node_modules/.pnpm/aggregate-error@5.0.0/node_modules/aggregate-error` |
167
+ | `ajv` | 6.15.0 | MIT | `node_modules/.pnpm/ajv@6.15.0/node_modules/ajv` |
168
+ | `ajv` | 8.20.0 | MIT | `node_modules/.pnpm/ajv@8.20.0/node_modules/ajv` |
169
+ | `ansi-escapes` | 7.3.0 | MIT | `node_modules/.pnpm/ansi-escapes@7.3.0/node_modules/ansi-escapes` |
170
+ | `ansi-regex` | 5.0.1 | MIT | `node_modules/.pnpm/ansi-regex@5.0.1/node_modules/ansi-regex` |
171
+ | `ansi-regex` | 6.3.0 | MIT | `node_modules/.pnpm/ansi-regex@6.3.0/node_modules/ansi-regex` |
172
+ | `ansi-styles` | 3.2.1 | MIT | `node_modules/.pnpm/ansi-styles@3.2.1/node_modules/ansi-styles` |
173
+ | `ansi-styles` | 4.3.0 | MIT | `node_modules/.pnpm/ansi-styles@4.3.0/node_modules/ansi-styles` |
174
+ | `ansi-styles` | 6.2.3 | MIT | `node_modules/.pnpm/ansi-styles@6.2.3/node_modules/ansi-styles` |
175
+ | `any-promise` | 1.3.0 | MIT | `node_modules/.pnpm/any-promise@1.3.0/node_modules/any-promise` |
176
+ | `anymatch` | 3.1.3 | ISC | `node_modules/.pnpm/anymatch@3.1.3/node_modules/anymatch` |
177
+ | `aproba` | 2.1.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/aproba` |
178
+ | `archy` | 1.0.0 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/archy` |
179
+ | `argparse` | 2.0.1 | Python-2.0 | `node_modules/.pnpm/argparse@2.0.1/node_modules/argparse` |
180
+ | `argv-formatter` | 1.0.0 | MIT | `node_modules/.pnpm/argv-formatter@1.0.0/node_modules/argv-formatter` |
181
+ | `array-ify` | 1.0.0 | MIT | `node_modules/.pnpm/array-ify@1.0.0/node_modules/array-ify` |
182
+ | `array-union` | 2.1.0 | MIT | `node_modules/.pnpm/array-union@2.1.0/node_modules/array-union` |
183
+ | `assertion-error` | 2.0.1 | MIT | `node_modules/.pnpm/assertion-error@2.0.1/node_modules/assertion-error` |
184
+ | `ast-v8-to-istanbul` | 1.0.6 | MIT | `node_modules/.pnpm/ast-v8-to-istanbul@1.0.6/node_modules/ast-v8-to-istanbul` |
185
+ | `balanced-match` | 1.0.2 | MIT | `node_modules/.pnpm/balanced-match@1.0.2/node_modules/balanced-match` |
186
+ | `balanced-match` | 4.0.4 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/balanced-match` |
187
+ | `balanced-match` | 4.0.4 | MIT | `node_modules/.pnpm/balanced-match@4.0.4/node_modules/balanced-match` |
188
+ | `before-after-hook` | 4.0.0 | Apache-2.0 | `node_modules/.pnpm/before-after-hook@4.0.0/node_modules/before-after-hook` |
189
+ | `bin-links` | 6.0.2 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/bin-links` |
190
+ | `binary-extensions` | 2.3.0 | MIT | `node_modules/.pnpm/binary-extensions@2.3.0/node_modules/binary-extensions` |
191
+ | `binary-extensions` | 3.1.0 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/binary-extensions` |
192
+ | `bottleneck` | 2.19.5 | MIT | `node_modules/.pnpm/bottleneck@2.19.5/node_modules/bottleneck` |
193
+ | `brace-expansion` | 1.1.18 | MIT | `node_modules/.pnpm/brace-expansion@1.1.18/node_modules/brace-expansion` |
194
+ | `brace-expansion` | 5.0.9 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/brace-expansion` |
195
+ | `brace-expansion` | 5.0.9 | MIT | `node_modules/.pnpm/brace-expansion@5.0.9/node_modules/brace-expansion` |
196
+ | `braces` | 3.0.3 | MIT | `node_modules/.pnpm/braces@3.0.3/node_modules/braces` |
197
+ | `cacache` | 20.0.4 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/cacache` |
198
+ | `callsites` | 3.1.0 | MIT | `node_modules/.pnpm/callsites@3.1.0/node_modules/callsites` |
199
+ | `chai` | 6.2.2 | MIT | `node_modules/.pnpm/chai@6.2.2/node_modules/chai` |
200
+ | `chalk` | 2.4.2 | MIT | `node_modules/.pnpm/chalk@2.4.2/node_modules/chalk` |
201
+ | `chalk` | 4.1.2 | MIT | `node_modules/.pnpm/chalk@4.1.2/node_modules/chalk` |
202
+ | `chalk` | 5.6.2 | MIT | `node_modules/.pnpm/chalk@5.6.2/node_modules/chalk` |
203
+ | `chalk` | 5.6.2 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/chalk` |
204
+ | `char-regex` | 1.0.2 | MIT | `node_modules/.pnpm/char-regex@1.0.2/node_modules/char-regex` |
205
+ | `character-entities` | 2.0.2 | MIT | `node_modules/.pnpm/character-entities@2.0.2/node_modules/character-entities` |
206
+ | `character-entities-legacy` | 3.0.0 | MIT | `node_modules/.pnpm/character-entities-legacy@3.0.0/node_modules/character-entities-legacy` |
207
+ | `character-reference-invalid` | 2.0.1 | MIT | `node_modules/.pnpm/character-reference-invalid@2.0.1/node_modules/character-reference-invalid` |
208
+ | `chokidar` | 3.6.0 | MIT | `node_modules/.pnpm/chokidar@3.6.0/node_modules/chokidar` |
209
+ | `chownr` | 3.0.0 | BlueOak-1.0.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/chownr` |
210
+ | `ci-info` | 4.4.0 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/ci-info` |
211
+ | `cidr-regex` | 5.0.5 | BSD-2-Clause | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/cidr-regex` |
212
+ | `clean-stack` | 5.3.0 | MIT | `node_modules/.pnpm/clean-stack@5.3.0/node_modules/clean-stack` |
213
+ | `cli-cursor` | 5.0.0 | MIT | `node_modules/.pnpm/cli-cursor@5.0.0/node_modules/cli-cursor` |
214
+ | `cli-highlight` | 2.1.11 | ISC | `node_modules/.pnpm/cli-highlight@2.1.11/node_modules/cli-highlight` |
215
+ | `cli-table3` | 0.6.5 | MIT | `node_modules/.pnpm/cli-table3@0.6.5/node_modules/cli-table3` |
216
+ | `cli-truncate` | 5.2.0 | MIT | `node_modules/.pnpm/cli-truncate@5.2.0/node_modules/cli-truncate` |
217
+ | `cliui` | 7.0.4 | ISC | `node_modules/.pnpm/cliui@7.0.4/node_modules/cliui` |
218
+ | `cliui` | 8.0.1 | ISC | `node_modules/.pnpm/cliui@8.0.1/node_modules/cliui` |
219
+ | `cliui` | 9.0.1 | ISC | `node_modules/.pnpm/cliui@9.0.1/node_modules/cliui` |
220
+ | `cmd-shim` | 8.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/cmd-shim` |
221
+ | `color-convert` | 1.9.3 | MIT | `node_modules/.pnpm/color-convert@1.9.3/node_modules/color-convert` |
222
+ | `color-convert` | 2.0.1 | MIT | `node_modules/.pnpm/color-convert@2.0.1/node_modules/color-convert` |
223
+ | `color-name` | 1.1.3 | MIT | `node_modules/.pnpm/color-name@1.1.3/node_modules/color-name` |
224
+ | `color-name` | 1.1.4 | MIT | `node_modules/.pnpm/color-name@1.1.4/node_modules/color-name` |
225
+ | `colorette` | 2.0.20 | MIT | `node_modules/.pnpm/colorette@2.0.20/node_modules/colorette` |
226
+ | `commander` | 14.0.3 | MIT | `node_modules/.pnpm/commander@14.0.3/node_modules/commander` |
227
+ | `commander` | 8.3.0 | MIT | `node_modules/.pnpm/commander@8.3.0/node_modules/commander` |
228
+ | `commander` | 9.5.0 | MIT | `node_modules/.pnpm/commander@9.5.0/node_modules/commander` |
229
+ | `common-ancestor-path` | 2.0.0 | BlueOak-1.0.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/common-ancestor-path` |
230
+ | `compare-func` | 2.0.0 | MIT | `node_modules/.pnpm/compare-func@2.0.0/node_modules/compare-func` |
231
+ | `concat-map` | 0.0.1 | MIT | `node_modules/.pnpm/concat-map@0.0.1/node_modules/concat-map` |
232
+ | `config-chain` | 1.1.13 | MIT | `node_modules/.pnpm/config-chain@1.1.13/node_modules/config-chain` |
233
+ | `content-type` | 3.0.0 | MIT | `node_modules/.pnpm/content-type@3.0.0/node_modules/content-type` |
234
+ | `conventional-changelog-angular` | 7.0.0 | ISC | `node_modules/.pnpm/conventional-changelog-angular@7.0.0/node_modules/conventional-changelog-angular` |
235
+ | `conventional-changelog-angular` | 8.3.1 | ISC | `node_modules/.pnpm/conventional-changelog-angular@8.3.1/node_modules/conventional-changelog-angular` |
236
+ | `conventional-changelog-conventionalcommits` | 7.0.2 | ISC | `node_modules/.pnpm/conventional-changelog-conventionalcommits@7.0.2/node_modules/conventional-changelog-conventionalcommits` |
237
+ | `conventional-changelog-writer` | 8.4.0 | MIT | `node_modules/.pnpm/conventional-changelog-writer@8.4.0/node_modules/conventional-changelog-writer` |
238
+ | `conventional-commits-filter` | 5.0.0 | MIT | `node_modules/.pnpm/conventional-commits-filter@5.0.0/node_modules/conventional-commits-filter` |
239
+ | `conventional-commits-parser` | 5.0.0 | MIT | `node_modules/.pnpm/conventional-commits-parser@5.0.0/node_modules/conventional-commits-parser` |
240
+ | `conventional-commits-parser` | 6.4.0 | MIT | `node_modules/.pnpm/conventional-commits-parser@6.4.0/node_modules/conventional-commits-parser` |
241
+ | `convert-hrtime` | 5.0.0 | MIT | `node_modules/.pnpm/convert-hrtime@5.0.0/node_modules/convert-hrtime` |
242
+ | `convert-source-map` | 2.0.0 | MIT | `node_modules/.pnpm/convert-source-map@2.0.0/node_modules/convert-source-map` |
243
+ | `core-util-is` | 1.0.3 | MIT | `node_modules/.pnpm/core-util-is@1.0.3/node_modules/core-util-is` |
244
+ | `cosmiconfig` | 9.0.2 | MIT | `node_modules/.pnpm/cosmiconfig@9.0.2_typescript@5.9.3/node_modules/cosmiconfig` |
245
+ | `cosmiconfig-typescript-loader` | 6.3.0 | MIT | `node_modules/.pnpm/cosmiconfig-typescript-loader@6.3.0_@types+node@24.13.5_cosmiconfig@9.0.2_typescript@5.9.3__typescript@5.9.3/node_modules/cosmiconfig-typescript-loader` |
246
+ | `cross-spawn` | 7.0.6 | MIT | `node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn` |
247
+ | `crypto-random-string` | 4.0.0 | MIT | `node_modules/.pnpm/crypto-random-string@4.0.0/node_modules/crypto-random-string` |
248
+ | `cssesc` | 3.0.0 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/cssesc` |
249
+ | `dargs` | 8.1.0 | MIT | `node_modules/.pnpm/dargs@8.1.0/node_modules/dargs` |
250
+ | `debug` | 4.4.3 | MIT | `node_modules/.pnpm/debug@4.4.3/node_modules/debug` |
251
+ | `debug` | 4.4.3 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/debug` |
252
+ | `decode-named-character-reference` | 1.3.0 | MIT | `node_modules/.pnpm/decode-named-character-reference@1.3.0/node_modules/decode-named-character-reference` |
253
+ | `deep-extend` | 0.6.0 | MIT | `node_modules/.pnpm/deep-extend@0.6.0/node_modules/deep-extend` |
254
+ | `deep-is` | 0.1.4 | MIT | `node_modules/.pnpm/deep-is@0.1.4/node_modules/deep-is` |
255
+ | `dequal` | 2.0.3 | MIT | `node_modules/.pnpm/dequal@2.0.3/node_modules/dequal` |
256
+ | `devlop` | 1.1.0 | MIT | `node_modules/.pnpm/devlop@1.1.0/node_modules/devlop` |
257
+ | `diff` | 8.0.4 | BSD-3-Clause | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/diff` |
258
+ | `dir-glob` | 3.0.1 | MIT | `node_modules/.pnpm/dir-glob@3.0.1/node_modules/dir-glob` |
259
+ | `dot-prop` | 5.3.0 | MIT | `node_modules/.pnpm/dot-prop@5.3.0/node_modules/dot-prop` |
260
+ | `duplexer2` | 0.1.4 | BSD-3-Clause | `node_modules/.pnpm/duplexer2@0.1.4/node_modules/duplexer2` |
261
+ | `emoji-regex` | 10.6.0 | MIT | `node_modules/.pnpm/emoji-regex@10.6.0/node_modules/emoji-regex` |
262
+ | `emoji-regex` | 8.0.0 | MIT | `node_modules/.pnpm/emoji-regex@8.0.0/node_modules/emoji-regex` |
263
+ | `emojilib` | 2.4.0 | MIT | `node_modules/.pnpm/emojilib@2.4.0/node_modules/emojilib` |
264
+ | `entities` | 4.5.0 | BSD-2-Clause | `node_modules/.pnpm/entities@4.5.0/node_modules/entities` |
265
+ | `env-ci` | 11.2.0 | MIT | `node_modules/.pnpm/env-ci@11.2.0/node_modules/env-ci` |
266
+ | `env-paths` | 2.2.1 | MIT | `node_modules/.pnpm/env-paths@2.2.1/node_modules/env-paths` |
267
+ | `env-paths` | 2.2.1 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/env-paths` |
268
+ | `environment` | 1.1.0 | MIT | `node_modules/.pnpm/environment@1.1.0/node_modules/environment` |
269
+ | `error-ex` | 1.3.4 | MIT | `node_modules/.pnpm/error-ex@1.3.4/node_modules/error-ex` |
270
+ | `es-module-lexer` | 2.3.2 | MIT | `node_modules/.pnpm/es-module-lexer@2.3.2/node_modules/es-module-lexer` |
271
+ | `esbuild` | 0.25.12 | MIT | `node_modules/.pnpm/esbuild@0.25.12/node_modules/esbuild` |
272
+ | `escalade` | 3.2.0 | MIT | `node_modules/.pnpm/escalade@3.2.0/node_modules/escalade` |
273
+ | `escape-string-regexp` | 1.0.5 | MIT | `node_modules/.pnpm/escape-string-regexp@1.0.5/node_modules/escape-string-regexp` |
274
+ | `escape-string-regexp` | 4.0.0 | MIT | `node_modules/.pnpm/escape-string-regexp@4.0.0/node_modules/escape-string-regexp` |
275
+ | `escape-string-regexp` | 5.0.0 | MIT | `node_modules/.pnpm/escape-string-regexp@5.0.0/node_modules/escape-string-regexp` |
276
+ | `eslint` | 9.39.5 | MIT | `node_modules/.pnpm/eslint@9.39.5_jiti@2.6.1/node_modules/eslint` |
277
+ | `eslint-config-prettier` | 10.1.8 | MIT | `node_modules/.pnpm/eslint-config-prettier@10.1.8_eslint@9.39.5_jiti@2.6.1_/node_modules/eslint-config-prettier` |
278
+ | `eslint-plugin-license-header` | 0.9.0 | MIT | `node_modules/.pnpm/eslint-plugin-license-header@0.9.0_eslint@9.39.5_jiti@2.6.1_/node_modules/eslint-plugin-license-header` |
279
+ | `eslint-plugin-prettier` | 5.5.6 | MIT | `node_modules/.pnpm/eslint-plugin-prettier@5.5.6_eslint-config-prettier@10.1.8_eslint@9.39.5_jiti@2.6.1___e_a4316a196562703b4e2d4e910c29afbb/node_modules/eslint-plugin-prettier` |
280
+ | `eslint-plugin-simple-import-sort` | 14.0.0 | MIT | `node_modules/.pnpm/eslint-plugin-simple-import-sort@14.0.0_eslint@9.39.5_jiti@2.6.1_/node_modules/eslint-plugin-simple-import-sort` |
281
+ | `eslint-scope` | 8.4.0 | BSD-2-Clause | `node_modules/.pnpm/eslint-scope@8.4.0/node_modules/eslint-scope` |
282
+ | `eslint-visitor-keys` | 3.4.3 | Apache-2.0 | `node_modules/.pnpm/eslint-visitor-keys@3.4.3/node_modules/eslint-visitor-keys` |
283
+ | `eslint-visitor-keys` | 4.2.1 | Apache-2.0 | `node_modules/.pnpm/eslint-visitor-keys@4.2.1/node_modules/eslint-visitor-keys` |
284
+ | `eslint-visitor-keys` | 5.0.1 | Apache-2.0 | `node_modules/.pnpm/eslint-visitor-keys@5.0.1/node_modules/eslint-visitor-keys` |
285
+ | `espree` | 10.4.0 | BSD-2-Clause | `node_modules/.pnpm/espree@10.4.0/node_modules/espree` |
286
+ | `esquery` | 1.7.0 | BSD-3-Clause | `node_modules/.pnpm/esquery@1.7.0/node_modules/esquery` |
287
+ | `esrecurse` | 4.3.0 | BSD-2-Clause | `node_modules/.pnpm/esrecurse@4.3.0/node_modules/esrecurse` |
288
+ | `estraverse` | 5.3.0 | BSD-2-Clause | `node_modules/.pnpm/estraverse@5.3.0/node_modules/estraverse` |
289
+ | `estree-walker` | 3.0.3 | MIT | `node_modules/.pnpm/estree-walker@3.0.3/node_modules/estree-walker` |
290
+ | `esutils` | 2.0.3 | BSD-2-Clause | `node_modules/.pnpm/esutils@2.0.3/node_modules/esutils` |
291
+ | `eventemitter3` | 5.0.4 | MIT | `node_modules/.pnpm/eventemitter3@5.0.4/node_modules/eventemitter3` |
292
+ | `execa` | 8.0.1 | MIT | `node_modules/.pnpm/execa@8.0.1/node_modules/execa` |
293
+ | `execa` | 9.6.1 | MIT | `node_modules/.pnpm/execa@9.6.1/node_modules/execa` |
294
+ | `expect-type` | 1.4.0 | Apache-2.0 | `node_modules/.pnpm/expect-type@1.4.0/node_modules/expect-type` |
295
+ | `exponential-backoff` | 3.1.3 | Apache-2.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/exponential-backoff` |
296
+ | `fast-deep-equal` | 3.1.3 | MIT | `node_modules/.pnpm/fast-deep-equal@3.1.3/node_modules/fast-deep-equal` |
297
+ | `fast-diff` | 1.3.0 | Apache-2.0 | `node_modules/.pnpm/fast-diff@1.3.0/node_modules/fast-diff` |
298
+ | `fast-glob` | 3.3.3 | MIT | `node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob` |
299
+ | `fast-json-stable-stringify` | 2.1.0 | MIT | `node_modules/.pnpm/fast-json-stable-stringify@2.1.0/node_modules/fast-json-stable-stringify` |
300
+ | `fast-levenshtein` | 2.0.6 | MIT | `node_modules/.pnpm/fast-levenshtein@2.0.6/node_modules/fast-levenshtein` |
301
+ | `fast-uri` | 3.1.7 | BSD-3-Clause | `node_modules/.pnpm/fast-uri@3.1.7/node_modules/fast-uri` |
302
+ | `fastest-levenshtein` | 1.0.16 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/fastest-levenshtein` |
303
+ | `fastq` | 1.20.3 | ISC | `node_modules/.pnpm/fastq@1.20.3/node_modules/fastq` |
304
+ | `fdir` | 6.5.0 | MIT | `node_modules/.pnpm/fdir@6.5.0_picomatch@4.0.7/node_modules/fdir` |
305
+ | `fdir` | 6.5.0 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/tinyglobby/node_modules/fdir` |
306
+ | `figures` | 2.0.0 | MIT | `node_modules/.pnpm/figures@2.0.0/node_modules/figures` |
307
+ | `figures` | 6.1.0 | MIT | `node_modules/.pnpm/figures@6.1.0/node_modules/figures` |
308
+ | `file-entry-cache` | 8.0.0 | MIT | `node_modules/.pnpm/file-entry-cache@8.0.0/node_modules/file-entry-cache` |
309
+ | `fill-range` | 7.1.1 | MIT | `node_modules/.pnpm/fill-range@7.1.1/node_modules/fill-range` |
310
+ | `find-up` | 2.1.0 | MIT | `node_modules/.pnpm/find-up@2.1.0/node_modules/find-up` |
311
+ | `find-up` | 5.0.0 | MIT | `node_modules/.pnpm/find-up@5.0.0/node_modules/find-up` |
312
+ | `find-up` | 7.0.0 | MIT | `node_modules/.pnpm/find-up@7.0.0/node_modules/find-up` |
313
+ | `find-up-simple` | 1.0.1 | MIT | `node_modules/.pnpm/find-up-simple@1.0.1/node_modules/find-up-simple` |
314
+ | `find-versions` | 6.0.0 | MIT | `node_modules/.pnpm/find-versions@6.0.0/node_modules/find-versions` |
315
+ | `flat-cache` | 4.0.1 | MIT | `node_modules/.pnpm/flat-cache@4.0.1/node_modules/flat-cache` |
316
+ | `flatted` | 3.4.4 | ISC | `node_modules/.pnpm/flatted@3.4.4/node_modules/flatted` |
317
+ | `fs-extra` | 11.4.0 | MIT | `node_modules/.pnpm/fs-extra@11.4.0/node_modules/fs-extra` |
318
+ | `fs-minipass` | 3.0.3 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/fs-minipass` |
319
+ | `function-timeout` | 1.0.2 | MIT | `node_modules/.pnpm/function-timeout@1.0.2/node_modules/function-timeout` |
320
+ | `get-caller-file` | 2.0.5 | ISC | `node_modules/.pnpm/get-caller-file@2.0.5/node_modules/get-caller-file` |
321
+ | `get-east-asian-width` | 1.6.0 | MIT | `node_modules/.pnpm/get-east-asian-width@1.6.0/node_modules/get-east-asian-width` |
322
+ | `get-stream` | 6.0.1 | MIT | `node_modules/.pnpm/get-stream@6.0.1/node_modules/get-stream` |
323
+ | `get-stream` | 8.0.1 | MIT | `node_modules/.pnpm/get-stream@8.0.1/node_modules/get-stream` |
324
+ | `get-stream` | 9.0.1 | MIT | `node_modules/.pnpm/get-stream@9.0.1/node_modules/get-stream` |
325
+ | `get-tsconfig` | 4.14.3 | MIT | `node_modules/.pnpm/get-tsconfig@4.14.3/node_modules/get-tsconfig` |
326
+ | `git-log-parser` | 1.2.1 | MIT | `node_modules/.pnpm/git-log-parser@1.2.1/node_modules/git-log-parser` |
327
+ | `git-raw-commits` | 4.0.0 | MIT | `node_modules/.pnpm/git-raw-commits@4.0.0/node_modules/git-raw-commits` |
328
+ | `glob` | 13.0.6 | BlueOak-1.0.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/glob` |
329
+ | `glob-parent` | 5.1.2 | ISC | `node_modules/.pnpm/glob-parent@5.1.2/node_modules/glob-parent` |
330
+ | `glob-parent` | 6.0.2 | ISC | `node_modules/.pnpm/glob-parent@6.0.2/node_modules/glob-parent` |
331
+ | `global-directory` | 4.0.1 | MIT | `node_modules/.pnpm/global-directory@4.0.1/node_modules/global-directory` |
332
+ | `globals` | 14.0.0 | MIT | `node_modules/.pnpm/globals@14.0.0/node_modules/globals` |
333
+ | `globals` | 17.12.0 | MIT | `node_modules/.pnpm/globals@17.12.0/node_modules/globals` |
334
+ | `globby` | 11.1.0 | MIT | `node_modules/.pnpm/globby@11.1.0/node_modules/globby` |
335
+ | `globby` | 16.2.2 | MIT | `node_modules/.pnpm/globby@16.2.2/node_modules/globby` |
336
+ | `graceful-fs` | 4.2.10 | ISC | `node_modules/.pnpm/graceful-fs@4.2.10/node_modules/graceful-fs` |
337
+ | `graceful-fs` | 4.2.11 | ISC | `node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs` |
338
+ | `graceful-fs` | 4.2.11 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/graceful-fs` |
339
+ | `handlebars` | 4.7.9 | MIT | `node_modules/.pnpm/handlebars@4.7.9/node_modules/handlebars` |
340
+ | `has-flag` | 3.0.0 | MIT | `node_modules/.pnpm/has-flag@3.0.0/node_modules/has-flag` |
341
+ | `has-flag` | 4.0.0 | MIT | `node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag` |
342
+ | `highlight.js` | 10.7.3 | BSD-3-Clause | `node_modules/.pnpm/highlight.js@10.7.3/node_modules/highlight.js` |
343
+ | `hook-std` | 4.0.0 | MIT | `node_modules/.pnpm/hook-std@4.0.0/node_modules/hook-std` |
344
+ | `hosted-git-info` | 7.0.2 | ISC | `node_modules/.pnpm/hosted-git-info@7.0.2/node_modules/hosted-git-info` |
345
+ | `hosted-git-info` | 9.0.3 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/hosted-git-info` |
346
+ | `hosted-git-info` | 9.0.3 | ISC | `node_modules/.pnpm/hosted-git-info@9.0.3/node_modules/hosted-git-info` |
347
+ | `html-escaper` | 2.0.2 | MIT | `node_modules/.pnpm/html-escaper@2.0.2/node_modules/html-escaper` |
348
+ | `http-cache-semantics` | 4.2.0 | BSD-2-Clause | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/http-cache-semantics` |
349
+ | `http-proxy-agent` | 7.0.2 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/http-proxy-agent` |
350
+ | `http-proxy-agent` | 9.1.0 | MIT | `node_modules/.pnpm/http-proxy-agent@9.1.0/node_modules/http-proxy-agent` |
351
+ | `https-proxy-agent` | 7.0.6 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/https-proxy-agent` |
352
+ | `https-proxy-agent` | 9.1.0 | MIT | `node_modules/.pnpm/https-proxy-agent@9.1.0/node_modules/https-proxy-agent` |
353
+ | `human-signals` | 5.0.0 | Apache-2.0 | `node_modules/.pnpm/human-signals@5.0.0/node_modules/human-signals` |
354
+ | `human-signals` | 8.0.1 | Apache-2.0 | `node_modules/.pnpm/human-signals@8.0.1/node_modules/human-signals` |
355
+ | `husky` | 9.1.7 | MIT | `node_modules/.pnpm/husky@9.1.7/node_modules/husky` |
356
+ | `iconv-lite` | 0.7.2 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/iconv-lite` |
357
+ | `ignore` | 5.3.2 | MIT | `node_modules/.pnpm/ignore@5.3.2/node_modules/ignore` |
358
+ | `ignore` | 7.0.9 | MIT | `node_modules/.pnpm/ignore@7.0.9/node_modules/ignore` |
359
+ | `ignore-walk` | 8.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/ignore-walk` |
360
+ | `import-fresh` | 3.3.1 | MIT | `node_modules/.pnpm/import-fresh@3.3.1/node_modules/import-fresh` |
361
+ | `import-from-esm` | 2.0.0 | MIT | `node_modules/.pnpm/import-from-esm@2.0.0/node_modules/import-from-esm` |
362
+ | `import-meta-resolve` | 4.2.0 | MIT | `node_modules/.pnpm/import-meta-resolve@4.2.0/node_modules/import-meta-resolve` |
363
+ | `imurmurhash` | 0.1.4 | MIT | `node_modules/.pnpm/imurmurhash@0.1.4/node_modules/imurmurhash` |
364
+ | `indent-string` | 5.0.0 | MIT | `node_modules/.pnpm/indent-string@5.0.0/node_modules/indent-string` |
365
+ | `index-to-position` | 1.2.0 | MIT | `node_modules/.pnpm/index-to-position@1.2.0/node_modules/index-to-position` |
366
+ | `inherits` | 2.0.4 | ISC | `node_modules/.pnpm/inherits@2.0.4/node_modules/inherits` |
367
+ | `ini` | 1.3.8 | ISC | `node_modules/.pnpm/ini@1.3.8/node_modules/ini` |
368
+ | `ini` | 4.1.1 | ISC | `node_modules/.pnpm/ini@4.1.1/node_modules/ini` |
369
+ | `ini` | 6.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/ini` |
370
+ | `init-package-json` | 8.2.5 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/init-package-json` |
371
+ | `ip-address` | 10.5.0 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/ip-address` |
372
+ | `is-alphabetical` | 2.0.1 | MIT | `node_modules/.pnpm/is-alphabetical@2.0.1/node_modules/is-alphabetical` |
373
+ | `is-alphanumerical` | 2.0.1 | MIT | `node_modules/.pnpm/is-alphanumerical@2.0.1/node_modules/is-alphanumerical` |
374
+ | `is-arrayish` | 0.2.1 | MIT | `node_modules/.pnpm/is-arrayish@0.2.1/node_modules/is-arrayish` |
375
+ | `is-binary-path` | 2.1.0 | MIT | `node_modules/.pnpm/is-binary-path@2.1.0/node_modules/is-binary-path` |
376
+ | `is-cidr` | 6.0.4 | BSD-2-Clause | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/is-cidr` |
377
+ | `is-decimal` | 2.0.1 | MIT | `node_modules/.pnpm/is-decimal@2.0.1/node_modules/is-decimal` |
378
+ | `is-extglob` | 2.1.1 | MIT | `node_modules/.pnpm/is-extglob@2.1.1/node_modules/is-extglob` |
379
+ | `is-fullwidth-code-point` | 3.0.0 | MIT | `node_modules/.pnpm/is-fullwidth-code-point@3.0.0/node_modules/is-fullwidth-code-point` |
380
+ | `is-fullwidth-code-point` | 5.1.0 | MIT | `node_modules/.pnpm/is-fullwidth-code-point@5.1.0/node_modules/is-fullwidth-code-point` |
381
+ | `is-glob` | 4.0.3 | MIT | `node_modules/.pnpm/is-glob@4.0.3/node_modules/is-glob` |
382
+ | `is-hexadecimal` | 2.0.1 | MIT | `node_modules/.pnpm/is-hexadecimal@2.0.1/node_modules/is-hexadecimal` |
383
+ | `is-number` | 7.0.0 | MIT | `node_modules/.pnpm/is-number@7.0.0/node_modules/is-number` |
384
+ | `is-obj` | 2.0.0 | MIT | `node_modules/.pnpm/is-obj@2.0.0/node_modules/is-obj` |
385
+ | `is-path-inside` | 4.0.0 | MIT | `node_modules/.pnpm/is-path-inside@4.0.0/node_modules/is-path-inside` |
386
+ | `is-plain-obj` | 4.1.0 | MIT | `node_modules/.pnpm/is-plain-obj@4.1.0/node_modules/is-plain-obj` |
387
+ | `is-stream` | 3.0.0 | MIT | `node_modules/.pnpm/is-stream@3.0.0/node_modules/is-stream` |
388
+ | `is-stream` | 4.0.1 | MIT | `node_modules/.pnpm/is-stream@4.0.1/node_modules/is-stream` |
389
+ | `is-text-path` | 2.0.0 | MIT | `node_modules/.pnpm/is-text-path@2.0.0/node_modules/is-text-path` |
390
+ | `is-unicode-supported` | 2.1.0 | MIT | `node_modules/.pnpm/is-unicode-supported@2.1.0/node_modules/is-unicode-supported` |
391
+ | `isarray` | 1.0.0 | MIT | `node_modules/.pnpm/isarray@1.0.0/node_modules/isarray` |
392
+ | `isexe` | 2.0.0 | ISC | `node_modules/.pnpm/isexe@2.0.0/node_modules/isexe` |
393
+ | `isexe` | 4.0.0 | BlueOak-1.0.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/isexe` |
394
+ | `issue-parser` | 7.0.2 | MIT | `node_modules/.pnpm/issue-parser@7.0.2/node_modules/issue-parser` |
395
+ | `istanbul-lib-coverage` | 3.2.2 | BSD-3-Clause | `node_modules/.pnpm/istanbul-lib-coverage@3.2.2/node_modules/istanbul-lib-coverage` |
396
+ | `istanbul-lib-report` | 3.0.1 | BSD-3-Clause | `node_modules/.pnpm/istanbul-lib-report@3.0.1/node_modules/istanbul-lib-report` |
397
+ | `istanbul-reports` | 3.2.0 | BSD-3-Clause | `node_modules/.pnpm/istanbul-reports@3.2.0/node_modules/istanbul-reports` |
398
+ | `java-properties` | 1.0.2 | MIT | `node_modules/.pnpm/java-properties@1.0.2/node_modules/java-properties` |
399
+ | `jiti` | 2.6.1 | MIT | `node_modules/.pnpm/jiti@2.6.1/node_modules/jiti` |
400
+ | `js-tokens` | 10.0.0 | MIT | `node_modules/.pnpm/js-tokens@10.0.0/node_modules/js-tokens` |
401
+ | `js-tokens` | 4.0.0 | MIT | `node_modules/.pnpm/js-tokens@4.0.0/node_modules/js-tokens` |
402
+ | `js-yaml` | 4.3.2 | MIT | `node_modules/.pnpm/js-yaml@4.3.2/node_modules/js-yaml` |
403
+ | `js-yaml` | 5.2.2 | MIT | `node_modules/.pnpm/js-yaml@5.2.2/node_modules/js-yaml` |
404
+ | `json-buffer` | 3.0.1 | MIT | `node_modules/.pnpm/json-buffer@3.0.1/node_modules/json-buffer` |
405
+ | `json-parse-better-errors` | 1.0.2 | MIT | `node_modules/.pnpm/json-parse-better-errors@1.0.2/node_modules/json-parse-better-errors` |
406
+ | `json-parse-even-better-errors` | 2.3.1 | MIT | `node_modules/.pnpm/json-parse-even-better-errors@2.3.1/node_modules/json-parse-even-better-errors` |
407
+ | `json-parse-even-better-errors` | 5.0.0 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/json-parse-even-better-errors` |
408
+ | `json-schema-traverse` | 0.4.1 | MIT | `node_modules/.pnpm/json-schema-traverse@0.4.1/node_modules/json-schema-traverse` |
409
+ | `json-schema-traverse` | 1.0.0 | MIT | `node_modules/.pnpm/json-schema-traverse@1.0.0/node_modules/json-schema-traverse` |
410
+ | `json-stable-stringify-without-jsonify` | 1.0.1 | MIT | `node_modules/.pnpm/json-stable-stringify-without-jsonify@1.0.1/node_modules/json-stable-stringify-without-jsonify` |
411
+ | `json-stringify-nice` | 1.1.4 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/json-stringify-nice` |
412
+ | `json-with-bigint` | 3.5.12 | MIT | `node_modules/.pnpm/json-with-bigint@3.5.12/node_modules/json-with-bigint` |
413
+ | `jsonc-parser` | 3.3.1 | MIT | `node_modules/.pnpm/jsonc-parser@3.3.1/node_modules/jsonc-parser` |
414
+ | `jsonfile` | 6.2.1 | MIT | `node_modules/.pnpm/jsonfile@6.2.1/node_modules/jsonfile` |
415
+ | `jsonparse` | 1.3.1 | MIT | `node_modules/.pnpm/jsonparse@1.3.1/node_modules/jsonparse` |
416
+ | `jsonparse` | 1.3.1 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/jsonparse` |
417
+ | `jsonpointer` | 5.0.1 | MIT | `node_modules/.pnpm/jsonpointer@5.0.1/node_modules/jsonpointer` |
418
+ | `JSONStream` | 1.3.5 | (MIT OR Apache-2.0) | `node_modules/.pnpm/JSONStream@1.3.5_fb8f73c374dcf7070ffed90b688edabd/node_modules/JSONStream` |
419
+ | `just-diff` | 6.0.2 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/just-diff` |
420
+ | `just-diff-apply` | 5.5.0 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/just-diff-apply` |
421
+ | `katex` | 0.16.47 | MIT | `node_modules/.pnpm/katex@0.16.47/node_modules/katex` |
422
+ | `keyv` | 4.5.4 | MIT | `node_modules/.pnpm/keyv@4.5.4/node_modules/keyv` |
423
+ | `levn` | 0.4.1 | MIT | `node_modules/.pnpm/levn@0.4.1/node_modules/levn` |
424
+ | `libnpmaccess` | 10.0.3 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/libnpmaccess` |
425
+ | `libnpmdiff` | 8.1.12 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/libnpmdiff` |
426
+ | `libnpmexec` | 10.3.2 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/libnpmexec` |
427
+ | `libnpmfund` | 7.0.26 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/libnpmfund` |
428
+ | `libnpmorg` | 8.0.1 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/libnpmorg` |
429
+ | `libnpmpack` | 9.1.13 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/libnpmpack` |
430
+ | `libnpmpublish` | 11.2.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/libnpmpublish` |
431
+ | `libnpmsearch` | 9.0.1 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/libnpmsearch` |
432
+ | `libnpmteam` | 8.0.2 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/libnpmteam` |
433
+ | `libnpmversion` | 8.0.4 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/libnpmversion` |
434
+ | `lines-and-columns` | 1.2.4 | MIT | `node_modules/.pnpm/lines-and-columns@1.2.4/node_modules/lines-and-columns` |
435
+ | `linkify-it` | 5.0.2 | MIT | `node_modules/.pnpm/linkify-it@5.0.2/node_modules/linkify-it` |
436
+ | `lint-staged` | 16.4.0 | MIT | `node_modules/.pnpm/lint-staged@16.4.0/node_modules/lint-staged` |
437
+ | `listr2` | 9.0.5 | MIT | `node_modules/.pnpm/listr2@9.0.5/node_modules/listr2` |
438
+ | `load-json-file` | 4.0.0 | MIT | `node_modules/.pnpm/load-json-file@4.0.0/node_modules/load-json-file` |
439
+ | `locate-path` | 2.0.0 | MIT | `node_modules/.pnpm/locate-path@2.0.0/node_modules/locate-path` |
440
+ | `locate-path` | 6.0.0 | MIT | `node_modules/.pnpm/locate-path@6.0.0/node_modules/locate-path` |
441
+ | `locate-path` | 7.2.0 | MIT | `node_modules/.pnpm/locate-path@7.2.0/node_modules/locate-path` |
442
+ | `lodash-es` | 4.18.1 | MIT | `node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es` |
443
+ | `lodash.camelcase` | 4.3.0 | MIT | `node_modules/.pnpm/lodash.camelcase@4.3.0/node_modules/lodash.camelcase` |
444
+ | `lodash.capitalize` | 4.2.1 | MIT | `node_modules/.pnpm/lodash.capitalize@4.2.1/node_modules/lodash.capitalize` |
445
+ | `lodash.escaperegexp` | 4.1.2 | MIT | `node_modules/.pnpm/lodash.escaperegexp@4.1.2/node_modules/lodash.escaperegexp` |
446
+ | `lodash.isplainobject` | 4.0.6 | MIT | `node_modules/.pnpm/lodash.isplainobject@4.0.6/node_modules/lodash.isplainobject` |
447
+ | `lodash.isstring` | 4.0.1 | MIT | `node_modules/.pnpm/lodash.isstring@4.0.1/node_modules/lodash.isstring` |
448
+ | `lodash.kebabcase` | 4.1.1 | MIT | `node_modules/.pnpm/lodash.kebabcase@4.1.1/node_modules/lodash.kebabcase` |
449
+ | `lodash.merge` | 4.6.2 | MIT | `node_modules/.pnpm/lodash.merge@4.6.2/node_modules/lodash.merge` |
450
+ | `lodash.mergewith` | 4.6.2 | MIT | `node_modules/.pnpm/lodash.mergewith@4.6.2/node_modules/lodash.mergewith` |
451
+ | `lodash.snakecase` | 4.1.1 | MIT | `node_modules/.pnpm/lodash.snakecase@4.1.1/node_modules/lodash.snakecase` |
452
+ | `lodash.startcase` | 4.4.0 | MIT | `node_modules/.pnpm/lodash.startcase@4.4.0/node_modules/lodash.startcase` |
453
+ | `lodash.uniq` | 4.5.0 | MIT | `node_modules/.pnpm/lodash.uniq@4.5.0/node_modules/lodash.uniq` |
454
+ | `lodash.uniqby` | 4.7.0 | MIT | `node_modules/.pnpm/lodash.uniqby@4.7.0/node_modules/lodash.uniqby` |
455
+ | `lodash.upperfirst` | 4.3.1 | MIT | `node_modules/.pnpm/lodash.upperfirst@4.3.1/node_modules/lodash.upperfirst` |
456
+ | `log-update` | 6.1.0 | MIT | `node_modules/.pnpm/log-update@6.1.0/node_modules/log-update` |
457
+ | `lru-cache` | 10.4.3 | ISC | `node_modules/.pnpm/lru-cache@10.4.3/node_modules/lru-cache` |
458
+ | `lru-cache` | 11.5.1 | BlueOak-1.0.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/lru-cache` |
459
+ | `lru-cache` | 11.5.2 | BlueOak-1.0.0 | `node_modules/.pnpm/lru-cache@11.5.2/node_modules/lru-cache` |
460
+ | `lunr` | 2.3.9 | MIT | `node_modules/.pnpm/lunr@2.3.9/node_modules/lunr` |
461
+ | `magic-string` | 0.30.21 | MIT | `node_modules/.pnpm/magic-string@0.30.21/node_modules/magic-string` |
462
+ | `magicast` | 0.5.5 | MIT | `node_modules/.pnpm/magicast@0.5.5/node_modules/magicast` |
463
+ | `make-asynchronous` | 1.1.0 | MIT | `node_modules/.pnpm/make-asynchronous@1.1.0/node_modules/make-asynchronous` |
464
+ | `make-dir` | 4.0.0 | MIT | `node_modules/.pnpm/make-dir@4.0.0/node_modules/make-dir` |
465
+ | `make-fetch-happen` | 15.0.6 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/make-fetch-happen` |
466
+ | `markdown-it` | 14.3.0 | MIT | `node_modules/.pnpm/markdown-it@14.3.0/node_modules/markdown-it` |
467
+ | `markdownlint` | 0.41.1 | MIT | `node_modules/.pnpm/markdownlint@0.41.1/node_modules/markdownlint` |
468
+ | `markdownlint-cli2` | 0.23.2 | MIT | `node_modules/.pnpm/markdownlint-cli2@0.23.2/node_modules/markdownlint-cli2` |
469
+ | `markdownlint-cli2-formatter-default` | 0.0.6 | MIT | `node_modules/.pnpm/markdownlint-cli2-formatter-default@0.0.6_markdownlint-cli2@0.23.2/node_modules/markdownlint-cli2-formatter-default` |
470
+ | `marked` | 15.0.12 | MIT | `node_modules/.pnpm/marked@15.0.12/node_modules/marked` |
471
+ | `marked-terminal` | 7.3.0 | MIT | `node_modules/.pnpm/marked-terminal@7.3.0_marked@15.0.12/node_modules/marked-terminal` |
472
+ | `mdurl` | 2.1.0 | MIT | `node_modules/.pnpm/mdurl@2.1.0/node_modules/mdurl` |
473
+ | `meow` | 12.1.1 | MIT | `node_modules/.pnpm/meow@12.1.1/node_modules/meow` |
474
+ | `meow` | 13.2.0 | MIT | `node_modules/.pnpm/meow@13.2.0/node_modules/meow` |
475
+ | `merge-stream` | 2.0.0 | MIT | `node_modules/.pnpm/merge-stream@2.0.0/node_modules/merge-stream` |
476
+ | `merge2` | 1.4.1 | MIT | `node_modules/.pnpm/merge2@1.4.1/node_modules/merge2` |
477
+ | `micromark` | 4.0.2 | MIT | `node_modules/.pnpm/micromark@4.0.2/node_modules/micromark` |
478
+ | `micromark-core-commonmark` | 2.0.3 | MIT | `node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark` |
479
+ | `micromark-extension-directive` | 4.0.0 | MIT | `node_modules/.pnpm/micromark-extension-directive@4.0.0/node_modules/micromark-extension-directive` |
480
+ | `micromark-extension-gfm-autolink-literal` | 2.1.0 | MIT | `node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal` |
481
+ | `micromark-extension-gfm-footnote` | 2.1.0 | MIT | `node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote` |
482
+ | `micromark-extension-gfm-table` | 2.1.1 | MIT | `node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table` |
483
+ | `micromark-extension-math` | 3.1.0 | MIT | `node_modules/.pnpm/micromark-extension-math@3.1.0/node_modules/micromark-extension-math` |
484
+ | `micromark-factory-destination` | 2.0.1 | MIT | `node_modules/.pnpm/micromark-factory-destination@2.0.1/node_modules/micromark-factory-destination` |
485
+ | `micromark-factory-label` | 2.0.1 | MIT | `node_modules/.pnpm/micromark-factory-label@2.0.1/node_modules/micromark-factory-label` |
486
+ | `micromark-factory-space` | 2.0.1 | MIT | `node_modules/.pnpm/micromark-factory-space@2.0.1/node_modules/micromark-factory-space` |
487
+ | `micromark-factory-title` | 2.0.1 | MIT | `node_modules/.pnpm/micromark-factory-title@2.0.1/node_modules/micromark-factory-title` |
488
+ | `micromark-factory-whitespace` | 2.0.1 | MIT | `node_modules/.pnpm/micromark-factory-whitespace@2.0.1/node_modules/micromark-factory-whitespace` |
489
+ | `micromark-util-character` | 2.1.1 | MIT | `node_modules/.pnpm/micromark-util-character@2.1.1/node_modules/micromark-util-character` |
490
+ | `micromark-util-chunked` | 2.0.1 | MIT | `node_modules/.pnpm/micromark-util-chunked@2.0.1/node_modules/micromark-util-chunked` |
491
+ | `micromark-util-classify-character` | 2.0.1 | MIT | `node_modules/.pnpm/micromark-util-classify-character@2.0.1/node_modules/micromark-util-classify-character` |
492
+ | `micromark-util-combine-extensions` | 2.0.1 | MIT | `node_modules/.pnpm/micromark-util-combine-extensions@2.0.1/node_modules/micromark-util-combine-extensions` |
493
+ | `micromark-util-decode-numeric-character-reference` | 2.0.2 | MIT | `node_modules/.pnpm/micromark-util-decode-numeric-character-reference@2.0.2/node_modules/micromark-util-decode-numeric-character-reference` |
494
+ | `micromark-util-encode` | 2.0.1 | MIT | `node_modules/.pnpm/micromark-util-encode@2.0.1/node_modules/micromark-util-encode` |
495
+ | `micromark-util-html-tag-name` | 2.0.1 | MIT | `node_modules/.pnpm/micromark-util-html-tag-name@2.0.1/node_modules/micromark-util-html-tag-name` |
496
+ | `micromark-util-normalize-identifier` | 2.0.1 | MIT | `node_modules/.pnpm/micromark-util-normalize-identifier@2.0.1/node_modules/micromark-util-normalize-identifier` |
497
+ | `micromark-util-resolve-all` | 2.0.1 | MIT | `node_modules/.pnpm/micromark-util-resolve-all@2.0.1/node_modules/micromark-util-resolve-all` |
498
+ | `micromark-util-sanitize-uri` | 2.0.1 | MIT | `node_modules/.pnpm/micromark-util-sanitize-uri@2.0.1/node_modules/micromark-util-sanitize-uri` |
499
+ | `micromark-util-subtokenize` | 2.1.0 | MIT | `node_modules/.pnpm/micromark-util-subtokenize@2.1.0/node_modules/micromark-util-subtokenize` |
500
+ | `micromark-util-symbol` | 2.0.1 | MIT | `node_modules/.pnpm/micromark-util-symbol@2.0.1/node_modules/micromark-util-symbol` |
501
+ | `micromark-util-types` | 2.0.2 | MIT | `node_modules/.pnpm/micromark-util-types@2.0.2/node_modules/micromark-util-types` |
502
+ | `micromatch` | 4.0.8 | MIT | `node_modules/.pnpm/micromatch@4.0.8/node_modules/micromatch` |
503
+ | `mime` | 4.1.0 | MIT | `node_modules/.pnpm/mime@4.1.0/node_modules/mime` |
504
+ | `mimic-fn` | 4.0.0 | MIT | `node_modules/.pnpm/mimic-fn@4.0.0/node_modules/mimic-fn` |
505
+ | `mimic-function` | 5.0.1 | MIT | `node_modules/.pnpm/mimic-function@5.0.1/node_modules/mimic-function` |
506
+ | `minimatch` | 10.2.5 | BlueOak-1.0.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/minimatch` |
507
+ | `minimatch` | 10.2.6 | BlueOak-1.0.0 | `node_modules/.pnpm/minimatch@10.2.6/node_modules/minimatch` |
508
+ | `minimatch` | 3.1.5 | ISC | `node_modules/.pnpm/minimatch@3.1.5/node_modules/minimatch` |
509
+ | `minimist` | 1.2.8 | MIT | `node_modules/.pnpm/minimist@1.2.8/node_modules/minimist` |
510
+ | `minipass` | 3.3.6 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass` |
511
+ | `minipass` | 7.1.3 | BlueOak-1.0.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/minipass` |
512
+ | `minipass-collect` | 2.0.1 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/minipass-collect` |
513
+ | `minipass-fetch` | 5.0.2 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/minipass-fetch` |
514
+ | `minipass-flush` | 1.0.6 | BlueOak-1.0.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/minipass-flush` |
515
+ | `minipass-pipeline` | 1.2.4 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/minipass-pipeline` |
516
+ | `minipass-sized` | 2.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/minipass-sized` |
517
+ | `minizlib` | 3.1.0 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/minizlib` |
518
+ | `ms` | 2.1.3 | MIT | `node_modules/.pnpm/ms@2.1.3/node_modules/ms` |
519
+ | `ms` | 2.1.3 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/ms` |
520
+ | `mute-stream` | 3.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/mute-stream` |
521
+ | `mylas` | 2.1.14 | MIT | `node_modules/.pnpm/mylas@2.1.14/node_modules/mylas` |
522
+ | `mz` | 2.7.0 | MIT | `node_modules/.pnpm/mz@2.7.0/node_modules/mz` |
523
+ | `nanoid` | 3.3.18 | MIT | `node_modules/.pnpm/nanoid@3.3.18/node_modules/nanoid` |
524
+ | `natural-compare` | 1.4.0 | MIT | `node_modules/.pnpm/natural-compare@1.4.0/node_modules/natural-compare` |
525
+ | `negotiator` | 1.0.0 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/negotiator` |
526
+ | `neo-async` | 2.6.2 | MIT | `node_modules/.pnpm/neo-async@2.6.2/node_modules/neo-async` |
527
+ | `nerf-dart` | 1.0.0 | MIT | `node_modules/.pnpm/nerf-dart@1.0.0/node_modules/nerf-dart` |
528
+ | `node-emoji` | 2.2.0 | MIT | `node_modules/.pnpm/node-emoji@2.2.0/node_modules/node-emoji` |
529
+ | `node-gyp` | 12.4.0 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/node-gyp` |
530
+ | `nopt` | 9.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/nopt` |
531
+ | `normalize-package-data` | 6.0.2 | BSD-2-Clause | `node_modules/.pnpm/normalize-package-data@6.0.2/node_modules/normalize-package-data` |
532
+ | `normalize-package-data` | 8.0.0 | BSD-2-Clause | `node_modules/.pnpm/normalize-package-data@8.0.0/node_modules/normalize-package-data` |
533
+ | `normalize-path` | 3.0.0 | MIT | `node_modules/.pnpm/normalize-path@3.0.0/node_modules/normalize-path` |
534
+ | `normalize-url` | 9.0.1 | MIT | `node_modules/.pnpm/normalize-url@9.0.1/node_modules/normalize-url` |
535
+ | `npm` | 11.19.1 | Artistic-2.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm` |
536
+ | `npm-audit-report` | 7.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/npm-audit-report` |
537
+ | `npm-bundled` | 5.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/npm-bundled` |
538
+ | `npm-install-checks` | 8.0.0 | BSD-2-Clause | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/npm-install-checks` |
539
+ | `npm-normalize-package-bin` | 5.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/npm-normalize-package-bin` |
540
+ | `npm-package-arg` | 13.0.2 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/npm-package-arg` |
541
+ | `npm-packlist` | 10.0.4 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/npm-packlist` |
542
+ | `npm-pick-manifest` | 11.0.3 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/npm-pick-manifest` |
543
+ | `npm-profile` | 12.0.2 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/npm-profile` |
544
+ | `npm-registry-fetch` | 19.1.1 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/npm-registry-fetch` |
545
+ | `npm-run-path` | 5.3.0 | MIT | `node_modules/.pnpm/npm-run-path@5.3.0/node_modules/npm-run-path` |
546
+ | `npm-run-path` | 6.0.0 | MIT | `node_modules/.pnpm/npm-run-path@6.0.0/node_modules/npm-run-path` |
547
+ | `npm-user-validate` | 4.0.0 | BSD-2-Clause | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/npm-user-validate` |
548
+ | `object-assign` | 4.1.1 | MIT | `node_modules/.pnpm/object-assign@4.1.1/node_modules/object-assign` |
549
+ | `obug` | 2.2.1 | MIT | `node_modules/.pnpm/obug@2.2.1/node_modules/obug` |
550
+ | `onetime` | 6.0.0 | MIT | `node_modules/.pnpm/onetime@6.0.0/node_modules/onetime` |
551
+ | `onetime` | 7.0.0 | MIT | `node_modules/.pnpm/onetime@7.0.0/node_modules/onetime` |
552
+ | `optionator` | 0.9.4 | MIT | `node_modules/.pnpm/optionator@0.9.4/node_modules/optionator` |
553
+ | `p-each-series` | 3.0.0 | MIT | `node_modules/.pnpm/p-each-series@3.0.0/node_modules/p-each-series` |
554
+ | `p-event` | 6.0.1 | MIT | `node_modules/.pnpm/p-event@6.0.1/node_modules/p-event` |
555
+ | `p-filter` | 4.1.0 | MIT | `node_modules/.pnpm/p-filter@4.1.0/node_modules/p-filter` |
556
+ | `p-limit` | 1.3.0 | MIT | `node_modules/.pnpm/p-limit@1.3.0/node_modules/p-limit` |
557
+ | `p-limit` | 3.1.0 | MIT | `node_modules/.pnpm/p-limit@3.1.0/node_modules/p-limit` |
558
+ | `p-limit` | 4.0.0 | MIT | `node_modules/.pnpm/p-limit@4.0.0/node_modules/p-limit` |
559
+ | `p-locate` | 2.0.0 | MIT | `node_modules/.pnpm/p-locate@2.0.0/node_modules/p-locate` |
560
+ | `p-locate` | 5.0.0 | MIT | `node_modules/.pnpm/p-locate@5.0.0/node_modules/p-locate` |
561
+ | `p-locate` | 6.0.0 | MIT | `node_modules/.pnpm/p-locate@6.0.0/node_modules/p-locate` |
562
+ | `p-map` | 7.0.4 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/p-map` |
563
+ | `p-map` | 7.0.7 | MIT | `node_modules/.pnpm/p-map@7.0.7/node_modules/p-map` |
564
+ | `p-reduce` | 3.0.0 | MIT | `node_modules/.pnpm/p-reduce@3.0.0/node_modules/p-reduce` |
565
+ | `p-timeout` | 6.1.4 | MIT | `node_modules/.pnpm/p-timeout@6.1.4/node_modules/p-timeout` |
566
+ | `p-try` | 1.0.0 | MIT | `node_modules/.pnpm/p-try@1.0.0/node_modules/p-try` |
567
+ | `pacote` | 21.5.1 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/pacote` |
568
+ | `parent-module` | 1.0.1 | MIT | `node_modules/.pnpm/parent-module@1.0.1/node_modules/parent-module` |
569
+ | `parse-conflict-json` | 5.0.1 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/parse-conflict-json` |
570
+ | `parse-entities` | 4.0.2 | MIT | `node_modules/.pnpm/parse-entities@4.0.2/node_modules/parse-entities` |
571
+ | `parse-json` | 4.0.0 | MIT | `node_modules/.pnpm/parse-json@4.0.0/node_modules/parse-json` |
572
+ | `parse-json` | 5.2.0 | MIT | `node_modules/.pnpm/parse-json@5.2.0/node_modules/parse-json` |
573
+ | `parse-json` | 8.3.0 | MIT | `node_modules/.pnpm/parse-json@8.3.0/node_modules/parse-json` |
574
+ | `parse-ms` | 4.0.0 | MIT | `node_modules/.pnpm/parse-ms@4.0.0/node_modules/parse-ms` |
575
+ | `parse5` | 5.1.1 | MIT | `node_modules/.pnpm/parse5@5.1.1/node_modules/parse5` |
576
+ | `parse5` | 6.0.1 | MIT | `node_modules/.pnpm/parse5@6.0.1/node_modules/parse5` |
577
+ | `parse5-htmlparser2-tree-adapter` | 6.0.1 | MIT | `node_modules/.pnpm/parse5-htmlparser2-tree-adapter@6.0.1/node_modules/parse5-htmlparser2-tree-adapter` |
578
+ | `path-exists` | 3.0.0 | MIT | `node_modules/.pnpm/path-exists@3.0.0/node_modules/path-exists` |
579
+ | `path-exists` | 4.0.0 | MIT | `node_modules/.pnpm/path-exists@4.0.0/node_modules/path-exists` |
580
+ | `path-exists` | 5.0.0 | MIT | `node_modules/.pnpm/path-exists@5.0.0/node_modules/path-exists` |
581
+ | `path-key` | 3.1.1 | MIT | `node_modules/.pnpm/path-key@3.1.1/node_modules/path-key` |
582
+ | `path-key` | 4.0.0 | MIT | `node_modules/.pnpm/path-key@4.0.0/node_modules/path-key` |
583
+ | `path-scurry` | 2.0.2 | BlueOak-1.0.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/path-scurry` |
584
+ | `path-type` | 4.0.0 | MIT | `node_modules/.pnpm/path-type@4.0.0/node_modules/path-type` |
585
+ | `pathe` | 2.0.3 | MIT | `node_modules/.pnpm/pathe@2.0.3/node_modules/pathe` |
586
+ | `picocolors` | 1.1.1 | ISC | `node_modules/.pnpm/picocolors@1.1.1/node_modules/picocolors` |
587
+ | `picomatch` | 2.3.2 | MIT | `node_modules/.pnpm/picomatch@2.3.2/node_modules/picomatch` |
588
+ | `picomatch` | 4.0.4 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/tinyglobby/node_modules/picomatch` |
589
+ | `picomatch` | 4.0.7 | MIT | `node_modules/.pnpm/picomatch@4.0.7/node_modules/picomatch` |
590
+ | `pify` | 3.0.0 | MIT | `node_modules/.pnpm/pify@3.0.0/node_modules/pify` |
591
+ | `pkg-conf` | 2.1.0 | MIT | `node_modules/.pnpm/pkg-conf@2.1.0/node_modules/pkg-conf` |
592
+ | `plimit-lit` | 1.6.1 | MIT | `node_modules/.pnpm/plimit-lit@1.6.1/node_modules/plimit-lit` |
593
+ | `postcss` | 8.5.28 | MIT | `node_modules/.pnpm/postcss@8.5.28/node_modules/postcss` |
594
+ | `postcss-selector-parser` | 7.1.4 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/postcss-selector-parser` |
595
+ | `prelude-ls` | 1.2.1 | MIT | `node_modules/.pnpm/prelude-ls@1.2.1/node_modules/prelude-ls` |
596
+ | `prettier` | 3.9.6 | MIT | `node_modules/.pnpm/prettier@3.9.6/node_modules/prettier` |
597
+ | `prettier-linter-helpers` | 1.0.1 | MIT | `node_modules/.pnpm/prettier-linter-helpers@1.0.1/node_modules/prettier-linter-helpers` |
598
+ | `pretty-ms` | 9.3.1 | MIT | `node_modules/.pnpm/pretty-ms@9.3.1/node_modules/pretty-ms` |
599
+ | `proc-log` | 6.1.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/proc-log` |
600
+ | `process-nextick-args` | 2.0.1 | MIT | `node_modules/.pnpm/process-nextick-args@2.0.1/node_modules/process-nextick-args` |
601
+ | `proggy` | 4.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/proggy` |
602
+ | `promise-all-reject-late` | 1.0.1 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/promise-all-reject-late` |
603
+ | `promise-call-limit` | 3.0.2 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/promise-call-limit` |
604
+ | `promzard` | 3.0.1 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/promzard` |
605
+ | `proto-list` | 1.2.4 | ISC | `node_modules/.pnpm/proto-list@1.2.4/node_modules/proto-list` |
606
+ | `proxy-agent-negotiate` | 1.1.0 | MIT | `node_modules/.pnpm/proxy-agent-negotiate@1.1.0/node_modules/proxy-agent-negotiate` |
607
+ | `punycode` | 2.3.1 | MIT | `node_modules/.pnpm/punycode@2.3.1/node_modules/punycode` |
608
+ | `punycode.js` | 2.3.1 | MIT | `node_modules/.pnpm/punycode.js@2.3.1/node_modules/punycode.js` |
609
+ | `qrcode-terminal` | 0.12.0 | Apache 2.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/qrcode-terminal` |
610
+ | `queue-lit` | 1.5.2 | MIT | `node_modules/.pnpm/queue-lit@1.5.2/node_modules/queue-lit` |
611
+ | `queue-microtask` | 1.2.3 | MIT | `node_modules/.pnpm/queue-microtask@1.2.3/node_modules/queue-microtask` |
612
+ | `rc` | 1.2.8 | (BSD-2-Clause OR MIT OR Apache-2.0) | `node_modules/.pnpm/rc@1.2.8/node_modules/rc` |
613
+ | `read` | 5.0.1 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/read` |
614
+ | `read-cmd-shim` | 6.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/read-cmd-shim` |
615
+ | `read-package-up` | 11.0.0 | MIT | `node_modules/.pnpm/read-package-up@11.0.0/node_modules/read-package-up` |
616
+ | `read-package-up` | 12.0.0 | MIT | `node_modules/.pnpm/read-package-up@12.0.0/node_modules/read-package-up` |
617
+ | `read-pkg` | 10.1.0 | MIT | `node_modules/.pnpm/read-pkg@10.1.0/node_modules/read-pkg` |
618
+ | `read-pkg` | 9.0.1 | MIT | `node_modules/.pnpm/read-pkg@9.0.1/node_modules/read-pkg` |
619
+ | `readable-stream` | 2.3.8 | MIT | `node_modules/.pnpm/readable-stream@2.3.8/node_modules/readable-stream` |
620
+ | `readdirp` | 3.6.0 | MIT | `node_modules/.pnpm/readdirp@3.6.0/node_modules/readdirp` |
621
+ | `registry-auth-token` | 5.1.1 | MIT | `node_modules/.pnpm/registry-auth-token@5.1.1/node_modules/registry-auth-token` |
622
+ | `require-directory` | 2.1.1 | MIT | `node_modules/.pnpm/require-directory@2.1.1/node_modules/require-directory` |
623
+ | `require-from-string` | 2.0.2 | MIT | `node_modules/.pnpm/require-from-string@2.0.2/node_modules/require-from-string` |
624
+ | `requireindex` | 1.2.0 | MIT | `node_modules/.pnpm/requireindex@1.2.0/node_modules/requireindex` |
625
+ | `resolve-from` | 4.0.0 | MIT | `node_modules/.pnpm/resolve-from@4.0.0/node_modules/resolve-from` |
626
+ | `resolve-from` | 5.0.0 | MIT | `node_modules/.pnpm/resolve-from@5.0.0/node_modules/resolve-from` |
627
+ | `resolve-pkg-maps` | 1.0.0 | MIT | `node_modules/.pnpm/resolve-pkg-maps@1.0.0/node_modules/resolve-pkg-maps` |
628
+ | `restore-cursor` | 5.1.0 | MIT | `node_modules/.pnpm/restore-cursor@5.1.0/node_modules/restore-cursor` |
629
+ | `reusify` | 1.1.0 | MIT | `node_modules/.pnpm/reusify@1.1.0/node_modules/reusify` |
630
+ | `rfdc` | 1.4.1 | MIT | `node_modules/.pnpm/rfdc@1.4.1/node_modules/rfdc` |
631
+ | `rollup` | 4.63.1 | MIT | `node_modules/.pnpm/rollup@4.63.1/node_modules/rollup` |
632
+ | `run-parallel` | 1.2.0 | MIT | `node_modules/.pnpm/run-parallel@1.2.0/node_modules/run-parallel` |
633
+ | `safe-buffer` | 5.1.2 | MIT | `node_modules/.pnpm/safe-buffer@5.1.2/node_modules/safe-buffer` |
634
+ | `safer-buffer` | 2.1.2 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/safer-buffer` |
635
+ | `semantic-release` | 25.0.9 | MIT | `node_modules/.pnpm/semantic-release@25.0.9_typescript@5.9.3/node_modules/semantic-release` |
636
+ | `semver` | 7.8.5 | ISC | `node_modules/.pnpm/semver@7.8.5/node_modules/semver` |
637
+ | `semver` | 7.8.5 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/semver` |
638
+ | `semver-regex` | 4.0.5 | MIT | `node_modules/.pnpm/semver-regex@4.0.5/node_modules/semver-regex` |
639
+ | `shebang-command` | 2.0.0 | MIT | `node_modules/.pnpm/shebang-command@2.0.0/node_modules/shebang-command` |
640
+ | `shebang-regex` | 3.0.0 | MIT | `node_modules/.pnpm/shebang-regex@3.0.0/node_modules/shebang-regex` |
641
+ | `siginfo` | 2.0.0 | ISC | `node_modules/.pnpm/siginfo@2.0.0/node_modules/siginfo` |
642
+ | `signal-exit` | 4.1.0 | ISC | `node_modules/.pnpm/signal-exit@4.1.0/node_modules/signal-exit` |
643
+ | `signal-exit` | 4.1.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/signal-exit` |
644
+ | `signale` | 1.4.0 | MIT | `node_modules/.pnpm/signale@1.4.0/node_modules/signale` |
645
+ | `sigstore` | 4.1.1 | Apache-2.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/sigstore` |
646
+ | `skin-tone` | 2.0.0 | MIT | `node_modules/.pnpm/skin-tone@2.0.0/node_modules/skin-tone` |
647
+ | `slash` | 3.0.0 | MIT | `node_modules/.pnpm/slash@3.0.0/node_modules/slash` |
648
+ | `slash` | 5.1.0 | MIT | `node_modules/.pnpm/slash@5.1.0/node_modules/slash` |
649
+ | `slice-ansi` | 7.1.2 | MIT | `node_modules/.pnpm/slice-ansi@7.1.2/node_modules/slice-ansi` |
650
+ | `slice-ansi` | 8.0.0 | MIT | `node_modules/.pnpm/slice-ansi@8.0.0/node_modules/slice-ansi` |
651
+ | `smart-buffer` | 4.2.0 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/smart-buffer` |
652
+ | `smol-toml` | 1.8.0 | BSD-3-Clause | `node_modules/.pnpm/smol-toml@1.8.0/node_modules/smol-toml` |
653
+ | `socks` | 2.8.9 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/socks` |
654
+ | `socks-proxy-agent` | 8.0.5 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/socks-proxy-agent` |
655
+ | `source-map` | 0.6.1 | BSD-3-Clause | `node_modules/.pnpm/source-map@0.6.1/node_modules/source-map` |
656
+ | `source-map-js` | 1.2.1 | BSD-3-Clause | `node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js` |
657
+ | `spawn-error-forwarder` | 1.0.0 | MIT | `node_modules/.pnpm/spawn-error-forwarder@1.0.0/node_modules/spawn-error-forwarder` |
658
+ | `spdx-correct` | 3.2.0 | Apache-2.0 | `node_modules/.pnpm/spdx-correct@3.2.0/node_modules/spdx-correct` |
659
+ | `spdx-exceptions` | 2.5.0 | CC-BY-3.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/spdx-exceptions` |
660
+ | `spdx-exceptions` | 2.5.0 | CC-BY-3.0 | `node_modules/.pnpm/spdx-exceptions@2.5.0/node_modules/spdx-exceptions` |
661
+ | `spdx-expression-parse` | 3.0.1 | MIT | `node_modules/.pnpm/spdx-expression-parse@3.0.1/node_modules/spdx-expression-parse` |
662
+ | `spdx-expression-parse` | 4.0.0 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/spdx-expression-parse` |
663
+ | `spdx-license-ids` | 3.0.23 | CC0-1.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/spdx-license-ids` |
664
+ | `spdx-license-ids` | 3.0.23 | CC0-1.0 | `node_modules/.pnpm/spdx-license-ids@3.0.23/node_modules/spdx-license-ids` |
665
+ | `split2` | 1.0.0 | ISC | `node_modules/.pnpm/split2@1.0.0/node_modules/split2` |
666
+ | `split2` | 4.2.0 | ISC | `node_modules/.pnpm/split2@4.2.0/node_modules/split2` |
667
+ | `ssri` | 13.0.1 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/ssri` |
668
+ | `stackback` | 0.0.2 | MIT | `node_modules/.pnpm/stackback@0.0.2/node_modules/stackback` |
669
+ | `std-env` | 4.2.0 | MIT | `node_modules/.pnpm/std-env@4.2.0/node_modules/std-env` |
670
+ | `stream-combiner2` | 1.1.1 | MIT | `node_modules/.pnpm/stream-combiner2@1.1.1/node_modules/stream-combiner2` |
671
+ | `string_decoder` | 1.1.1 | MIT | `node_modules/.pnpm/string_decoder@1.1.1/node_modules/string_decoder` |
672
+ | `string-argv` | 0.3.2 | MIT | `node_modules/.pnpm/string-argv@0.3.2/node_modules/string-argv` |
673
+ | `string-width` | 4.2.3 | MIT | `node_modules/.pnpm/string-width@4.2.3/node_modules/string-width` |
674
+ | `string-width` | 7.2.0 | MIT | `node_modules/.pnpm/string-width@7.2.0/node_modules/string-width` |
675
+ | `string-width` | 8.2.1 | MIT | `node_modules/.pnpm/string-width@8.2.1/node_modules/string-width` |
676
+ | `string-width` | 8.2.2 | MIT | `node_modules/.pnpm/string-width@8.2.2/node_modules/string-width` |
677
+ | `strip-ansi` | 6.0.1 | MIT | `node_modules/.pnpm/strip-ansi@6.0.1/node_modules/strip-ansi` |
678
+ | `strip-ansi` | 7.2.0 | MIT | `node_modules/.pnpm/strip-ansi@7.2.0/node_modules/strip-ansi` |
679
+ | `strip-bom` | 3.0.0 | MIT | `node_modules/.pnpm/strip-bom@3.0.0/node_modules/strip-bom` |
680
+ | `strip-final-newline` | 3.0.0 | MIT | `node_modules/.pnpm/strip-final-newline@3.0.0/node_modules/strip-final-newline` |
681
+ | `strip-final-newline` | 4.0.0 | MIT | `node_modules/.pnpm/strip-final-newline@4.0.0/node_modules/strip-final-newline` |
682
+ | `strip-json-comments` | 2.0.1 | MIT | `node_modules/.pnpm/strip-json-comments@2.0.1/node_modules/strip-json-comments` |
683
+ | `strip-json-comments` | 3.1.1 | MIT | `node_modules/.pnpm/strip-json-comments@3.1.1/node_modules/strip-json-comments` |
684
+ | `super-regex` | 1.1.0 | MIT | `node_modules/.pnpm/super-regex@1.1.0/node_modules/super-regex` |
685
+ | `supports-color` | 10.2.2 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/supports-color` |
686
+ | `supports-color` | 5.5.0 | MIT | `node_modules/.pnpm/supports-color@5.5.0/node_modules/supports-color` |
687
+ | `supports-color` | 7.2.0 | MIT | `node_modules/.pnpm/supports-color@7.2.0/node_modules/supports-color` |
688
+ | `supports-hyperlinks` | 3.2.0 | MIT | `node_modules/.pnpm/supports-hyperlinks@3.2.0/node_modules/supports-hyperlinks` |
689
+ | `synckit` | 0.11.13 | MIT | `node_modules/.pnpm/synckit@0.11.13/node_modules/synckit` |
690
+ | `tagged-tag` | 1.0.0 | MIT | `node_modules/.pnpm/tagged-tag@1.0.0/node_modules/tagged-tag` |
691
+ | `tar` | 7.5.22 | BlueOak-1.0.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/tar` |
692
+ | `temp-dir` | 3.0.0 | MIT | `node_modules/.pnpm/temp-dir@3.0.0/node_modules/temp-dir` |
693
+ | `tempy` | 3.2.0 | MIT | `node_modules/.pnpm/tempy@3.2.0/node_modules/tempy` |
694
+ | `text-extensions` | 2.4.0 | MIT | `node_modules/.pnpm/text-extensions@2.4.0/node_modules/text-extensions` |
695
+ | `text-table` | 0.2.0 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/text-table` |
696
+ | `thenify` | 3.3.1 | MIT | `node_modules/.pnpm/thenify@3.3.1/node_modules/thenify` |
697
+ | `thenify-all` | 1.6.0 | MIT | `node_modules/.pnpm/thenify-all@1.6.0/node_modules/thenify-all` |
698
+ | `through` | 2.3.8 | MIT | `node_modules/.pnpm/through@2.3.8/node_modules/through` |
699
+ | `through2` | 2.0.5 | MIT | `node_modules/.pnpm/through2@2.0.5/node_modules/through2` |
700
+ | `time-span` | 5.1.0 | MIT | `node_modules/.pnpm/time-span@5.1.0/node_modules/time-span` |
701
+ | `tiny-relative-date` | 2.0.2 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/tiny-relative-date` |
702
+ | `tinybench` | 2.9.0 | MIT | `node_modules/.pnpm/tinybench@2.9.0/node_modules/tinybench` |
703
+ | `tinyexec` | 1.3.1 | MIT | `node_modules/.pnpm/tinyexec@1.3.1/node_modules/tinyexec` |
704
+ | `tinyglobby` | 0.2.17 | MIT | `node_modules/.pnpm/tinyglobby@0.2.17/node_modules/tinyglobby` |
705
+ | `tinyglobby` | 0.2.17 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/tinyglobby` |
706
+ | `tinyrainbow` | 3.1.1 | MIT | `node_modules/.pnpm/tinyrainbow@3.1.1/node_modules/tinyrainbow` |
707
+ | `to-regex-range` | 5.0.1 | MIT | `node_modules/.pnpm/to-regex-range@5.0.1/node_modules/to-regex-range` |
708
+ | `traverse` | 0.6.8 | MIT | `node_modules/.pnpm/traverse@0.6.8/node_modules/traverse` |
709
+ | `treeverse` | 3.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/treeverse` |
710
+ | `ts-api-utils` | 2.5.0 | MIT | `node_modules/.pnpm/ts-api-utils@2.5.0_typescript@5.9.3/node_modules/ts-api-utils` |
711
+ | `tsc-alias` | 1.9.4 | MIT | `node_modules/.pnpm/tsc-alias@1.9.4/node_modules/tsc-alias` |
712
+ | `tuf-js` | 4.1.0 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/tuf-js` |
713
+ | `tunnel` | 0.0.6 | MIT | `node_modules/.pnpm/tunnel@0.0.6/node_modules/tunnel` |
714
+ | `type-check` | 0.4.0 | MIT | `node_modules/.pnpm/type-check@0.4.0/node_modules/type-check` |
715
+ | `type-fest` | 1.4.0 | (MIT OR CC0-1.0) | `node_modules/.pnpm/type-fest@1.4.0/node_modules/type-fest` |
716
+ | `type-fest` | 2.19.0 | (MIT OR CC0-1.0) | `node_modules/.pnpm/type-fest@2.19.0/node_modules/type-fest` |
717
+ | `type-fest` | 4.41.0 | (MIT OR CC0-1.0) | `node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest` |
718
+ | `type-fest` | 5.9.0 | (MIT OR CC0-1.0) | `node_modules/.pnpm/type-fest@5.9.0/node_modules/type-fest` |
719
+ | `typedoc` | 0.28.20 | Apache-2.0 | `node_modules/.pnpm/typedoc@0.28.20_typescript@5.9.3/node_modules/typedoc` |
720
+ | `typedoc-plugin-markdown` | 4.13.0 | MIT | `node_modules/.pnpm/typedoc-plugin-markdown@4.13.0_typedoc@0.28.20_typescript@5.9.3_/node_modules/typedoc-plugin-markdown` |
721
+ | `typescript` | 5.9.3 | Apache-2.0 | `node_modules/.pnpm/typescript@5.9.3/node_modules/typescript` |
722
+ | `typescript-eslint` | 8.70.0 | MIT | `node_modules/.pnpm/typescript-eslint@8.70.0_eslint@9.39.5_jiti@2.6.1__typescript@5.9.3/node_modules/typescript-eslint` |
723
+ | `uc.micro` | 2.1.0 | MIT | `node_modules/.pnpm/uc.micro@2.1.0/node_modules/uc.micro` |
724
+ | `uglify-js` | 3.19.3 | BSD-2-Clause | `node_modules/.pnpm/uglify-js@3.19.3/node_modules/uglify-js` |
725
+ | `undici` | 6.28.0 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/undici` |
726
+ | `undici` | 6.28.1 | MIT | `node_modules/.pnpm/undici@6.28.1/node_modules/undici` |
727
+ | `undici` | 7.29.1 | MIT | `node_modules/.pnpm/undici@7.29.1/node_modules/undici` |
728
+ | `undici-types` | 6.21.0 | MIT | `node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types` |
729
+ | `undici-types` | 7.18.2 | MIT | `node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types` |
730
+ | `unicode-emoji-modifier-base` | 1.0.0 | MIT | `node_modules/.pnpm/unicode-emoji-modifier-base@1.0.0/node_modules/unicode-emoji-modifier-base` |
731
+ | `unicorn-magic` | 0.1.0 | MIT | `node_modules/.pnpm/unicorn-magic@0.1.0/node_modules/unicorn-magic` |
732
+ | `unicorn-magic` | 0.3.0 | MIT | `node_modules/.pnpm/unicorn-magic@0.3.0/node_modules/unicorn-magic` |
733
+ | `unicorn-magic` | 0.4.0 | MIT | `node_modules/.pnpm/unicorn-magic@0.4.0/node_modules/unicorn-magic` |
734
+ | `unique-string` | 3.0.0 | MIT | `node_modules/.pnpm/unique-string@3.0.0/node_modules/unique-string` |
735
+ | `universal-user-agent` | 7.0.3 | ISC | `node_modules/.pnpm/universal-user-agent@7.0.3/node_modules/universal-user-agent` |
736
+ | `universalify` | 2.0.1 | MIT | `node_modules/.pnpm/universalify@2.0.1/node_modules/universalify` |
737
+ | `uri-js` | 4.4.1 | BSD-2-Clause | `node_modules/.pnpm/uri-js@4.4.1/node_modules/uri-js` |
738
+ | `url-join` | 5.0.0 | MIT | `node_modules/.pnpm/url-join@5.0.0/node_modules/url-join` |
739
+ | `util-deprecate` | 1.0.2 | MIT | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/util-deprecate` |
740
+ | `util-deprecate` | 1.0.2 | MIT | `node_modules/.pnpm/util-deprecate@1.0.2/node_modules/util-deprecate` |
741
+ | `validate-npm-package-license` | 3.0.4 | Apache-2.0 | `node_modules/.pnpm/validate-npm-package-license@3.0.4/node_modules/validate-npm-package-license` |
742
+ | `validate-npm-package-name` | 7.0.2 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/validate-npm-package-name` |
743
+ | `vite` | 6.4.3 | MIT | `node_modules/.pnpm/vite@6.4.3_@types+node@24.13.5_jiti@2.6.1_yaml@2.9.0/node_modules/vite` |
744
+ | `vitest` | 4.1.11 | MIT | `node_modules/.pnpm/vitest@4.1.11_@types+node@24.13.5_@vitest+coverage-v8@4.1.11_vite@6.4.3_@types+node@24.13.5_jiti@2.6.1_yaml@2.9.0_/node_modules/vitest` |
745
+ | `walk-up-path` | 4.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/walk-up-path` |
746
+ | `web-worker` | 1.5.0 | Apache-2.0 | `node_modules/.pnpm/web-worker@1.5.0/node_modules/web-worker` |
747
+ | `which` | 2.0.2 | ISC | `node_modules/.pnpm/which@2.0.2/node_modules/which` |
748
+ | `which` | 6.0.1 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/which` |
749
+ | `why-is-node-running` | 2.3.0 | MIT | `node_modules/.pnpm/why-is-node-running@2.3.0/node_modules/why-is-node-running` |
750
+ | `word-wrap` | 1.2.5 | MIT | `node_modules/.pnpm/word-wrap@1.2.5/node_modules/word-wrap` |
751
+ | `wordwrap` | 1.0.0 | MIT | `node_modules/.pnpm/wordwrap@1.0.0/node_modules/wordwrap` |
752
+ | `wrap-ansi` | 7.0.0 | MIT | `node_modules/.pnpm/wrap-ansi@7.0.0/node_modules/wrap-ansi` |
753
+ | `wrap-ansi` | 9.0.2 | MIT | `node_modules/.pnpm/wrap-ansi@9.0.2/node_modules/wrap-ansi` |
754
+ | `write-file-atomic` | 7.0.1 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/write-file-atomic` |
755
+ | `xtend` | 4.0.2 | MIT | `node_modules/.pnpm/xtend@4.0.2/node_modules/xtend` |
756
+ | `y18n` | 5.0.8 | ISC | `node_modules/.pnpm/y18n@5.0.8/node_modules/y18n` |
757
+ | `yallist` | 4.0.0 | ISC | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/minipass-pipeline/node_modules/yallist` |
758
+ | `yallist` | 5.0.0 | BlueOak-1.0.0 | `node_modules/.pnpm/npm@11.19.1/node_modules/npm/node_modules/yallist` |
759
+ | `yaml` | 2.9.0 | ISC | `node_modules/.pnpm/yaml@2.9.0/node_modules/yaml` |
760
+ | `yargs` | 16.2.2 | MIT | `node_modules/.pnpm/yargs@16.2.2/node_modules/yargs` |
761
+ | `yargs` | 17.7.3 | MIT | `node_modules/.pnpm/yargs@17.7.3/node_modules/yargs` |
762
+ | `yargs` | 18.1.0 | MIT | `node_modules/.pnpm/yargs@18.1.0/node_modules/yargs` |
763
+ | `yargs-parser` | 20.2.9 | ISC | `node_modules/.pnpm/yargs-parser@20.2.9/node_modules/yargs-parser` |
764
+ | `yargs-parser` | 21.1.1 | ISC | `node_modules/.pnpm/yargs-parser@21.1.1/node_modules/yargs-parser` |
765
+ | `yargs-parser` | 22.0.0 | ISC | `node_modules/.pnpm/yargs-parser@22.0.0/node_modules/yargs-parser` |
766
+ | `yocto-queue` | 0.1.0 | MIT | `node_modules/.pnpm/yocto-queue@0.1.0/node_modules/yocto-queue` |
767
+ | `yocto-queue` | 1.2.2 | MIT | `node_modules/.pnpm/yocto-queue@1.2.2/node_modules/yocto-queue` |
768
+ | `yoctocolors` | 2.2.0 | MIT | `node_modules/.pnpm/yoctocolors@2.2.0/node_modules/yoctocolors` |