loopwind 0.20.2 → 0.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_dsgn/templates/dashed-stroke-test/template.tsx +73 -0
- package/_dsgn/templates/path-follow-test/template.tsx +176 -0
- package/_dsgn/templates/path-simple-test/template.tsx +98 -0
- package/_dsgn/templates/stroke-dash-test/meta.json +12 -0
- package/_dsgn/templates/stroke-dash-test/template.tsx +53 -0
- package/dist/lib/path-helpers.d.ts +71 -0
- package/dist/lib/path-helpers.d.ts.map +1 -0
- package/dist/lib/path-helpers.js +118 -0
- package/dist/lib/path-helpers.js.map +1 -0
- package/dist/lib/renderer.d.ts.map +1 -1
- package/dist/lib/renderer.js +59 -4
- package/dist/lib/renderer.js.map +1 -1
- package/dist/lib/tailwind.d.ts.map +1 -1
- package/dist/lib/tailwind.js +191 -6
- package/dist/lib/tailwind.js.map +1 -1
- package/dist/lib/template-validator.d.ts.map +1 -1
- package/dist/lib/template-validator.js +19 -5
- package/dist/lib/template-validator.js.map +1 -1
- package/dist/lib/text-helpers.d.ts +52 -0
- package/dist/lib/text-helpers.d.ts.map +1 -0
- package/dist/lib/text-helpers.js +74 -0
- package/dist/lib/text-helpers.js.map +1 -0
- package/dist/lib/utils.d.ts +0 -4
- package/dist/lib/utils.d.ts.map +1 -1
- package/dist/lib/utils.js +33 -0
- package/dist/lib/utils.js.map +1 -1
- package/dist/types/template.d.ts +121 -0
- package/dist/types/template.d.ts.map +1 -1
- package/package.json +1 -1
- package/website/.astro/content.db +0 -0
- package/website/.astro/integrations/astro_db/db.d.ts +15 -0
- package/website/astro.config.mjs +2 -1
- package/website/package-lock.json +1090 -122
- package/website/package.json +14 -0
|
@@ -11,8 +11,22 @@
|
|
|
11
11
|
"@astrojs/check": "^0.9.3",
|
|
12
12
|
"@astrojs/cloudflare": "^11.1.0",
|
|
13
13
|
"@astrojs/mdx": "^3.1.7",
|
|
14
|
+
"@astrojs/react": "^4.4.2",
|
|
15
|
+
"@babel/runtime": "^7.28.4",
|
|
16
|
+
"@codemirror/autocomplete": "^6.20.0",
|
|
17
|
+
"@codemirror/commands": "^6.10.0",
|
|
18
|
+
"@codemirror/lang-javascript": "^6.2.4",
|
|
19
|
+
"@codemirror/lang-json": "^6.0.2",
|
|
20
|
+
"@codemirror/state": "^6.5.2",
|
|
21
|
+
"@codemirror/theme-one-dark": "^6.1.3",
|
|
22
|
+
"@codemirror/view": "^6.38.8",
|
|
23
|
+
"@uiw/codemirror-theme-github": "^4.25.3",
|
|
14
24
|
"astro": "^4.15.11",
|
|
25
|
+
"codemirror": "^6.0.2",
|
|
15
26
|
"loopwind": "file:..",
|
|
27
|
+
"prettier": "^3.6.2",
|
|
28
|
+
"react": "^19.2.0",
|
|
29
|
+
"react-dom": "^19.2.0",
|
|
16
30
|
"typescript": "^5.6.2"
|
|
17
31
|
},
|
|
18
32
|
"devDependencies": {
|
|
@@ -23,7 +37,7 @@
|
|
|
23
37
|
},
|
|
24
38
|
"..": {
|
|
25
39
|
"name": "loopwind",
|
|
26
|
-
"version": "0.20.
|
|
40
|
+
"version": "0.20.2",
|
|
27
41
|
"hasInstallScript": true,
|
|
28
42
|
"license": "MIT",
|
|
29
43
|
"dependencies": {
|
|
@@ -217,6 +231,157 @@
|
|
|
217
231
|
"node": "^18.17.1 || ^20.3.0 || >=21.0.0"
|
|
218
232
|
}
|
|
219
233
|
},
|
|
234
|
+
"node_modules/@astrojs/react": {
|
|
235
|
+
"version": "4.4.2",
|
|
236
|
+
"resolved": "https://registry.npmjs.org/@astrojs/react/-/react-4.4.2.tgz",
|
|
237
|
+
"integrity": "sha512-1tl95bpGfuaDMDn8O3x/5Dxii1HPvzjvpL2YTuqOOrQehs60I2DKiDgh1jrKc7G8lv+LQT5H15V6QONQ+9waeQ==",
|
|
238
|
+
"license": "MIT",
|
|
239
|
+
"dependencies": {
|
|
240
|
+
"@vitejs/plugin-react": "^4.7.0",
|
|
241
|
+
"ultrahtml": "^1.6.0",
|
|
242
|
+
"vite": "^6.4.1"
|
|
243
|
+
},
|
|
244
|
+
"engines": {
|
|
245
|
+
"node": "18.20.8 || ^20.3.0 || >=22.0.0"
|
|
246
|
+
},
|
|
247
|
+
"peerDependencies": {
|
|
248
|
+
"@types/react": "^17.0.50 || ^18.0.21 || ^19.0.0",
|
|
249
|
+
"@types/react-dom": "^17.0.17 || ^18.0.6 || ^19.0.0",
|
|
250
|
+
"react": "^17.0.2 || ^18.0.0 || ^19.0.0",
|
|
251
|
+
"react-dom": "^17.0.2 || ^18.0.0 || ^19.0.0"
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
"node_modules/@astrojs/react/node_modules/@esbuild/darwin-arm64": {
|
|
255
|
+
"version": "0.25.12",
|
|
256
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz",
|
|
257
|
+
"integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==",
|
|
258
|
+
"cpu": [
|
|
259
|
+
"arm64"
|
|
260
|
+
],
|
|
261
|
+
"license": "MIT",
|
|
262
|
+
"optional": true,
|
|
263
|
+
"os": [
|
|
264
|
+
"darwin"
|
|
265
|
+
],
|
|
266
|
+
"engines": {
|
|
267
|
+
"node": ">=18"
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
"node_modules/@astrojs/react/node_modules/esbuild": {
|
|
271
|
+
"version": "0.25.12",
|
|
272
|
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.12.tgz",
|
|
273
|
+
"integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==",
|
|
274
|
+
"hasInstallScript": true,
|
|
275
|
+
"license": "MIT",
|
|
276
|
+
"bin": {
|
|
277
|
+
"esbuild": "bin/esbuild"
|
|
278
|
+
},
|
|
279
|
+
"engines": {
|
|
280
|
+
"node": ">=18"
|
|
281
|
+
},
|
|
282
|
+
"optionalDependencies": {
|
|
283
|
+
"@esbuild/aix-ppc64": "0.25.12",
|
|
284
|
+
"@esbuild/android-arm": "0.25.12",
|
|
285
|
+
"@esbuild/android-arm64": "0.25.12",
|
|
286
|
+
"@esbuild/android-x64": "0.25.12",
|
|
287
|
+
"@esbuild/darwin-arm64": "0.25.12",
|
|
288
|
+
"@esbuild/darwin-x64": "0.25.12",
|
|
289
|
+
"@esbuild/freebsd-arm64": "0.25.12",
|
|
290
|
+
"@esbuild/freebsd-x64": "0.25.12",
|
|
291
|
+
"@esbuild/linux-arm": "0.25.12",
|
|
292
|
+
"@esbuild/linux-arm64": "0.25.12",
|
|
293
|
+
"@esbuild/linux-ia32": "0.25.12",
|
|
294
|
+
"@esbuild/linux-loong64": "0.25.12",
|
|
295
|
+
"@esbuild/linux-mips64el": "0.25.12",
|
|
296
|
+
"@esbuild/linux-ppc64": "0.25.12",
|
|
297
|
+
"@esbuild/linux-riscv64": "0.25.12",
|
|
298
|
+
"@esbuild/linux-s390x": "0.25.12",
|
|
299
|
+
"@esbuild/linux-x64": "0.25.12",
|
|
300
|
+
"@esbuild/netbsd-arm64": "0.25.12",
|
|
301
|
+
"@esbuild/netbsd-x64": "0.25.12",
|
|
302
|
+
"@esbuild/openbsd-arm64": "0.25.12",
|
|
303
|
+
"@esbuild/openbsd-x64": "0.25.12",
|
|
304
|
+
"@esbuild/openharmony-arm64": "0.25.12",
|
|
305
|
+
"@esbuild/sunos-x64": "0.25.12",
|
|
306
|
+
"@esbuild/win32-arm64": "0.25.12",
|
|
307
|
+
"@esbuild/win32-ia32": "0.25.12",
|
|
308
|
+
"@esbuild/win32-x64": "0.25.12"
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
"node_modules/@astrojs/react/node_modules/vite": {
|
|
312
|
+
"version": "6.4.1",
|
|
313
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-6.4.1.tgz",
|
|
314
|
+
"integrity": "sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==",
|
|
315
|
+
"license": "MIT",
|
|
316
|
+
"dependencies": {
|
|
317
|
+
"esbuild": "^0.25.0",
|
|
318
|
+
"fdir": "^6.4.4",
|
|
319
|
+
"picomatch": "^4.0.2",
|
|
320
|
+
"postcss": "^8.5.3",
|
|
321
|
+
"rollup": "^4.34.9",
|
|
322
|
+
"tinyglobby": "^0.2.13"
|
|
323
|
+
},
|
|
324
|
+
"bin": {
|
|
325
|
+
"vite": "bin/vite.js"
|
|
326
|
+
},
|
|
327
|
+
"engines": {
|
|
328
|
+
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
|
|
329
|
+
},
|
|
330
|
+
"funding": {
|
|
331
|
+
"url": "https://github.com/vitejs/vite?sponsor=1"
|
|
332
|
+
},
|
|
333
|
+
"optionalDependencies": {
|
|
334
|
+
"fsevents": "~2.3.3"
|
|
335
|
+
},
|
|
336
|
+
"peerDependencies": {
|
|
337
|
+
"@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
|
|
338
|
+
"jiti": ">=1.21.0",
|
|
339
|
+
"less": "*",
|
|
340
|
+
"lightningcss": "^1.21.0",
|
|
341
|
+
"sass": "*",
|
|
342
|
+
"sass-embedded": "*",
|
|
343
|
+
"stylus": "*",
|
|
344
|
+
"sugarss": "*",
|
|
345
|
+
"terser": "^5.16.0",
|
|
346
|
+
"tsx": "^4.8.1",
|
|
347
|
+
"yaml": "^2.4.2"
|
|
348
|
+
},
|
|
349
|
+
"peerDependenciesMeta": {
|
|
350
|
+
"@types/node": {
|
|
351
|
+
"optional": true
|
|
352
|
+
},
|
|
353
|
+
"jiti": {
|
|
354
|
+
"optional": true
|
|
355
|
+
},
|
|
356
|
+
"less": {
|
|
357
|
+
"optional": true
|
|
358
|
+
},
|
|
359
|
+
"lightningcss": {
|
|
360
|
+
"optional": true
|
|
361
|
+
},
|
|
362
|
+
"sass": {
|
|
363
|
+
"optional": true
|
|
364
|
+
},
|
|
365
|
+
"sass-embedded": {
|
|
366
|
+
"optional": true
|
|
367
|
+
},
|
|
368
|
+
"stylus": {
|
|
369
|
+
"optional": true
|
|
370
|
+
},
|
|
371
|
+
"sugarss": {
|
|
372
|
+
"optional": true
|
|
373
|
+
},
|
|
374
|
+
"terser": {
|
|
375
|
+
"optional": true
|
|
376
|
+
},
|
|
377
|
+
"tsx": {
|
|
378
|
+
"optional": true
|
|
379
|
+
},
|
|
380
|
+
"yaml": {
|
|
381
|
+
"optional": true
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
},
|
|
220
385
|
"node_modules/@astrojs/telemetry": {
|
|
221
386
|
"version": "3.1.0",
|
|
222
387
|
"license": "MIT",
|
|
@@ -460,6 +625,45 @@
|
|
|
460
625
|
"@babel/core": "^7.0.0-0"
|
|
461
626
|
}
|
|
462
627
|
},
|
|
628
|
+
"node_modules/@babel/plugin-transform-react-jsx-self": {
|
|
629
|
+
"version": "7.27.1",
|
|
630
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
|
|
631
|
+
"integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
|
|
632
|
+
"license": "MIT",
|
|
633
|
+
"dependencies": {
|
|
634
|
+
"@babel/helper-plugin-utils": "^7.27.1"
|
|
635
|
+
},
|
|
636
|
+
"engines": {
|
|
637
|
+
"node": ">=6.9.0"
|
|
638
|
+
},
|
|
639
|
+
"peerDependencies": {
|
|
640
|
+
"@babel/core": "^7.0.0-0"
|
|
641
|
+
}
|
|
642
|
+
},
|
|
643
|
+
"node_modules/@babel/plugin-transform-react-jsx-source": {
|
|
644
|
+
"version": "7.27.1",
|
|
645
|
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
|
|
646
|
+
"integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
|
|
647
|
+
"license": "MIT",
|
|
648
|
+
"dependencies": {
|
|
649
|
+
"@babel/helper-plugin-utils": "^7.27.1"
|
|
650
|
+
},
|
|
651
|
+
"engines": {
|
|
652
|
+
"node": ">=6.9.0"
|
|
653
|
+
},
|
|
654
|
+
"peerDependencies": {
|
|
655
|
+
"@babel/core": "^7.0.0-0"
|
|
656
|
+
}
|
|
657
|
+
},
|
|
658
|
+
"node_modules/@babel/runtime": {
|
|
659
|
+
"version": "7.28.4",
|
|
660
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz",
|
|
661
|
+
"integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==",
|
|
662
|
+
"license": "MIT",
|
|
663
|
+
"engines": {
|
|
664
|
+
"node": ">=6.9.0"
|
|
665
|
+
}
|
|
666
|
+
},
|
|
463
667
|
"node_modules/@babel/template": {
|
|
464
668
|
"version": "7.27.2",
|
|
465
669
|
"license": "MIT",
|
|
@@ -581,157 +785,675 @@
|
|
|
581
785
|
"cpu": [
|
|
582
786
|
"arm64"
|
|
583
787
|
],
|
|
584
|
-
"license": "Apache-2.0",
|
|
788
|
+
"license": "Apache-2.0",
|
|
789
|
+
"optional": true,
|
|
790
|
+
"os": [
|
|
791
|
+
"linux"
|
|
792
|
+
],
|
|
793
|
+
"engines": {
|
|
794
|
+
"node": ">=16"
|
|
795
|
+
}
|
|
796
|
+
},
|
|
797
|
+
"node_modules/@cloudflare/workerd-windows-64": {
|
|
798
|
+
"version": "1.20250718.0",
|
|
799
|
+
"resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20250718.0.tgz",
|
|
800
|
+
"integrity": "sha512-dY16RXKffmugnc67LTbyjdDHZn5NoTF1yHEf2fN4+OaOnoGSp3N1x77QubTDwqZ9zECWxgQfDLjddcH8dWeFhg==",
|
|
801
|
+
"cpu": [
|
|
802
|
+
"x64"
|
|
803
|
+
],
|
|
804
|
+
"license": "Apache-2.0",
|
|
805
|
+
"optional": true,
|
|
806
|
+
"os": [
|
|
807
|
+
"win32"
|
|
808
|
+
],
|
|
809
|
+
"engines": {
|
|
810
|
+
"node": ">=16"
|
|
811
|
+
}
|
|
812
|
+
},
|
|
813
|
+
"node_modules/@cloudflare/workers-types": {
|
|
814
|
+
"version": "4.20251120.0",
|
|
815
|
+
"resolved": "https://registry.npmjs.org/@cloudflare/workers-types/-/workers-types-4.20251120.0.tgz",
|
|
816
|
+
"integrity": "sha512-/uy0Oleot60ZS037I2mxR9NEft6eQYdknKBnM76W91I+7BKznzXKj2MtXMfSXTLsxyP+6MluYRNPrRCQDlk8kw==",
|
|
817
|
+
"license": "MIT OR Apache-2.0"
|
|
818
|
+
},
|
|
819
|
+
"node_modules/@codemirror/autocomplete": {
|
|
820
|
+
"version": "6.20.0",
|
|
821
|
+
"resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.20.0.tgz",
|
|
822
|
+
"integrity": "sha512-bOwvTOIJcG5FVo5gUUupiwYh8MioPLQ4UcqbcRf7UQ98X90tCa9E1kZ3Z7tqwpZxYyOvh1YTYbmZE9RTfTp5hg==",
|
|
823
|
+
"license": "MIT",
|
|
824
|
+
"dependencies": {
|
|
825
|
+
"@codemirror/language": "^6.0.0",
|
|
826
|
+
"@codemirror/state": "^6.0.0",
|
|
827
|
+
"@codemirror/view": "^6.17.0",
|
|
828
|
+
"@lezer/common": "^1.0.0"
|
|
829
|
+
}
|
|
830
|
+
},
|
|
831
|
+
"node_modules/@codemirror/commands": {
|
|
832
|
+
"version": "6.10.0",
|
|
833
|
+
"resolved": "https://registry.npmjs.org/@codemirror/commands/-/commands-6.10.0.tgz",
|
|
834
|
+
"integrity": "sha512-2xUIc5mHXQzT16JnyOFkh8PvfeXuIut3pslWGfsGOhxP/lpgRm9HOl/mpzLErgt5mXDovqA0d11P21gofRLb9w==",
|
|
835
|
+
"license": "MIT",
|
|
836
|
+
"dependencies": {
|
|
837
|
+
"@codemirror/language": "^6.0.0",
|
|
838
|
+
"@codemirror/state": "^6.4.0",
|
|
839
|
+
"@codemirror/view": "^6.27.0",
|
|
840
|
+
"@lezer/common": "^1.1.0"
|
|
841
|
+
}
|
|
842
|
+
},
|
|
843
|
+
"node_modules/@codemirror/lang-javascript": {
|
|
844
|
+
"version": "6.2.4",
|
|
845
|
+
"resolved": "https://registry.npmjs.org/@codemirror/lang-javascript/-/lang-javascript-6.2.4.tgz",
|
|
846
|
+
"integrity": "sha512-0WVmhp1QOqZ4Rt6GlVGwKJN3KW7Xh4H2q8ZZNGZaP6lRdxXJzmjm4FqvmOojVj6khWJHIb9sp7U/72W7xQgqAA==",
|
|
847
|
+
"license": "MIT",
|
|
848
|
+
"dependencies": {
|
|
849
|
+
"@codemirror/autocomplete": "^6.0.0",
|
|
850
|
+
"@codemirror/language": "^6.6.0",
|
|
851
|
+
"@codemirror/lint": "^6.0.0",
|
|
852
|
+
"@codemirror/state": "^6.0.0",
|
|
853
|
+
"@codemirror/view": "^6.17.0",
|
|
854
|
+
"@lezer/common": "^1.0.0",
|
|
855
|
+
"@lezer/javascript": "^1.0.0"
|
|
856
|
+
}
|
|
857
|
+
},
|
|
858
|
+
"node_modules/@codemirror/lang-json": {
|
|
859
|
+
"version": "6.0.2",
|
|
860
|
+
"resolved": "https://registry.npmjs.org/@codemirror/lang-json/-/lang-json-6.0.2.tgz",
|
|
861
|
+
"integrity": "sha512-x2OtO+AvwEHrEwR0FyyPtfDUiloG3rnVTSZV1W8UteaLL8/MajQd8DpvUb2YVzC+/T18aSDv0H9mu+xw0EStoQ==",
|
|
862
|
+
"license": "MIT",
|
|
863
|
+
"dependencies": {
|
|
864
|
+
"@codemirror/language": "^6.0.0",
|
|
865
|
+
"@lezer/json": "^1.0.0"
|
|
866
|
+
}
|
|
867
|
+
},
|
|
868
|
+
"node_modules/@codemirror/language": {
|
|
869
|
+
"version": "6.11.3",
|
|
870
|
+
"resolved": "https://registry.npmjs.org/@codemirror/language/-/language-6.11.3.tgz",
|
|
871
|
+
"integrity": "sha512-9HBM2XnwDj7fnu0551HkGdrUrrqmYq/WC5iv6nbY2WdicXdGbhR/gfbZOH73Aqj4351alY1+aoG9rCNfiwS1RA==",
|
|
872
|
+
"license": "MIT",
|
|
873
|
+
"dependencies": {
|
|
874
|
+
"@codemirror/state": "^6.0.0",
|
|
875
|
+
"@codemirror/view": "^6.23.0",
|
|
876
|
+
"@lezer/common": "^1.1.0",
|
|
877
|
+
"@lezer/highlight": "^1.0.0",
|
|
878
|
+
"@lezer/lr": "^1.0.0",
|
|
879
|
+
"style-mod": "^4.0.0"
|
|
880
|
+
}
|
|
881
|
+
},
|
|
882
|
+
"node_modules/@codemirror/lint": {
|
|
883
|
+
"version": "6.9.2",
|
|
884
|
+
"resolved": "https://registry.npmjs.org/@codemirror/lint/-/lint-6.9.2.tgz",
|
|
885
|
+
"integrity": "sha512-sv3DylBiIyi+xKwRCJAAsBZZZWo82shJ/RTMymLabAdtbkV5cSKwWDeCgtUq3v8flTaXS2y1kKkICuRYtUswyQ==",
|
|
886
|
+
"license": "MIT",
|
|
887
|
+
"dependencies": {
|
|
888
|
+
"@codemirror/state": "^6.0.0",
|
|
889
|
+
"@codemirror/view": "^6.35.0",
|
|
890
|
+
"crelt": "^1.0.5"
|
|
891
|
+
}
|
|
892
|
+
},
|
|
893
|
+
"node_modules/@codemirror/search": {
|
|
894
|
+
"version": "6.5.11",
|
|
895
|
+
"resolved": "https://registry.npmjs.org/@codemirror/search/-/search-6.5.11.tgz",
|
|
896
|
+
"integrity": "sha512-KmWepDE6jUdL6n8cAAqIpRmLPBZ5ZKnicE8oGU/s3QrAVID+0VhLFrzUucVKHG5035/BSykhExDL/Xm7dHthiA==",
|
|
897
|
+
"license": "MIT",
|
|
898
|
+
"dependencies": {
|
|
899
|
+
"@codemirror/state": "^6.0.0",
|
|
900
|
+
"@codemirror/view": "^6.0.0",
|
|
901
|
+
"crelt": "^1.0.5"
|
|
902
|
+
}
|
|
903
|
+
},
|
|
904
|
+
"node_modules/@codemirror/state": {
|
|
905
|
+
"version": "6.5.2",
|
|
906
|
+
"resolved": "https://registry.npmjs.org/@codemirror/state/-/state-6.5.2.tgz",
|
|
907
|
+
"integrity": "sha512-FVqsPqtPWKVVL3dPSxy8wEF/ymIEuVzF1PK3VbUgrxXpJUSHQWWZz4JMToquRxnkw+36LTamCZG2iua2Ptq0fA==",
|
|
908
|
+
"license": "MIT",
|
|
909
|
+
"dependencies": {
|
|
910
|
+
"@marijn/find-cluster-break": "^1.0.0"
|
|
911
|
+
}
|
|
912
|
+
},
|
|
913
|
+
"node_modules/@codemirror/theme-one-dark": {
|
|
914
|
+
"version": "6.1.3",
|
|
915
|
+
"resolved": "https://registry.npmjs.org/@codemirror/theme-one-dark/-/theme-one-dark-6.1.3.tgz",
|
|
916
|
+
"integrity": "sha512-NzBdIvEJmx6fjeremiGp3t/okrLPYT0d9orIc7AFun8oZcRk58aejkqhv6spnz4MLAevrKNPMQYXEWMg4s+sKA==",
|
|
917
|
+
"license": "MIT",
|
|
918
|
+
"dependencies": {
|
|
919
|
+
"@codemirror/language": "^6.0.0",
|
|
920
|
+
"@codemirror/state": "^6.0.0",
|
|
921
|
+
"@codemirror/view": "^6.0.0",
|
|
922
|
+
"@lezer/highlight": "^1.0.0"
|
|
923
|
+
}
|
|
924
|
+
},
|
|
925
|
+
"node_modules/@codemirror/view": {
|
|
926
|
+
"version": "6.38.8",
|
|
927
|
+
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.38.8.tgz",
|
|
928
|
+
"integrity": "sha512-XcE9fcnkHCbWkjeKyi0lllwXmBLtyYb5dt89dJyx23I9+LSh5vZDIuk7OLG4VM1lgrXZQcY6cxyZyk5WVPRv/A==",
|
|
929
|
+
"license": "MIT",
|
|
930
|
+
"dependencies": {
|
|
931
|
+
"@codemirror/state": "^6.5.0",
|
|
932
|
+
"crelt": "^1.0.6",
|
|
933
|
+
"style-mod": "^4.1.0",
|
|
934
|
+
"w3c-keyname": "^2.2.4"
|
|
935
|
+
}
|
|
936
|
+
},
|
|
937
|
+
"node_modules/@cspotcode/source-map-support": {
|
|
938
|
+
"version": "0.8.1",
|
|
939
|
+
"resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
|
|
940
|
+
"integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==",
|
|
941
|
+
"license": "MIT",
|
|
942
|
+
"dependencies": {
|
|
943
|
+
"@jridgewell/trace-mapping": "0.3.9"
|
|
944
|
+
},
|
|
945
|
+
"engines": {
|
|
946
|
+
"node": ">=12"
|
|
947
|
+
}
|
|
948
|
+
},
|
|
949
|
+
"node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": {
|
|
950
|
+
"version": "0.3.9",
|
|
951
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz",
|
|
952
|
+
"integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==",
|
|
953
|
+
"license": "MIT",
|
|
954
|
+
"dependencies": {
|
|
955
|
+
"@jridgewell/resolve-uri": "^3.0.3",
|
|
956
|
+
"@jridgewell/sourcemap-codec": "^1.4.10"
|
|
957
|
+
}
|
|
958
|
+
},
|
|
959
|
+
"node_modules/@emmetio/abbreviation": {
|
|
960
|
+
"version": "2.3.3",
|
|
961
|
+
"license": "MIT",
|
|
962
|
+
"dependencies": {
|
|
963
|
+
"@emmetio/scanner": "^1.0.4"
|
|
964
|
+
}
|
|
965
|
+
},
|
|
966
|
+
"node_modules/@emmetio/css-abbreviation": {
|
|
967
|
+
"version": "2.1.8",
|
|
968
|
+
"license": "MIT",
|
|
969
|
+
"dependencies": {
|
|
970
|
+
"@emmetio/scanner": "^1.0.4"
|
|
971
|
+
}
|
|
972
|
+
},
|
|
973
|
+
"node_modules/@emmetio/css-parser": {
|
|
974
|
+
"version": "0.4.0",
|
|
975
|
+
"resolved": "git+ssh://git@github.com/ramya-rao-a/css-parser.git#370c480ac103bd17c7bcfb34bf5d577dc40d3660",
|
|
976
|
+
"license": "MIT",
|
|
977
|
+
"dependencies": {
|
|
978
|
+
"@emmetio/stream-reader": "^2.2.0",
|
|
979
|
+
"@emmetio/stream-reader-utils": "^0.1.0"
|
|
980
|
+
}
|
|
981
|
+
},
|
|
982
|
+
"node_modules/@emmetio/html-matcher": {
|
|
983
|
+
"version": "1.3.0",
|
|
984
|
+
"license": "ISC",
|
|
985
|
+
"dependencies": {
|
|
986
|
+
"@emmetio/scanner": "^1.0.0"
|
|
987
|
+
}
|
|
988
|
+
},
|
|
989
|
+
"node_modules/@emmetio/scanner": {
|
|
990
|
+
"version": "1.0.4",
|
|
991
|
+
"license": "MIT"
|
|
992
|
+
},
|
|
993
|
+
"node_modules/@emmetio/stream-reader": {
|
|
994
|
+
"version": "2.2.0",
|
|
995
|
+
"license": "MIT"
|
|
996
|
+
},
|
|
997
|
+
"node_modules/@emmetio/stream-reader-utils": {
|
|
998
|
+
"version": "0.1.0",
|
|
999
|
+
"license": "MIT"
|
|
1000
|
+
},
|
|
1001
|
+
"node_modules/@emnapi/runtime": {
|
|
1002
|
+
"version": "1.7.1",
|
|
1003
|
+
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.7.1.tgz",
|
|
1004
|
+
"integrity": "sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==",
|
|
1005
|
+
"license": "MIT",
|
|
1006
|
+
"optional": true,
|
|
1007
|
+
"dependencies": {
|
|
1008
|
+
"tslib": "^2.4.0"
|
|
1009
|
+
}
|
|
1010
|
+
},
|
|
1011
|
+
"node_modules/@esbuild-plugins/node-globals-polyfill": {
|
|
1012
|
+
"version": "0.2.3",
|
|
1013
|
+
"resolved": "https://registry.npmjs.org/@esbuild-plugins/node-globals-polyfill/-/node-globals-polyfill-0.2.3.tgz",
|
|
1014
|
+
"integrity": "sha512-r3MIryXDeXDOZh7ih1l/yE9ZLORCd5e8vWg02azWRGj5SPTuoh69A2AIyn0Z31V/kHBfZ4HgWJ+OK3GTTwLmnw==",
|
|
1015
|
+
"license": "ISC",
|
|
1016
|
+
"peerDependencies": {
|
|
1017
|
+
"esbuild": "*"
|
|
1018
|
+
}
|
|
1019
|
+
},
|
|
1020
|
+
"node_modules/@esbuild-plugins/node-modules-polyfill": {
|
|
1021
|
+
"version": "0.2.2",
|
|
1022
|
+
"resolved": "https://registry.npmjs.org/@esbuild-plugins/node-modules-polyfill/-/node-modules-polyfill-0.2.2.tgz",
|
|
1023
|
+
"integrity": "sha512-LXV7QsWJxRuMYvKbiznh+U1ilIop3g2TeKRzUxOG5X3YITc8JyyTa90BmLwqqv0YnX4v32CSlG+vsziZp9dMvA==",
|
|
1024
|
+
"license": "ISC",
|
|
1025
|
+
"dependencies": {
|
|
1026
|
+
"escape-string-regexp": "^4.0.0",
|
|
1027
|
+
"rollup-plugin-node-polyfills": "^0.2.1"
|
|
1028
|
+
},
|
|
1029
|
+
"peerDependencies": {
|
|
1030
|
+
"esbuild": "*"
|
|
1031
|
+
}
|
|
1032
|
+
},
|
|
1033
|
+
"node_modules/@esbuild-plugins/node-modules-polyfill/node_modules/escape-string-regexp": {
|
|
1034
|
+
"version": "4.0.0",
|
|
1035
|
+
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
|
|
1036
|
+
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
|
|
1037
|
+
"license": "MIT",
|
|
1038
|
+
"engines": {
|
|
1039
|
+
"node": ">=10"
|
|
1040
|
+
},
|
|
1041
|
+
"funding": {
|
|
1042
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1043
|
+
}
|
|
1044
|
+
},
|
|
1045
|
+
"node_modules/@esbuild/aix-ppc64": {
|
|
1046
|
+
"version": "0.25.12",
|
|
1047
|
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
|
|
1048
|
+
"integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==",
|
|
1049
|
+
"cpu": [
|
|
1050
|
+
"ppc64"
|
|
1051
|
+
],
|
|
1052
|
+
"license": "MIT",
|
|
1053
|
+
"optional": true,
|
|
1054
|
+
"os": [
|
|
1055
|
+
"aix"
|
|
1056
|
+
],
|
|
1057
|
+
"engines": {
|
|
1058
|
+
"node": ">=18"
|
|
1059
|
+
}
|
|
1060
|
+
},
|
|
1061
|
+
"node_modules/@esbuild/android-arm": {
|
|
1062
|
+
"version": "0.25.12",
|
|
1063
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz",
|
|
1064
|
+
"integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==",
|
|
1065
|
+
"cpu": [
|
|
1066
|
+
"arm"
|
|
1067
|
+
],
|
|
1068
|
+
"license": "MIT",
|
|
1069
|
+
"optional": true,
|
|
1070
|
+
"os": [
|
|
1071
|
+
"android"
|
|
1072
|
+
],
|
|
1073
|
+
"engines": {
|
|
1074
|
+
"node": ">=18"
|
|
1075
|
+
}
|
|
1076
|
+
},
|
|
1077
|
+
"node_modules/@esbuild/android-arm64": {
|
|
1078
|
+
"version": "0.25.12",
|
|
1079
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz",
|
|
1080
|
+
"integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==",
|
|
1081
|
+
"cpu": [
|
|
1082
|
+
"arm64"
|
|
1083
|
+
],
|
|
1084
|
+
"license": "MIT",
|
|
1085
|
+
"optional": true,
|
|
1086
|
+
"os": [
|
|
1087
|
+
"android"
|
|
1088
|
+
],
|
|
1089
|
+
"engines": {
|
|
1090
|
+
"node": ">=18"
|
|
1091
|
+
}
|
|
1092
|
+
},
|
|
1093
|
+
"node_modules/@esbuild/android-x64": {
|
|
1094
|
+
"version": "0.25.12",
|
|
1095
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz",
|
|
1096
|
+
"integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==",
|
|
1097
|
+
"cpu": [
|
|
1098
|
+
"x64"
|
|
1099
|
+
],
|
|
1100
|
+
"license": "MIT",
|
|
1101
|
+
"optional": true,
|
|
1102
|
+
"os": [
|
|
1103
|
+
"android"
|
|
1104
|
+
],
|
|
1105
|
+
"engines": {
|
|
1106
|
+
"node": ">=18"
|
|
1107
|
+
}
|
|
1108
|
+
},
|
|
1109
|
+
"node_modules/@esbuild/darwin-arm64": {
|
|
1110
|
+
"version": "0.21.5",
|
|
1111
|
+
"cpu": [
|
|
1112
|
+
"arm64"
|
|
1113
|
+
],
|
|
1114
|
+
"license": "MIT",
|
|
1115
|
+
"optional": true,
|
|
1116
|
+
"os": [
|
|
1117
|
+
"darwin"
|
|
1118
|
+
],
|
|
1119
|
+
"engines": {
|
|
1120
|
+
"node": ">=12"
|
|
1121
|
+
}
|
|
1122
|
+
},
|
|
1123
|
+
"node_modules/@esbuild/darwin-x64": {
|
|
1124
|
+
"version": "0.25.12",
|
|
1125
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz",
|
|
1126
|
+
"integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==",
|
|
1127
|
+
"cpu": [
|
|
1128
|
+
"x64"
|
|
1129
|
+
],
|
|
1130
|
+
"license": "MIT",
|
|
1131
|
+
"optional": true,
|
|
1132
|
+
"os": [
|
|
1133
|
+
"darwin"
|
|
1134
|
+
],
|
|
1135
|
+
"engines": {
|
|
1136
|
+
"node": ">=18"
|
|
1137
|
+
}
|
|
1138
|
+
},
|
|
1139
|
+
"node_modules/@esbuild/freebsd-arm64": {
|
|
1140
|
+
"version": "0.25.12",
|
|
1141
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz",
|
|
1142
|
+
"integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==",
|
|
1143
|
+
"cpu": [
|
|
1144
|
+
"arm64"
|
|
1145
|
+
],
|
|
1146
|
+
"license": "MIT",
|
|
1147
|
+
"optional": true,
|
|
1148
|
+
"os": [
|
|
1149
|
+
"freebsd"
|
|
1150
|
+
],
|
|
1151
|
+
"engines": {
|
|
1152
|
+
"node": ">=18"
|
|
1153
|
+
}
|
|
1154
|
+
},
|
|
1155
|
+
"node_modules/@esbuild/freebsd-x64": {
|
|
1156
|
+
"version": "0.25.12",
|
|
1157
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz",
|
|
1158
|
+
"integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==",
|
|
1159
|
+
"cpu": [
|
|
1160
|
+
"x64"
|
|
1161
|
+
],
|
|
1162
|
+
"license": "MIT",
|
|
1163
|
+
"optional": true,
|
|
1164
|
+
"os": [
|
|
1165
|
+
"freebsd"
|
|
1166
|
+
],
|
|
1167
|
+
"engines": {
|
|
1168
|
+
"node": ">=18"
|
|
1169
|
+
}
|
|
1170
|
+
},
|
|
1171
|
+
"node_modules/@esbuild/linux-arm": {
|
|
1172
|
+
"version": "0.25.12",
|
|
1173
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz",
|
|
1174
|
+
"integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==",
|
|
1175
|
+
"cpu": [
|
|
1176
|
+
"arm"
|
|
1177
|
+
],
|
|
1178
|
+
"license": "MIT",
|
|
1179
|
+
"optional": true,
|
|
1180
|
+
"os": [
|
|
1181
|
+
"linux"
|
|
1182
|
+
],
|
|
1183
|
+
"engines": {
|
|
1184
|
+
"node": ">=18"
|
|
1185
|
+
}
|
|
1186
|
+
},
|
|
1187
|
+
"node_modules/@esbuild/linux-arm64": {
|
|
1188
|
+
"version": "0.25.12",
|
|
1189
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz",
|
|
1190
|
+
"integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==",
|
|
1191
|
+
"cpu": [
|
|
1192
|
+
"arm64"
|
|
1193
|
+
],
|
|
1194
|
+
"license": "MIT",
|
|
1195
|
+
"optional": true,
|
|
1196
|
+
"os": [
|
|
1197
|
+
"linux"
|
|
1198
|
+
],
|
|
1199
|
+
"engines": {
|
|
1200
|
+
"node": ">=18"
|
|
1201
|
+
}
|
|
1202
|
+
},
|
|
1203
|
+
"node_modules/@esbuild/linux-ia32": {
|
|
1204
|
+
"version": "0.25.12",
|
|
1205
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz",
|
|
1206
|
+
"integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==",
|
|
1207
|
+
"cpu": [
|
|
1208
|
+
"ia32"
|
|
1209
|
+
],
|
|
1210
|
+
"license": "MIT",
|
|
1211
|
+
"optional": true,
|
|
1212
|
+
"os": [
|
|
1213
|
+
"linux"
|
|
1214
|
+
],
|
|
1215
|
+
"engines": {
|
|
1216
|
+
"node": ">=18"
|
|
1217
|
+
}
|
|
1218
|
+
},
|
|
1219
|
+
"node_modules/@esbuild/linux-loong64": {
|
|
1220
|
+
"version": "0.25.12",
|
|
1221
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz",
|
|
1222
|
+
"integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==",
|
|
1223
|
+
"cpu": [
|
|
1224
|
+
"loong64"
|
|
1225
|
+
],
|
|
1226
|
+
"license": "MIT",
|
|
1227
|
+
"optional": true,
|
|
1228
|
+
"os": [
|
|
1229
|
+
"linux"
|
|
1230
|
+
],
|
|
1231
|
+
"engines": {
|
|
1232
|
+
"node": ">=18"
|
|
1233
|
+
}
|
|
1234
|
+
},
|
|
1235
|
+
"node_modules/@esbuild/linux-mips64el": {
|
|
1236
|
+
"version": "0.25.12",
|
|
1237
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz",
|
|
1238
|
+
"integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==",
|
|
1239
|
+
"cpu": [
|
|
1240
|
+
"mips64el"
|
|
1241
|
+
],
|
|
1242
|
+
"license": "MIT",
|
|
1243
|
+
"optional": true,
|
|
1244
|
+
"os": [
|
|
1245
|
+
"linux"
|
|
1246
|
+
],
|
|
1247
|
+
"engines": {
|
|
1248
|
+
"node": ">=18"
|
|
1249
|
+
}
|
|
1250
|
+
},
|
|
1251
|
+
"node_modules/@esbuild/linux-ppc64": {
|
|
1252
|
+
"version": "0.25.12",
|
|
1253
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz",
|
|
1254
|
+
"integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==",
|
|
1255
|
+
"cpu": [
|
|
1256
|
+
"ppc64"
|
|
1257
|
+
],
|
|
1258
|
+
"license": "MIT",
|
|
1259
|
+
"optional": true,
|
|
1260
|
+
"os": [
|
|
1261
|
+
"linux"
|
|
1262
|
+
],
|
|
1263
|
+
"engines": {
|
|
1264
|
+
"node": ">=18"
|
|
1265
|
+
}
|
|
1266
|
+
},
|
|
1267
|
+
"node_modules/@esbuild/linux-riscv64": {
|
|
1268
|
+
"version": "0.25.12",
|
|
1269
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz",
|
|
1270
|
+
"integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==",
|
|
1271
|
+
"cpu": [
|
|
1272
|
+
"riscv64"
|
|
1273
|
+
],
|
|
1274
|
+
"license": "MIT",
|
|
1275
|
+
"optional": true,
|
|
1276
|
+
"os": [
|
|
1277
|
+
"linux"
|
|
1278
|
+
],
|
|
1279
|
+
"engines": {
|
|
1280
|
+
"node": ">=18"
|
|
1281
|
+
}
|
|
1282
|
+
},
|
|
1283
|
+
"node_modules/@esbuild/linux-s390x": {
|
|
1284
|
+
"version": "0.25.12",
|
|
1285
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz",
|
|
1286
|
+
"integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==",
|
|
1287
|
+
"cpu": [
|
|
1288
|
+
"s390x"
|
|
1289
|
+
],
|
|
1290
|
+
"license": "MIT",
|
|
1291
|
+
"optional": true,
|
|
1292
|
+
"os": [
|
|
1293
|
+
"linux"
|
|
1294
|
+
],
|
|
1295
|
+
"engines": {
|
|
1296
|
+
"node": ">=18"
|
|
1297
|
+
}
|
|
1298
|
+
},
|
|
1299
|
+
"node_modules/@esbuild/linux-x64": {
|
|
1300
|
+
"version": "0.25.12",
|
|
1301
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz",
|
|
1302
|
+
"integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==",
|
|
1303
|
+
"cpu": [
|
|
1304
|
+
"x64"
|
|
1305
|
+
],
|
|
1306
|
+
"license": "MIT",
|
|
1307
|
+
"optional": true,
|
|
1308
|
+
"os": [
|
|
1309
|
+
"linux"
|
|
1310
|
+
],
|
|
1311
|
+
"engines": {
|
|
1312
|
+
"node": ">=18"
|
|
1313
|
+
}
|
|
1314
|
+
},
|
|
1315
|
+
"node_modules/@esbuild/netbsd-arm64": {
|
|
1316
|
+
"version": "0.25.12",
|
|
1317
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz",
|
|
1318
|
+
"integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==",
|
|
1319
|
+
"cpu": [
|
|
1320
|
+
"arm64"
|
|
1321
|
+
],
|
|
1322
|
+
"license": "MIT",
|
|
1323
|
+
"optional": true,
|
|
1324
|
+
"os": [
|
|
1325
|
+
"netbsd"
|
|
1326
|
+
],
|
|
1327
|
+
"engines": {
|
|
1328
|
+
"node": ">=18"
|
|
1329
|
+
}
|
|
1330
|
+
},
|
|
1331
|
+
"node_modules/@esbuild/netbsd-x64": {
|
|
1332
|
+
"version": "0.25.12",
|
|
1333
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz",
|
|
1334
|
+
"integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==",
|
|
1335
|
+
"cpu": [
|
|
1336
|
+
"x64"
|
|
1337
|
+
],
|
|
1338
|
+
"license": "MIT",
|
|
1339
|
+
"optional": true,
|
|
1340
|
+
"os": [
|
|
1341
|
+
"netbsd"
|
|
1342
|
+
],
|
|
1343
|
+
"engines": {
|
|
1344
|
+
"node": ">=18"
|
|
1345
|
+
}
|
|
1346
|
+
},
|
|
1347
|
+
"node_modules/@esbuild/openbsd-arm64": {
|
|
1348
|
+
"version": "0.25.12",
|
|
1349
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz",
|
|
1350
|
+
"integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==",
|
|
1351
|
+
"cpu": [
|
|
1352
|
+
"arm64"
|
|
1353
|
+
],
|
|
1354
|
+
"license": "MIT",
|
|
1355
|
+
"optional": true,
|
|
1356
|
+
"os": [
|
|
1357
|
+
"openbsd"
|
|
1358
|
+
],
|
|
1359
|
+
"engines": {
|
|
1360
|
+
"node": ">=18"
|
|
1361
|
+
}
|
|
1362
|
+
},
|
|
1363
|
+
"node_modules/@esbuild/openbsd-x64": {
|
|
1364
|
+
"version": "0.25.12",
|
|
1365
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz",
|
|
1366
|
+
"integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==",
|
|
1367
|
+
"cpu": [
|
|
1368
|
+
"x64"
|
|
1369
|
+
],
|
|
1370
|
+
"license": "MIT",
|
|
1371
|
+
"optional": true,
|
|
1372
|
+
"os": [
|
|
1373
|
+
"openbsd"
|
|
1374
|
+
],
|
|
1375
|
+
"engines": {
|
|
1376
|
+
"node": ">=18"
|
|
1377
|
+
}
|
|
1378
|
+
},
|
|
1379
|
+
"node_modules/@esbuild/openharmony-arm64": {
|
|
1380
|
+
"version": "0.25.12",
|
|
1381
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz",
|
|
1382
|
+
"integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==",
|
|
1383
|
+
"cpu": [
|
|
1384
|
+
"arm64"
|
|
1385
|
+
],
|
|
1386
|
+
"license": "MIT",
|
|
585
1387
|
"optional": true,
|
|
586
1388
|
"os": [
|
|
587
|
-
"
|
|
1389
|
+
"openharmony"
|
|
588
1390
|
],
|
|
589
1391
|
"engines": {
|
|
590
|
-
"node": ">=
|
|
1392
|
+
"node": ">=18"
|
|
591
1393
|
}
|
|
592
1394
|
},
|
|
593
|
-
"node_modules/@
|
|
594
|
-
"version": "
|
|
595
|
-
"resolved": "https://registry.npmjs.org/@
|
|
596
|
-
"integrity": "sha512-
|
|
1395
|
+
"node_modules/@esbuild/sunos-x64": {
|
|
1396
|
+
"version": "0.25.12",
|
|
1397
|
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz",
|
|
1398
|
+
"integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==",
|
|
597
1399
|
"cpu": [
|
|
598
1400
|
"x64"
|
|
599
1401
|
],
|
|
600
|
-
"license": "
|
|
1402
|
+
"license": "MIT",
|
|
601
1403
|
"optional": true,
|
|
602
1404
|
"os": [
|
|
603
|
-
"
|
|
1405
|
+
"sunos"
|
|
604
1406
|
],
|
|
605
1407
|
"engines": {
|
|
606
|
-
"node": ">=
|
|
1408
|
+
"node": ">=18"
|
|
607
1409
|
}
|
|
608
1410
|
},
|
|
609
|
-
"node_modules/@
|
|
610
|
-
"version": "
|
|
611
|
-
"resolved": "https://registry.npmjs.org/@
|
|
612
|
-
"integrity": "sha512
|
|
613
|
-
"
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
"version": "0.8.1",
|
|
617
|
-
"resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
|
|
618
|
-
"integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==",
|
|
1411
|
+
"node_modules/@esbuild/win32-arm64": {
|
|
1412
|
+
"version": "0.25.12",
|
|
1413
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz",
|
|
1414
|
+
"integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==",
|
|
1415
|
+
"cpu": [
|
|
1416
|
+
"arm64"
|
|
1417
|
+
],
|
|
619
1418
|
"license": "MIT",
|
|
620
|
-
"
|
|
621
|
-
|
|
622
|
-
|
|
1419
|
+
"optional": true,
|
|
1420
|
+
"os": [
|
|
1421
|
+
"win32"
|
|
1422
|
+
],
|
|
623
1423
|
"engines": {
|
|
624
|
-
"node": ">=
|
|
625
|
-
}
|
|
626
|
-
},
|
|
627
|
-
"node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": {
|
|
628
|
-
"version": "0.3.9",
|
|
629
|
-
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz",
|
|
630
|
-
"integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==",
|
|
631
|
-
"license": "MIT",
|
|
632
|
-
"dependencies": {
|
|
633
|
-
"@jridgewell/resolve-uri": "^3.0.3",
|
|
634
|
-
"@jridgewell/sourcemap-codec": "^1.4.10"
|
|
635
|
-
}
|
|
636
|
-
},
|
|
637
|
-
"node_modules/@emmetio/abbreviation": {
|
|
638
|
-
"version": "2.3.3",
|
|
639
|
-
"license": "MIT",
|
|
640
|
-
"dependencies": {
|
|
641
|
-
"@emmetio/scanner": "^1.0.4"
|
|
642
|
-
}
|
|
643
|
-
},
|
|
644
|
-
"node_modules/@emmetio/css-abbreviation": {
|
|
645
|
-
"version": "2.1.8",
|
|
646
|
-
"license": "MIT",
|
|
647
|
-
"dependencies": {
|
|
648
|
-
"@emmetio/scanner": "^1.0.4"
|
|
649
|
-
}
|
|
650
|
-
},
|
|
651
|
-
"node_modules/@emmetio/css-parser": {
|
|
652
|
-
"version": "0.4.0",
|
|
653
|
-
"resolved": "git+ssh://git@github.com/ramya-rao-a/css-parser.git#370c480ac103bd17c7bcfb34bf5d577dc40d3660",
|
|
654
|
-
"license": "MIT",
|
|
655
|
-
"dependencies": {
|
|
656
|
-
"@emmetio/stream-reader": "^2.2.0",
|
|
657
|
-
"@emmetio/stream-reader-utils": "^0.1.0"
|
|
658
|
-
}
|
|
659
|
-
},
|
|
660
|
-
"node_modules/@emmetio/html-matcher": {
|
|
661
|
-
"version": "1.3.0",
|
|
662
|
-
"license": "ISC",
|
|
663
|
-
"dependencies": {
|
|
664
|
-
"@emmetio/scanner": "^1.0.0"
|
|
1424
|
+
"node": ">=18"
|
|
665
1425
|
}
|
|
666
1426
|
},
|
|
667
|
-
"node_modules/@
|
|
668
|
-
"version": "
|
|
669
|
-
"
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
},
|
|
675
|
-
"node_modules/@emmetio/stream-reader-utils": {
|
|
676
|
-
"version": "0.1.0",
|
|
677
|
-
"license": "MIT"
|
|
678
|
-
},
|
|
679
|
-
"node_modules/@emnapi/runtime": {
|
|
680
|
-
"version": "1.7.1",
|
|
681
|
-
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.7.1.tgz",
|
|
682
|
-
"integrity": "sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==",
|
|
1427
|
+
"node_modules/@esbuild/win32-ia32": {
|
|
1428
|
+
"version": "0.25.12",
|
|
1429
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz",
|
|
1430
|
+
"integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==",
|
|
1431
|
+
"cpu": [
|
|
1432
|
+
"ia32"
|
|
1433
|
+
],
|
|
683
1434
|
"license": "MIT",
|
|
684
1435
|
"optional": true,
|
|
685
|
-
"
|
|
686
|
-
"
|
|
687
|
-
|
|
688
|
-
},
|
|
689
|
-
"node_modules/@esbuild-plugins/node-globals-polyfill": {
|
|
690
|
-
"version": "0.2.3",
|
|
691
|
-
"resolved": "https://registry.npmjs.org/@esbuild-plugins/node-globals-polyfill/-/node-globals-polyfill-0.2.3.tgz",
|
|
692
|
-
"integrity": "sha512-r3MIryXDeXDOZh7ih1l/yE9ZLORCd5e8vWg02azWRGj5SPTuoh69A2AIyn0Z31V/kHBfZ4HgWJ+OK3GTTwLmnw==",
|
|
693
|
-
"license": "ISC",
|
|
694
|
-
"peerDependencies": {
|
|
695
|
-
"esbuild": "*"
|
|
696
|
-
}
|
|
697
|
-
},
|
|
698
|
-
"node_modules/@esbuild-plugins/node-modules-polyfill": {
|
|
699
|
-
"version": "0.2.2",
|
|
700
|
-
"resolved": "https://registry.npmjs.org/@esbuild-plugins/node-modules-polyfill/-/node-modules-polyfill-0.2.2.tgz",
|
|
701
|
-
"integrity": "sha512-LXV7QsWJxRuMYvKbiznh+U1ilIop3g2TeKRzUxOG5X3YITc8JyyTa90BmLwqqv0YnX4v32CSlG+vsziZp9dMvA==",
|
|
702
|
-
"license": "ISC",
|
|
703
|
-
"dependencies": {
|
|
704
|
-
"escape-string-regexp": "^4.0.0",
|
|
705
|
-
"rollup-plugin-node-polyfills": "^0.2.1"
|
|
706
|
-
},
|
|
707
|
-
"peerDependencies": {
|
|
708
|
-
"esbuild": "*"
|
|
709
|
-
}
|
|
710
|
-
},
|
|
711
|
-
"node_modules/@esbuild-plugins/node-modules-polyfill/node_modules/escape-string-regexp": {
|
|
712
|
-
"version": "4.0.0",
|
|
713
|
-
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
|
|
714
|
-
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
|
|
715
|
-
"license": "MIT",
|
|
1436
|
+
"os": [
|
|
1437
|
+
"win32"
|
|
1438
|
+
],
|
|
716
1439
|
"engines": {
|
|
717
|
-
"node": ">=
|
|
718
|
-
},
|
|
719
|
-
"funding": {
|
|
720
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
1440
|
+
"node": ">=18"
|
|
721
1441
|
}
|
|
722
1442
|
},
|
|
723
|
-
"node_modules/@esbuild/
|
|
724
|
-
"version": "0.
|
|
1443
|
+
"node_modules/@esbuild/win32-x64": {
|
|
1444
|
+
"version": "0.25.12",
|
|
1445
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz",
|
|
1446
|
+
"integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==",
|
|
725
1447
|
"cpu": [
|
|
726
|
-
"
|
|
1448
|
+
"x64"
|
|
727
1449
|
],
|
|
728
1450
|
"license": "MIT",
|
|
729
1451
|
"optional": true,
|
|
730
1452
|
"os": [
|
|
731
|
-
"
|
|
1453
|
+
"win32"
|
|
732
1454
|
],
|
|
733
1455
|
"engines": {
|
|
734
|
-
"node": ">=
|
|
1456
|
+
"node": ">=18"
|
|
735
1457
|
}
|
|
736
1458
|
},
|
|
737
1459
|
"node_modules/@fastify/busboy": {
|
|
@@ -825,6 +1547,58 @@
|
|
|
825
1547
|
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
826
1548
|
}
|
|
827
1549
|
},
|
|
1550
|
+
"node_modules/@lezer/common": {
|
|
1551
|
+
"version": "1.3.0",
|
|
1552
|
+
"resolved": "https://registry.npmjs.org/@lezer/common/-/common-1.3.0.tgz",
|
|
1553
|
+
"integrity": "sha512-L9X8uHCYU310o99L3/MpJKYxPzXPOS7S0NmBaM7UO/x2Kb2WbmMLSkfvdr1KxRIFYOpbY0Jhn7CfLSUDzL8arQ==",
|
|
1554
|
+
"license": "MIT"
|
|
1555
|
+
},
|
|
1556
|
+
"node_modules/@lezer/highlight": {
|
|
1557
|
+
"version": "1.2.3",
|
|
1558
|
+
"resolved": "https://registry.npmjs.org/@lezer/highlight/-/highlight-1.2.3.tgz",
|
|
1559
|
+
"integrity": "sha512-qXdH7UqTvGfdVBINrgKhDsVTJTxactNNxLk7+UMwZhU13lMHaOBlJe9Vqp907ya56Y3+ed2tlqzys7jDkTmW0g==",
|
|
1560
|
+
"license": "MIT",
|
|
1561
|
+
"dependencies": {
|
|
1562
|
+
"@lezer/common": "^1.3.0"
|
|
1563
|
+
}
|
|
1564
|
+
},
|
|
1565
|
+
"node_modules/@lezer/javascript": {
|
|
1566
|
+
"version": "1.5.4",
|
|
1567
|
+
"resolved": "https://registry.npmjs.org/@lezer/javascript/-/javascript-1.5.4.tgz",
|
|
1568
|
+
"integrity": "sha512-vvYx3MhWqeZtGPwDStM2dwgljd5smolYD2lR2UyFcHfxbBQebqx8yjmFmxtJ/E6nN6u1D9srOiVWm3Rb4tmcUA==",
|
|
1569
|
+
"license": "MIT",
|
|
1570
|
+
"dependencies": {
|
|
1571
|
+
"@lezer/common": "^1.2.0",
|
|
1572
|
+
"@lezer/highlight": "^1.1.3",
|
|
1573
|
+
"@lezer/lr": "^1.3.0"
|
|
1574
|
+
}
|
|
1575
|
+
},
|
|
1576
|
+
"node_modules/@lezer/json": {
|
|
1577
|
+
"version": "1.0.3",
|
|
1578
|
+
"resolved": "https://registry.npmjs.org/@lezer/json/-/json-1.0.3.tgz",
|
|
1579
|
+
"integrity": "sha512-BP9KzdF9Y35PDpv04r0VeSTKDeox5vVr3efE7eBbx3r4s3oNLfunchejZhjArmeieBH+nVOpgIiBJpEAv8ilqQ==",
|
|
1580
|
+
"license": "MIT",
|
|
1581
|
+
"dependencies": {
|
|
1582
|
+
"@lezer/common": "^1.2.0",
|
|
1583
|
+
"@lezer/highlight": "^1.0.0",
|
|
1584
|
+
"@lezer/lr": "^1.0.0"
|
|
1585
|
+
}
|
|
1586
|
+
},
|
|
1587
|
+
"node_modules/@lezer/lr": {
|
|
1588
|
+
"version": "1.4.3",
|
|
1589
|
+
"resolved": "https://registry.npmjs.org/@lezer/lr/-/lr-1.4.3.tgz",
|
|
1590
|
+
"integrity": "sha512-yenN5SqAxAPv/qMnpWW0AT7l+SxVrgG+u0tNsRQWqbrz66HIl8DnEbBObvy21J5K7+I1v7gsAnlE2VQ5yYVSeA==",
|
|
1591
|
+
"license": "MIT",
|
|
1592
|
+
"dependencies": {
|
|
1593
|
+
"@lezer/common": "^1.0.0"
|
|
1594
|
+
}
|
|
1595
|
+
},
|
|
1596
|
+
"node_modules/@marijn/find-cluster-break": {
|
|
1597
|
+
"version": "1.0.2",
|
|
1598
|
+
"resolved": "https://registry.npmjs.org/@marijn/find-cluster-break/-/find-cluster-break-1.0.2.tgz",
|
|
1599
|
+
"integrity": "sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==",
|
|
1600
|
+
"license": "MIT"
|
|
1601
|
+
},
|
|
828
1602
|
"node_modules/@mdx-js/mdx": {
|
|
829
1603
|
"version": "3.1.1",
|
|
830
1604
|
"license": "MIT",
|
|
@@ -893,6 +1667,12 @@
|
|
|
893
1667
|
"version": "1.1.0",
|
|
894
1668
|
"license": "MIT"
|
|
895
1669
|
},
|
|
1670
|
+
"node_modules/@rolldown/pluginutils": {
|
|
1671
|
+
"version": "1.0.0-beta.27",
|
|
1672
|
+
"resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz",
|
|
1673
|
+
"integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==",
|
|
1674
|
+
"license": "MIT"
|
|
1675
|
+
},
|
|
896
1676
|
"node_modules/@rollup/pluginutils": {
|
|
897
1677
|
"version": "5.3.0",
|
|
898
1678
|
"license": "MIT",
|
|
@@ -1131,14 +1911,85 @@
|
|
|
1131
1911
|
"@types/unist": "*"
|
|
1132
1912
|
}
|
|
1133
1913
|
},
|
|
1914
|
+
"node_modules/@types/react": {
|
|
1915
|
+
"version": "19.2.6",
|
|
1916
|
+
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.6.tgz",
|
|
1917
|
+
"integrity": "sha512-p/jUvulfgU7oKtj6Xpk8cA2Y1xKTtICGpJYeJXz2YVO2UcvjQgeRMLDGfDeqeRW2Ta+0QNFwcc8X3GH8SxZz6w==",
|
|
1918
|
+
"license": "MIT",
|
|
1919
|
+
"peer": true,
|
|
1920
|
+
"dependencies": {
|
|
1921
|
+
"csstype": "^3.2.2"
|
|
1922
|
+
}
|
|
1923
|
+
},
|
|
1924
|
+
"node_modules/@types/react-dom": {
|
|
1925
|
+
"version": "19.2.3",
|
|
1926
|
+
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
|
|
1927
|
+
"integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
|
|
1928
|
+
"license": "MIT",
|
|
1929
|
+
"peer": true,
|
|
1930
|
+
"peerDependencies": {
|
|
1931
|
+
"@types/react": "^19.2.0"
|
|
1932
|
+
}
|
|
1933
|
+
},
|
|
1134
1934
|
"node_modules/@types/unist": {
|
|
1135
1935
|
"version": "3.0.3",
|
|
1136
1936
|
"license": "MIT"
|
|
1137
1937
|
},
|
|
1938
|
+
"node_modules/@uiw/codemirror-theme-github": {
|
|
1939
|
+
"version": "4.25.3",
|
|
1940
|
+
"resolved": "https://registry.npmjs.org/@uiw/codemirror-theme-github/-/codemirror-theme-github-4.25.3.tgz",
|
|
1941
|
+
"integrity": "sha512-KdmcO9VicsBgsDErNrNBqwMuTbJRIpeMl9oIjmrNx2iEfIDSOMBIKlX+BkgwTAU+VmhqYY/68/kmF1K8z2FxrQ==",
|
|
1942
|
+
"license": "MIT",
|
|
1943
|
+
"dependencies": {
|
|
1944
|
+
"@uiw/codemirror-themes": "4.25.3"
|
|
1945
|
+
},
|
|
1946
|
+
"funding": {
|
|
1947
|
+
"url": "https://jaywcjlove.github.io/#/sponsor"
|
|
1948
|
+
}
|
|
1949
|
+
},
|
|
1950
|
+
"node_modules/@uiw/codemirror-themes": {
|
|
1951
|
+
"version": "4.25.3",
|
|
1952
|
+
"resolved": "https://registry.npmjs.org/@uiw/codemirror-themes/-/codemirror-themes-4.25.3.tgz",
|
|
1953
|
+
"integrity": "sha512-k7/B7Vf4jU/WcdewgJWP9tMFxbjB6UpUymZ3fx/TsbGwt2JXAouw0uyqCn1RlYBfr7YQnvEs3Ju9ECkd2sKzdg==",
|
|
1954
|
+
"license": "MIT",
|
|
1955
|
+
"dependencies": {
|
|
1956
|
+
"@codemirror/language": "^6.0.0",
|
|
1957
|
+
"@codemirror/state": "^6.0.0",
|
|
1958
|
+
"@codemirror/view": "^6.0.0"
|
|
1959
|
+
},
|
|
1960
|
+
"funding": {
|
|
1961
|
+
"url": "https://jaywcjlove.github.io/#/sponsor"
|
|
1962
|
+
},
|
|
1963
|
+
"peerDependencies": {
|
|
1964
|
+
"@codemirror/language": ">=6.0.0",
|
|
1965
|
+
"@codemirror/state": ">=6.0.0",
|
|
1966
|
+
"@codemirror/view": ">=6.0.0"
|
|
1967
|
+
}
|
|
1968
|
+
},
|
|
1138
1969
|
"node_modules/@ungap/structured-clone": {
|
|
1139
1970
|
"version": "1.3.0",
|
|
1140
1971
|
"license": "ISC"
|
|
1141
1972
|
},
|
|
1973
|
+
"node_modules/@vitejs/plugin-react": {
|
|
1974
|
+
"version": "4.7.0",
|
|
1975
|
+
"resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz",
|
|
1976
|
+
"integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==",
|
|
1977
|
+
"license": "MIT",
|
|
1978
|
+
"dependencies": {
|
|
1979
|
+
"@babel/core": "^7.28.0",
|
|
1980
|
+
"@babel/plugin-transform-react-jsx-self": "^7.27.1",
|
|
1981
|
+
"@babel/plugin-transform-react-jsx-source": "^7.27.1",
|
|
1982
|
+
"@rolldown/pluginutils": "1.0.0-beta.27",
|
|
1983
|
+
"@types/babel__core": "^7.20.5",
|
|
1984
|
+
"react-refresh": "^0.17.0"
|
|
1985
|
+
},
|
|
1986
|
+
"engines": {
|
|
1987
|
+
"node": "^14.18.0 || >=16.0.0"
|
|
1988
|
+
},
|
|
1989
|
+
"peerDependencies": {
|
|
1990
|
+
"vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
|
|
1991
|
+
}
|
|
1992
|
+
},
|
|
1142
1993
|
"node_modules/@volar/kit": {
|
|
1143
1994
|
"version": "2.4.23",
|
|
1144
1995
|
"license": "MIT",
|
|
@@ -1774,6 +2625,21 @@
|
|
|
1774
2625
|
"node": ">=6"
|
|
1775
2626
|
}
|
|
1776
2627
|
},
|
|
2628
|
+
"node_modules/codemirror": {
|
|
2629
|
+
"version": "6.0.2",
|
|
2630
|
+
"resolved": "https://registry.npmjs.org/codemirror/-/codemirror-6.0.2.tgz",
|
|
2631
|
+
"integrity": "sha512-VhydHotNW5w1UGK0Qj96BwSk/Zqbp9WbnyK2W/eVMv4QyF41INRGpjUhFJY7/uDNuudSc33a/PKr4iDqRduvHw==",
|
|
2632
|
+
"license": "MIT",
|
|
2633
|
+
"dependencies": {
|
|
2634
|
+
"@codemirror/autocomplete": "^6.0.0",
|
|
2635
|
+
"@codemirror/commands": "^6.0.0",
|
|
2636
|
+
"@codemirror/language": "^6.0.0",
|
|
2637
|
+
"@codemirror/lint": "^6.0.0",
|
|
2638
|
+
"@codemirror/search": "^6.0.0",
|
|
2639
|
+
"@codemirror/state": "^6.0.0",
|
|
2640
|
+
"@codemirror/view": "^6.0.0"
|
|
2641
|
+
}
|
|
2642
|
+
},
|
|
1777
2643
|
"node_modules/collapse-white-space": {
|
|
1778
2644
|
"version": "2.1.0",
|
|
1779
2645
|
"license": "MIT",
|
|
@@ -1840,6 +2706,12 @@
|
|
|
1840
2706
|
"node": ">= 0.6"
|
|
1841
2707
|
}
|
|
1842
2708
|
},
|
|
2709
|
+
"node_modules/crelt": {
|
|
2710
|
+
"version": "1.0.6",
|
|
2711
|
+
"resolved": "https://registry.npmjs.org/crelt/-/crelt-1.0.6.tgz",
|
|
2712
|
+
"integrity": "sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==",
|
|
2713
|
+
"license": "MIT"
|
|
2714
|
+
},
|
|
1843
2715
|
"node_modules/cssesc": {
|
|
1844
2716
|
"version": "3.0.0",
|
|
1845
2717
|
"license": "MIT",
|
|
@@ -1850,6 +2722,13 @@
|
|
|
1850
2722
|
"node": ">=4"
|
|
1851
2723
|
}
|
|
1852
2724
|
},
|
|
2725
|
+
"node_modules/csstype": {
|
|
2726
|
+
"version": "3.2.3",
|
|
2727
|
+
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
|
|
2728
|
+
"integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
|
|
2729
|
+
"license": "MIT",
|
|
2730
|
+
"peer": true
|
|
2731
|
+
},
|
|
1853
2732
|
"node_modules/data-uri-to-buffer": {
|
|
1854
2733
|
"version": "2.0.2",
|
|
1855
2734
|
"resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-2.0.2.tgz",
|
|
@@ -2594,6 +3473,23 @@
|
|
|
2594
3473
|
"reusify": "^1.0.4"
|
|
2595
3474
|
}
|
|
2596
3475
|
},
|
|
3476
|
+
"node_modules/fdir": {
|
|
3477
|
+
"version": "6.5.0",
|
|
3478
|
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
|
|
3479
|
+
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
|
|
3480
|
+
"license": "MIT",
|
|
3481
|
+
"engines": {
|
|
3482
|
+
"node": ">=12.0.0"
|
|
3483
|
+
},
|
|
3484
|
+
"peerDependencies": {
|
|
3485
|
+
"picomatch": "^3 || ^4"
|
|
3486
|
+
},
|
|
3487
|
+
"peerDependenciesMeta": {
|
|
3488
|
+
"picomatch": {
|
|
3489
|
+
"optional": true
|
|
3490
|
+
}
|
|
3491
|
+
}
|
|
3492
|
+
},
|
|
2597
3493
|
"node_modules/fill-range": {
|
|
2598
3494
|
"version": "7.1.1",
|
|
2599
3495
|
"license": "MIT",
|
|
@@ -3158,7 +4054,7 @@
|
|
|
3158
4054
|
},
|
|
3159
4055
|
"node_modules/jiti": {
|
|
3160
4056
|
"version": "2.6.1",
|
|
3161
|
-
"
|
|
4057
|
+
"devOptional": true,
|
|
3162
4058
|
"license": "MIT",
|
|
3163
4059
|
"bin": {
|
|
3164
4060
|
"jiti": "lib/jiti-cli.mjs"
|
|
@@ -4713,6 +5609,8 @@
|
|
|
4713
5609
|
},
|
|
4714
5610
|
"node_modules/prettier": {
|
|
4715
5611
|
"version": "3.6.2",
|
|
5612
|
+
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz",
|
|
5613
|
+
"integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==",
|
|
4716
5614
|
"license": "MIT",
|
|
4717
5615
|
"bin": {
|
|
4718
5616
|
"prettier": "bin/prettier.cjs"
|
|
@@ -4781,6 +5679,36 @@
|
|
|
4781
5679
|
],
|
|
4782
5680
|
"license": "MIT"
|
|
4783
5681
|
},
|
|
5682
|
+
"node_modules/react": {
|
|
5683
|
+
"version": "19.2.0",
|
|
5684
|
+
"resolved": "https://registry.npmjs.org/react/-/react-19.2.0.tgz",
|
|
5685
|
+
"integrity": "sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==",
|
|
5686
|
+
"license": "MIT",
|
|
5687
|
+
"engines": {
|
|
5688
|
+
"node": ">=0.10.0"
|
|
5689
|
+
}
|
|
5690
|
+
},
|
|
5691
|
+
"node_modules/react-dom": {
|
|
5692
|
+
"version": "19.2.0",
|
|
5693
|
+
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.0.tgz",
|
|
5694
|
+
"integrity": "sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==",
|
|
5695
|
+
"license": "MIT",
|
|
5696
|
+
"dependencies": {
|
|
5697
|
+
"scheduler": "^0.27.0"
|
|
5698
|
+
},
|
|
5699
|
+
"peerDependencies": {
|
|
5700
|
+
"react": "^19.2.0"
|
|
5701
|
+
}
|
|
5702
|
+
},
|
|
5703
|
+
"node_modules/react-refresh": {
|
|
5704
|
+
"version": "0.17.0",
|
|
5705
|
+
"resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz",
|
|
5706
|
+
"integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==",
|
|
5707
|
+
"license": "MIT",
|
|
5708
|
+
"engines": {
|
|
5709
|
+
"node": ">=0.10.0"
|
|
5710
|
+
}
|
|
5711
|
+
},
|
|
4784
5712
|
"node_modules/readdirp": {
|
|
4785
5713
|
"version": "4.1.2",
|
|
4786
5714
|
"license": "MIT",
|
|
@@ -5248,6 +6176,12 @@
|
|
|
5248
6176
|
"queue-microtask": "^1.2.2"
|
|
5249
6177
|
}
|
|
5250
6178
|
},
|
|
6179
|
+
"node_modules/scheduler": {
|
|
6180
|
+
"version": "0.27.0",
|
|
6181
|
+
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
|
|
6182
|
+
"integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
|
|
6183
|
+
"license": "MIT"
|
|
6184
|
+
},
|
|
5251
6185
|
"node_modules/section-matter": {
|
|
5252
6186
|
"version": "1.0.0",
|
|
5253
6187
|
"license": "MIT",
|
|
@@ -5783,6 +6717,12 @@
|
|
|
5783
6717
|
"node": ">=0.10.0"
|
|
5784
6718
|
}
|
|
5785
6719
|
},
|
|
6720
|
+
"node_modules/style-mod": {
|
|
6721
|
+
"version": "4.1.3",
|
|
6722
|
+
"resolved": "https://registry.npmjs.org/style-mod/-/style-mod-4.1.3.tgz",
|
|
6723
|
+
"integrity": "sha512-i/n8VsZydrugj3Iuzll8+x/00GH2vnYsk1eomD8QiRrSAeW6ItbCQDtfXCeJHd0iwiNagqjQkvpvREEPtW3IoQ==",
|
|
6724
|
+
"license": "MIT"
|
|
6725
|
+
},
|
|
5786
6726
|
"node_modules/style-to-js": {
|
|
5787
6727
|
"version": "1.1.21",
|
|
5788
6728
|
"license": "MIT",
|
|
@@ -5834,6 +6774,22 @@
|
|
|
5834
6774
|
"version": "0.3.2",
|
|
5835
6775
|
"license": "MIT"
|
|
5836
6776
|
},
|
|
6777
|
+
"node_modules/tinyglobby": {
|
|
6778
|
+
"version": "0.2.15",
|
|
6779
|
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
|
|
6780
|
+
"integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
|
|
6781
|
+
"license": "MIT",
|
|
6782
|
+
"dependencies": {
|
|
6783
|
+
"fdir": "^6.5.0",
|
|
6784
|
+
"picomatch": "^4.0.3"
|
|
6785
|
+
},
|
|
6786
|
+
"engines": {
|
|
6787
|
+
"node": ">=12.0.0"
|
|
6788
|
+
},
|
|
6789
|
+
"funding": {
|
|
6790
|
+
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
6791
|
+
}
|
|
6792
|
+
},
|
|
5837
6793
|
"node_modules/to-regex-range": {
|
|
5838
6794
|
"version": "5.0.1",
|
|
5839
6795
|
"license": "MIT",
|
|
@@ -5922,6 +6878,12 @@
|
|
|
5922
6878
|
"integrity": "sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==",
|
|
5923
6879
|
"license": "MIT"
|
|
5924
6880
|
},
|
|
6881
|
+
"node_modules/ultrahtml": {
|
|
6882
|
+
"version": "1.6.0",
|
|
6883
|
+
"resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.6.0.tgz",
|
|
6884
|
+
"integrity": "sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==",
|
|
6885
|
+
"license": "MIT"
|
|
6886
|
+
},
|
|
5925
6887
|
"node_modules/undici": {
|
|
5926
6888
|
"version": "5.29.0",
|
|
5927
6889
|
"resolved": "https://registry.npmjs.org/undici/-/undici-5.29.0.tgz",
|
|
@@ -6425,6 +7387,12 @@
|
|
|
6425
7387
|
"version": "3.1.0",
|
|
6426
7388
|
"license": "MIT"
|
|
6427
7389
|
},
|
|
7390
|
+
"node_modules/w3c-keyname": {
|
|
7391
|
+
"version": "2.2.8",
|
|
7392
|
+
"resolved": "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.8.tgz",
|
|
7393
|
+
"integrity": "sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==",
|
|
7394
|
+
"license": "MIT"
|
|
7395
|
+
},
|
|
6428
7396
|
"node_modules/web-namespaces": {
|
|
6429
7397
|
"version": "2.0.1",
|
|
6430
7398
|
"license": "MIT",
|