plutonium 0.50.0 → 0.51.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.
- checksums.yaml +4 -4
- data/.claude/skills/plutonium/SKILL.md +85 -102
- data/.claude/skills/plutonium-app/SKILL.md +572 -0
- data/.claude/skills/plutonium-auth/SKILL.md +163 -300
- data/.claude/skills/plutonium-behavior/SKILL.md +838 -0
- data/.claude/skills/plutonium-resource/SKILL.md +1176 -0
- data/.claude/skills/plutonium-tenancy/SKILL.md +655 -0
- data/.claude/skills/plutonium-testing/SKILL.md +6 -5
- data/.claude/skills/plutonium-ui/SKILL.md +900 -0
- data/CHANGELOG.md +27 -2
- data/Rakefile +2 -1
- data/app/assets/plutonium.css +1 -11
- data/app/assets/plutonium.js +1009 -1214
- data/app/assets/plutonium.js.map +3 -3
- data/app/assets/plutonium.min.js +52 -51
- data/app/assets/plutonium.min.js.map +3 -3
- data/docs/.vitepress/config.ts +37 -27
- data/docs/getting-started/index.md +22 -29
- data/docs/getting-started/installation.md +37 -80
- data/docs/getting-started/tutorial/index.md +4 -5
- data/docs/guides/adding-resources.md +66 -377
- data/docs/guides/authentication.md +94 -463
- data/docs/guides/authorization.md +124 -370
- data/docs/guides/creating-packages.md +94 -296
- data/docs/guides/custom-actions.md +121 -441
- data/docs/guides/index.md +22 -42
- data/docs/guides/multi-tenancy.md +116 -187
- data/docs/guides/nested-resources.md +103 -431
- data/docs/guides/search-filtering.md +123 -240
- data/docs/guides/testing.md +5 -4
- data/docs/guides/theming.md +157 -407
- data/docs/guides/troubleshooting.md +5 -3
- data/docs/guides/user-invites.md +106 -425
- data/docs/guides/user-profile.md +76 -243
- data/docs/index.md +1 -1
- data/docs/reference/app/generators.md +517 -0
- data/docs/reference/app/index.md +158 -0
- data/docs/reference/app/packages.md +146 -0
- data/docs/reference/app/portals.md +377 -0
- data/docs/reference/auth/accounts.md +230 -0
- data/docs/reference/auth/index.md +88 -0
- data/docs/reference/auth/profile.md +185 -0
- data/docs/reference/behavior/controllers.md +395 -0
- data/docs/reference/behavior/index.md +22 -0
- data/docs/reference/behavior/interactions.md +341 -0
- data/docs/reference/behavior/policies.md +417 -0
- data/docs/reference/index.md +56 -49
- data/docs/reference/resource/actions.md +423 -0
- data/docs/reference/resource/definition.md +508 -0
- data/docs/reference/resource/index.md +50 -0
- data/docs/reference/resource/model.md +348 -0
- data/docs/reference/resource/query.md +305 -0
- data/docs/reference/tenancy/entity-scoping.md +361 -0
- data/docs/reference/tenancy/index.md +36 -0
- data/docs/reference/tenancy/invites.md +393 -0
- data/docs/reference/tenancy/nested-resources.md +267 -0
- data/docs/reference/testing/index.md +287 -0
- data/docs/reference/ui/assets.md +400 -0
- data/docs/reference/ui/components.md +165 -0
- data/docs/reference/ui/displays.md +104 -0
- data/docs/reference/ui/forms.md +284 -0
- data/docs/reference/ui/index.md +30 -0
- data/docs/reference/ui/layouts.md +106 -0
- data/docs/reference/ui/pages.md +189 -0
- data/docs/reference/ui/tables.md +117 -0
- data/docs/superpowers/specs/2026-05-09-typeahead-endpoint-design.md +203 -0
- data/docs/superpowers/specs/2026-05-12-skill-compaction-design.md +99 -0
- data/docs/superpowers/specs/2026-05-13-docs-restructure-design.md +186 -0
- data/gemfiles/rails_7.gemfile.lock +1 -1
- data/gemfiles/rails_8.0.gemfile.lock +1 -1
- data/gemfiles/rails_8.1.gemfile.lock +1 -1
- data/lib/generators/pu/core/update/update_generator.rb +0 -20
- data/lib/generators/pu/invites/install_generator.rb +1 -0
- data/lib/plutonium/definition/base.rb +1 -1
- data/lib/plutonium/definition/{views.rb → index_views.rb} +21 -20
- data/lib/plutonium/helpers/turbo_helper.rb +11 -0
- data/lib/plutonium/helpers/turbo_stream_actions_helper.rb +14 -0
- data/lib/plutonium/resource/controller.rb +1 -0
- data/lib/plutonium/resource/controllers/crud_actions.rb +19 -1
- data/lib/plutonium/resource/controllers/typeahead.rb +180 -0
- data/lib/plutonium/resource/policy.rb +7 -0
- data/lib/plutonium/routing/mapper_extensions.rb +15 -0
- data/lib/plutonium/ui/component/methods.rb +4 -0
- data/lib/plutonium/ui/form/base.rb +6 -2
- data/lib/plutonium/ui/form/components/json.rb +58 -0
- data/lib/plutonium/ui/form/components/resource_select.rb +62 -8
- data/lib/plutonium/ui/form/components/secure_association.rb +98 -22
- data/lib/plutonium/ui/form/concerns/typeahead_attributes.rb +83 -0
- data/lib/plutonium/ui/form/resource.rb +0 -4
- data/lib/plutonium/ui/grid/resource.rb +1 -1
- data/lib/plutonium/ui/layout/base.rb +1 -0
- data/lib/plutonium/ui/page/base.rb +0 -7
- data/lib/plutonium/ui/page/index.rb +4 -4
- data/lib/plutonium/ui/table/resource.rb +1 -1
- data/lib/plutonium/version.rb +1 -1
- data/lib/plutonium.rb +8 -0
- data/lib/tasks/release.rake +15 -1
- data/package.json +10 -10
- data/src/css/slim_select.css +4 -0
- data/src/js/controllers/slim_select_controller.js +61 -0
- data/src/js/turbo/turbo_actions.js +33 -0
- data/yarn.lock +553 -543
- metadata +44 -33
- data/.claude/skills/plutonium-assets/SKILL.md +0 -512
- data/.claude/skills/plutonium-controller/SKILL.md +0 -396
- data/.claude/skills/plutonium-create-resource/SKILL.md +0 -303
- data/.claude/skills/plutonium-definition/SKILL.md +0 -1223
- data/.claude/skills/plutonium-entity-scoping/SKILL.md +0 -317
- data/.claude/skills/plutonium-forms/SKILL.md +0 -465
- data/.claude/skills/plutonium-installation/SKILL.md +0 -331
- data/.claude/skills/plutonium-interaction/SKILL.md +0 -413
- data/.claude/skills/plutonium-invites/SKILL.md +0 -408
- data/.claude/skills/plutonium-model/SKILL.md +0 -440
- data/.claude/skills/plutonium-nested-resources/SKILL.md +0 -360
- data/.claude/skills/plutonium-package/SKILL.md +0 -198
- data/.claude/skills/plutonium-policy/SKILL.md +0 -456
- data/.claude/skills/plutonium-portal/SKILL.md +0 -410
- data/.claude/skills/plutonium-views/SKILL.md +0 -651
- data/docs/reference/assets/index.md +0 -496
- data/docs/reference/controller/index.md +0 -412
- data/docs/reference/definition/actions.md +0 -462
- data/docs/reference/definition/fields.md +0 -383
- data/docs/reference/definition/index.md +0 -326
- data/docs/reference/definition/query.md +0 -351
- data/docs/reference/generators/index.md +0 -648
- data/docs/reference/interaction/index.md +0 -449
- data/docs/reference/model/features.md +0 -248
- data/docs/reference/model/index.md +0 -218
- data/docs/reference/policy/index.md +0 -456
- data/docs/reference/portal/index.md +0 -379
- data/docs/reference/views/forms.md +0 -411
- data/docs/reference/views/index.md +0 -544
data/yarn.lock
CHANGED
|
@@ -275,45 +275,10 @@ __metadata:
|
|
|
275
275
|
languageName: node
|
|
276
276
|
linkType: hard
|
|
277
277
|
|
|
278
|
-
"@chevrotain/
|
|
279
|
-
version: 11.
|
|
280
|
-
resolution: "@chevrotain/
|
|
281
|
-
|
|
282
|
-
"@chevrotain/gast": "npm:11.0.3"
|
|
283
|
-
"@chevrotain/types": "npm:11.0.3"
|
|
284
|
-
lodash-es: "npm:4.17.21"
|
|
285
|
-
checksum: 10c0/9e945a0611386e4e08af34c2d0b3af36c1af08f726b58145f11310f2aeafcb2d65264c06ec65a32df6b6a65771e6a55be70580c853afe3ceb51487e506967104
|
|
286
|
-
languageName: node
|
|
287
|
-
linkType: hard
|
|
288
|
-
|
|
289
|
-
"@chevrotain/gast@npm:11.0.3":
|
|
290
|
-
version: 11.0.3
|
|
291
|
-
resolution: "@chevrotain/gast@npm:11.0.3"
|
|
292
|
-
dependencies:
|
|
293
|
-
"@chevrotain/types": "npm:11.0.3"
|
|
294
|
-
lodash-es: "npm:4.17.21"
|
|
295
|
-
checksum: 10c0/54fc44d7b4a7b0323f49d957dd88ad44504922d30cb226d93b430b0e09925efe44e0726068581d777f423fabfb878a2238ed2c87b690c0c0014ebd12b6968354
|
|
296
|
-
languageName: node
|
|
297
|
-
linkType: hard
|
|
298
|
-
|
|
299
|
-
"@chevrotain/regexp-to-ast@npm:11.0.3":
|
|
300
|
-
version: 11.0.3
|
|
301
|
-
resolution: "@chevrotain/regexp-to-ast@npm:11.0.3"
|
|
302
|
-
checksum: 10c0/6939c5c94fbfb8c559a4a37a283af5ded8e6147b184a7d7bcf5ad1404d9d663c78d81602bd8ea8458ec497358a9e1671541099c511835d0be2cad46f00c62b3f
|
|
303
|
-
languageName: node
|
|
304
|
-
linkType: hard
|
|
305
|
-
|
|
306
|
-
"@chevrotain/types@npm:11.0.3":
|
|
307
|
-
version: 11.0.3
|
|
308
|
-
resolution: "@chevrotain/types@npm:11.0.3"
|
|
309
|
-
checksum: 10c0/72fe8f0010ebef848e47faea14a88c6fdc3cdbafaef6b13df4a18c7d33249b1b675e37b05cb90a421700c7016dae7cd4187ab6b549e176a81cea434f69cd2503
|
|
310
|
-
languageName: node
|
|
311
|
-
linkType: hard
|
|
312
|
-
|
|
313
|
-
"@chevrotain/utils@npm:11.0.3":
|
|
314
|
-
version: 11.0.3
|
|
315
|
-
resolution: "@chevrotain/utils@npm:11.0.3"
|
|
316
|
-
checksum: 10c0/b31972d1b2d444eef1499cf9b7576fc1793e8544910de33a3c18e07c270cfad88067f175d0ee63e7bc604713ebed647f8190db45cc8311852cd2d4fe2ef14068
|
|
278
|
+
"@chevrotain/types@npm:~11.1.1":
|
|
279
|
+
version: 11.1.2
|
|
280
|
+
resolution: "@chevrotain/types@npm:11.1.2"
|
|
281
|
+
checksum: 10c0/c0c4679a3d407df34e18d5adfa7ac599b4a2bfddbf68da6e43678b9b3e16ab911de7766b37b9fc466261c3dead3db1b620e2e344f800fa9f0f381720475eda8f
|
|
317
282
|
languageName: node
|
|
318
283
|
linkType: hard
|
|
319
284
|
|
|
@@ -360,10 +325,31 @@ __metadata:
|
|
|
360
325
|
languageName: node
|
|
361
326
|
linkType: hard
|
|
362
327
|
|
|
363
|
-
"@
|
|
364
|
-
version:
|
|
365
|
-
resolution: "@
|
|
366
|
-
|
|
328
|
+
"@emnapi/core@npm:^1.10.0":
|
|
329
|
+
version: 1.10.0
|
|
330
|
+
resolution: "@emnapi/core@npm:1.10.0"
|
|
331
|
+
dependencies:
|
|
332
|
+
"@emnapi/wasi-threads": "npm:1.2.1"
|
|
333
|
+
tslib: "npm:^2.4.0"
|
|
334
|
+
checksum: 10c0/f51d08227857b60632de7714d708124f0e100a1462dde6df8221760939aa3204a73193830371830fac0716f3ccd2129f2cac1b17cd7d7958bc4da9018a296edb
|
|
335
|
+
languageName: node
|
|
336
|
+
linkType: hard
|
|
337
|
+
|
|
338
|
+
"@emnapi/runtime@npm:^1.10.0":
|
|
339
|
+
version: 1.10.0
|
|
340
|
+
resolution: "@emnapi/runtime@npm:1.10.0"
|
|
341
|
+
dependencies:
|
|
342
|
+
tslib: "npm:^2.4.0"
|
|
343
|
+
checksum: 10c0/953f14991d1aefb92ee6f8eb27dea725e484791a53a0cb5f47d9e0087b9a2c929ff2e92adf95af15d6ad456db6300c6b761ebf72b50a875b874a83520b3ba093
|
|
344
|
+
languageName: node
|
|
345
|
+
linkType: hard
|
|
346
|
+
|
|
347
|
+
"@emnapi/wasi-threads@npm:1.2.1, @emnapi/wasi-threads@npm:^1.2.1":
|
|
348
|
+
version: 1.2.1
|
|
349
|
+
resolution: "@emnapi/wasi-threads@npm:1.2.1"
|
|
350
|
+
dependencies:
|
|
351
|
+
tslib: "npm:^2.4.0"
|
|
352
|
+
checksum: 10c0/32fcfa81ab396533b2ec1f4082b1ff779a05d9c836bbbd3f4398405b0e6814c0d9503b7993130e37bc6941dbc1ded49f55e9700ae9ca4e803bab2b5bc5deb331
|
|
367
353
|
languageName: node
|
|
368
354
|
linkType: hard
|
|
369
355
|
|
|
@@ -374,10 +360,10 @@ __metadata:
|
|
|
374
360
|
languageName: node
|
|
375
361
|
linkType: hard
|
|
376
362
|
|
|
377
|
-
"@esbuild/
|
|
378
|
-
version: 0.
|
|
379
|
-
resolution: "@esbuild/
|
|
380
|
-
conditions: os=
|
|
363
|
+
"@esbuild/aix-ppc64@npm:0.28.0":
|
|
364
|
+
version: 0.28.0
|
|
365
|
+
resolution: "@esbuild/aix-ppc64@npm:0.28.0"
|
|
366
|
+
conditions: os=aix & cpu=ppc64
|
|
381
367
|
languageName: node
|
|
382
368
|
linkType: hard
|
|
383
369
|
|
|
@@ -388,10 +374,10 @@ __metadata:
|
|
|
388
374
|
languageName: node
|
|
389
375
|
linkType: hard
|
|
390
376
|
|
|
391
|
-
"@esbuild/android-
|
|
392
|
-
version: 0.
|
|
393
|
-
resolution: "@esbuild/android-
|
|
394
|
-
conditions: os=android & cpu=
|
|
377
|
+
"@esbuild/android-arm64@npm:0.28.0":
|
|
378
|
+
version: 0.28.0
|
|
379
|
+
resolution: "@esbuild/android-arm64@npm:0.28.0"
|
|
380
|
+
conditions: os=android & cpu=arm64
|
|
395
381
|
languageName: node
|
|
396
382
|
linkType: hard
|
|
397
383
|
|
|
@@ -402,10 +388,10 @@ __metadata:
|
|
|
402
388
|
languageName: node
|
|
403
389
|
linkType: hard
|
|
404
390
|
|
|
405
|
-
"@esbuild/android-
|
|
406
|
-
version: 0.
|
|
407
|
-
resolution: "@esbuild/android-
|
|
408
|
-
conditions: os=android & cpu=
|
|
391
|
+
"@esbuild/android-arm@npm:0.28.0":
|
|
392
|
+
version: 0.28.0
|
|
393
|
+
resolution: "@esbuild/android-arm@npm:0.28.0"
|
|
394
|
+
conditions: os=android & cpu=arm
|
|
409
395
|
languageName: node
|
|
410
396
|
linkType: hard
|
|
411
397
|
|
|
@@ -416,10 +402,10 @@ __metadata:
|
|
|
416
402
|
languageName: node
|
|
417
403
|
linkType: hard
|
|
418
404
|
|
|
419
|
-
"@esbuild/
|
|
420
|
-
version: 0.
|
|
421
|
-
resolution: "@esbuild/
|
|
422
|
-
conditions: os=
|
|
405
|
+
"@esbuild/android-x64@npm:0.28.0":
|
|
406
|
+
version: 0.28.0
|
|
407
|
+
resolution: "@esbuild/android-x64@npm:0.28.0"
|
|
408
|
+
conditions: os=android & cpu=x64
|
|
423
409
|
languageName: node
|
|
424
410
|
linkType: hard
|
|
425
411
|
|
|
@@ -430,10 +416,10 @@ __metadata:
|
|
|
430
416
|
languageName: node
|
|
431
417
|
linkType: hard
|
|
432
418
|
|
|
433
|
-
"@esbuild/darwin-
|
|
434
|
-
version: 0.
|
|
435
|
-
resolution: "@esbuild/darwin-
|
|
436
|
-
conditions: os=darwin & cpu=
|
|
419
|
+
"@esbuild/darwin-arm64@npm:0.28.0":
|
|
420
|
+
version: 0.28.0
|
|
421
|
+
resolution: "@esbuild/darwin-arm64@npm:0.28.0"
|
|
422
|
+
conditions: os=darwin & cpu=arm64
|
|
437
423
|
languageName: node
|
|
438
424
|
linkType: hard
|
|
439
425
|
|
|
@@ -444,10 +430,10 @@ __metadata:
|
|
|
444
430
|
languageName: node
|
|
445
431
|
linkType: hard
|
|
446
432
|
|
|
447
|
-
"@esbuild/
|
|
448
|
-
version: 0.
|
|
449
|
-
resolution: "@esbuild/
|
|
450
|
-
conditions: os=
|
|
433
|
+
"@esbuild/darwin-x64@npm:0.28.0":
|
|
434
|
+
version: 0.28.0
|
|
435
|
+
resolution: "@esbuild/darwin-x64@npm:0.28.0"
|
|
436
|
+
conditions: os=darwin & cpu=x64
|
|
451
437
|
languageName: node
|
|
452
438
|
linkType: hard
|
|
453
439
|
|
|
@@ -458,10 +444,10 @@ __metadata:
|
|
|
458
444
|
languageName: node
|
|
459
445
|
linkType: hard
|
|
460
446
|
|
|
461
|
-
"@esbuild/freebsd-
|
|
462
|
-
version: 0.
|
|
463
|
-
resolution: "@esbuild/freebsd-
|
|
464
|
-
conditions: os=freebsd & cpu=
|
|
447
|
+
"@esbuild/freebsd-arm64@npm:0.28.0":
|
|
448
|
+
version: 0.28.0
|
|
449
|
+
resolution: "@esbuild/freebsd-arm64@npm:0.28.0"
|
|
450
|
+
conditions: os=freebsd & cpu=arm64
|
|
465
451
|
languageName: node
|
|
466
452
|
linkType: hard
|
|
467
453
|
|
|
@@ -472,10 +458,10 @@ __metadata:
|
|
|
472
458
|
languageName: node
|
|
473
459
|
linkType: hard
|
|
474
460
|
|
|
475
|
-
"@esbuild/
|
|
476
|
-
version: 0.
|
|
477
|
-
resolution: "@esbuild/
|
|
478
|
-
conditions: os=
|
|
461
|
+
"@esbuild/freebsd-x64@npm:0.28.0":
|
|
462
|
+
version: 0.28.0
|
|
463
|
+
resolution: "@esbuild/freebsd-x64@npm:0.28.0"
|
|
464
|
+
conditions: os=freebsd & cpu=x64
|
|
479
465
|
languageName: node
|
|
480
466
|
linkType: hard
|
|
481
467
|
|
|
@@ -486,10 +472,10 @@ __metadata:
|
|
|
486
472
|
languageName: node
|
|
487
473
|
linkType: hard
|
|
488
474
|
|
|
489
|
-
"@esbuild/linux-
|
|
490
|
-
version: 0.
|
|
491
|
-
resolution: "@esbuild/linux-
|
|
492
|
-
conditions: os=linux & cpu=
|
|
475
|
+
"@esbuild/linux-arm64@npm:0.28.0":
|
|
476
|
+
version: 0.28.0
|
|
477
|
+
resolution: "@esbuild/linux-arm64@npm:0.28.0"
|
|
478
|
+
conditions: os=linux & cpu=arm64
|
|
493
479
|
languageName: node
|
|
494
480
|
linkType: hard
|
|
495
481
|
|
|
@@ -500,10 +486,10 @@ __metadata:
|
|
|
500
486
|
languageName: node
|
|
501
487
|
linkType: hard
|
|
502
488
|
|
|
503
|
-
"@esbuild/linux-
|
|
504
|
-
version: 0.
|
|
505
|
-
resolution: "@esbuild/linux-
|
|
506
|
-
conditions: os=linux & cpu=
|
|
489
|
+
"@esbuild/linux-arm@npm:0.28.0":
|
|
490
|
+
version: 0.28.0
|
|
491
|
+
resolution: "@esbuild/linux-arm@npm:0.28.0"
|
|
492
|
+
conditions: os=linux & cpu=arm
|
|
507
493
|
languageName: node
|
|
508
494
|
linkType: hard
|
|
509
495
|
|
|
@@ -514,10 +500,10 @@ __metadata:
|
|
|
514
500
|
languageName: node
|
|
515
501
|
linkType: hard
|
|
516
502
|
|
|
517
|
-
"@esbuild/linux-
|
|
518
|
-
version: 0.
|
|
519
|
-
resolution: "@esbuild/linux-
|
|
520
|
-
conditions: os=linux & cpu=
|
|
503
|
+
"@esbuild/linux-ia32@npm:0.28.0":
|
|
504
|
+
version: 0.28.0
|
|
505
|
+
resolution: "@esbuild/linux-ia32@npm:0.28.0"
|
|
506
|
+
conditions: os=linux & cpu=ia32
|
|
521
507
|
languageName: node
|
|
522
508
|
linkType: hard
|
|
523
509
|
|
|
@@ -528,10 +514,10 @@ __metadata:
|
|
|
528
514
|
languageName: node
|
|
529
515
|
linkType: hard
|
|
530
516
|
|
|
531
|
-
"@esbuild/linux-
|
|
532
|
-
version: 0.
|
|
533
|
-
resolution: "@esbuild/linux-
|
|
534
|
-
conditions: os=linux & cpu=
|
|
517
|
+
"@esbuild/linux-loong64@npm:0.28.0":
|
|
518
|
+
version: 0.28.0
|
|
519
|
+
resolution: "@esbuild/linux-loong64@npm:0.28.0"
|
|
520
|
+
conditions: os=linux & cpu=loong64
|
|
535
521
|
languageName: node
|
|
536
522
|
linkType: hard
|
|
537
523
|
|
|
@@ -542,10 +528,10 @@ __metadata:
|
|
|
542
528
|
languageName: node
|
|
543
529
|
linkType: hard
|
|
544
530
|
|
|
545
|
-
"@esbuild/linux-
|
|
546
|
-
version: 0.
|
|
547
|
-
resolution: "@esbuild/linux-
|
|
548
|
-
conditions: os=linux & cpu=
|
|
531
|
+
"@esbuild/linux-mips64el@npm:0.28.0":
|
|
532
|
+
version: 0.28.0
|
|
533
|
+
resolution: "@esbuild/linux-mips64el@npm:0.28.0"
|
|
534
|
+
conditions: os=linux & cpu=mips64el
|
|
549
535
|
languageName: node
|
|
550
536
|
linkType: hard
|
|
551
537
|
|
|
@@ -556,10 +542,10 @@ __metadata:
|
|
|
556
542
|
languageName: node
|
|
557
543
|
linkType: hard
|
|
558
544
|
|
|
559
|
-
"@esbuild/linux-
|
|
560
|
-
version: 0.
|
|
561
|
-
resolution: "@esbuild/linux-
|
|
562
|
-
conditions: os=linux & cpu=
|
|
545
|
+
"@esbuild/linux-ppc64@npm:0.28.0":
|
|
546
|
+
version: 0.28.0
|
|
547
|
+
resolution: "@esbuild/linux-ppc64@npm:0.28.0"
|
|
548
|
+
conditions: os=linux & cpu=ppc64
|
|
563
549
|
languageName: node
|
|
564
550
|
linkType: hard
|
|
565
551
|
|
|
@@ -570,10 +556,10 @@ __metadata:
|
|
|
570
556
|
languageName: node
|
|
571
557
|
linkType: hard
|
|
572
558
|
|
|
573
|
-
"@esbuild/linux-
|
|
574
|
-
version: 0.
|
|
575
|
-
resolution: "@esbuild/linux-
|
|
576
|
-
conditions: os=linux & cpu=
|
|
559
|
+
"@esbuild/linux-riscv64@npm:0.28.0":
|
|
560
|
+
version: 0.28.0
|
|
561
|
+
resolution: "@esbuild/linux-riscv64@npm:0.28.0"
|
|
562
|
+
conditions: os=linux & cpu=riscv64
|
|
577
563
|
languageName: node
|
|
578
564
|
linkType: hard
|
|
579
565
|
|
|
@@ -584,10 +570,10 @@ __metadata:
|
|
|
584
570
|
languageName: node
|
|
585
571
|
linkType: hard
|
|
586
572
|
|
|
587
|
-
"@esbuild/linux-
|
|
588
|
-
version: 0.
|
|
589
|
-
resolution: "@esbuild/linux-
|
|
590
|
-
conditions: os=linux & cpu=
|
|
573
|
+
"@esbuild/linux-s390x@npm:0.28.0":
|
|
574
|
+
version: 0.28.0
|
|
575
|
+
resolution: "@esbuild/linux-s390x@npm:0.28.0"
|
|
576
|
+
conditions: os=linux & cpu=s390x
|
|
591
577
|
languageName: node
|
|
592
578
|
linkType: hard
|
|
593
579
|
|
|
@@ -598,10 +584,17 @@ __metadata:
|
|
|
598
584
|
languageName: node
|
|
599
585
|
linkType: hard
|
|
600
586
|
|
|
601
|
-
"@esbuild/
|
|
602
|
-
version: 0.
|
|
603
|
-
resolution: "@esbuild/
|
|
604
|
-
conditions: os=
|
|
587
|
+
"@esbuild/linux-x64@npm:0.28.0":
|
|
588
|
+
version: 0.28.0
|
|
589
|
+
resolution: "@esbuild/linux-x64@npm:0.28.0"
|
|
590
|
+
conditions: os=linux & cpu=x64
|
|
591
|
+
languageName: node
|
|
592
|
+
linkType: hard
|
|
593
|
+
|
|
594
|
+
"@esbuild/netbsd-arm64@npm:0.28.0":
|
|
595
|
+
version: 0.28.0
|
|
596
|
+
resolution: "@esbuild/netbsd-arm64@npm:0.28.0"
|
|
597
|
+
conditions: os=netbsd & cpu=arm64
|
|
605
598
|
languageName: node
|
|
606
599
|
linkType: hard
|
|
607
600
|
|
|
@@ -612,10 +605,17 @@ __metadata:
|
|
|
612
605
|
languageName: node
|
|
613
606
|
linkType: hard
|
|
614
607
|
|
|
615
|
-
"@esbuild/
|
|
616
|
-
version: 0.
|
|
617
|
-
resolution: "@esbuild/
|
|
618
|
-
conditions: os=
|
|
608
|
+
"@esbuild/netbsd-x64@npm:0.28.0":
|
|
609
|
+
version: 0.28.0
|
|
610
|
+
resolution: "@esbuild/netbsd-x64@npm:0.28.0"
|
|
611
|
+
conditions: os=netbsd & cpu=x64
|
|
612
|
+
languageName: node
|
|
613
|
+
linkType: hard
|
|
614
|
+
|
|
615
|
+
"@esbuild/openbsd-arm64@npm:0.28.0":
|
|
616
|
+
version: 0.28.0
|
|
617
|
+
resolution: "@esbuild/openbsd-arm64@npm:0.28.0"
|
|
618
|
+
conditions: os=openbsd & cpu=arm64
|
|
619
619
|
languageName: node
|
|
620
620
|
linkType: hard
|
|
621
621
|
|
|
@@ -626,10 +626,17 @@ __metadata:
|
|
|
626
626
|
languageName: node
|
|
627
627
|
linkType: hard
|
|
628
628
|
|
|
629
|
-
"@esbuild/
|
|
630
|
-
version: 0.
|
|
631
|
-
resolution: "@esbuild/
|
|
632
|
-
conditions: os=
|
|
629
|
+
"@esbuild/openbsd-x64@npm:0.28.0":
|
|
630
|
+
version: 0.28.0
|
|
631
|
+
resolution: "@esbuild/openbsd-x64@npm:0.28.0"
|
|
632
|
+
conditions: os=openbsd & cpu=x64
|
|
633
|
+
languageName: node
|
|
634
|
+
linkType: hard
|
|
635
|
+
|
|
636
|
+
"@esbuild/openharmony-arm64@npm:0.28.0":
|
|
637
|
+
version: 0.28.0
|
|
638
|
+
resolution: "@esbuild/openharmony-arm64@npm:0.28.0"
|
|
639
|
+
conditions: os=openharmony & cpu=arm64
|
|
633
640
|
languageName: node
|
|
634
641
|
linkType: hard
|
|
635
642
|
|
|
@@ -640,10 +647,10 @@ __metadata:
|
|
|
640
647
|
languageName: node
|
|
641
648
|
linkType: hard
|
|
642
649
|
|
|
643
|
-
"@esbuild/
|
|
644
|
-
version: 0.
|
|
645
|
-
resolution: "@esbuild/
|
|
646
|
-
conditions: os=
|
|
650
|
+
"@esbuild/sunos-x64@npm:0.28.0":
|
|
651
|
+
version: 0.28.0
|
|
652
|
+
resolution: "@esbuild/sunos-x64@npm:0.28.0"
|
|
653
|
+
conditions: os=sunos & cpu=x64
|
|
647
654
|
languageName: node
|
|
648
655
|
linkType: hard
|
|
649
656
|
|
|
@@ -654,10 +661,10 @@ __metadata:
|
|
|
654
661
|
languageName: node
|
|
655
662
|
linkType: hard
|
|
656
663
|
|
|
657
|
-
"@esbuild/win32-
|
|
658
|
-
version: 0.
|
|
659
|
-
resolution: "@esbuild/win32-
|
|
660
|
-
conditions: os=win32 & cpu=
|
|
664
|
+
"@esbuild/win32-arm64@npm:0.28.0":
|
|
665
|
+
version: 0.28.0
|
|
666
|
+
resolution: "@esbuild/win32-arm64@npm:0.28.0"
|
|
667
|
+
conditions: os=win32 & cpu=arm64
|
|
661
668
|
languageName: node
|
|
662
669
|
linkType: hard
|
|
663
670
|
|
|
@@ -668,10 +675,10 @@ __metadata:
|
|
|
668
675
|
languageName: node
|
|
669
676
|
linkType: hard
|
|
670
677
|
|
|
671
|
-
"@esbuild/win32-
|
|
672
|
-
version: 0.
|
|
673
|
-
resolution: "@esbuild/win32-
|
|
674
|
-
conditions: os=win32 & cpu=
|
|
678
|
+
"@esbuild/win32-ia32@npm:0.28.0":
|
|
679
|
+
version: 0.28.0
|
|
680
|
+
resolution: "@esbuild/win32-ia32@npm:0.28.0"
|
|
681
|
+
conditions: os=win32 & cpu=ia32
|
|
675
682
|
languageName: node
|
|
676
683
|
linkType: hard
|
|
677
684
|
|
|
@@ -682,6 +689,13 @@ __metadata:
|
|
|
682
689
|
languageName: node
|
|
683
690
|
linkType: hard
|
|
684
691
|
|
|
692
|
+
"@esbuild/win32-x64@npm:0.28.0":
|
|
693
|
+
version: 0.28.0
|
|
694
|
+
resolution: "@esbuild/win32-x64@npm:0.28.0"
|
|
695
|
+
conditions: os=win32 & cpu=x64
|
|
696
|
+
languageName: node
|
|
697
|
+
linkType: hard
|
|
698
|
+
|
|
685
699
|
"@gar/promise-retry@npm:^1.0.0":
|
|
686
700
|
version: 1.0.3
|
|
687
701
|
resolution: "@gar/promise-retry@npm:1.0.3"
|
|
@@ -719,14 +733,14 @@ __metadata:
|
|
|
719
733
|
languageName: node
|
|
720
734
|
linkType: hard
|
|
721
735
|
|
|
722
|
-
"@iconify/utils@npm:^3.0.
|
|
723
|
-
version: 3.1.
|
|
724
|
-
resolution: "@iconify/utils@npm:3.1.
|
|
736
|
+
"@iconify/utils@npm:^3.0.2":
|
|
737
|
+
version: 3.1.3
|
|
738
|
+
resolution: "@iconify/utils@npm:3.1.3"
|
|
725
739
|
dependencies:
|
|
726
740
|
"@antfu/install-pkg": "npm:^1.1.0"
|
|
727
741
|
"@iconify/types": "npm:^2.0.0"
|
|
728
|
-
|
|
729
|
-
checksum: 10c0/
|
|
742
|
+
import-meta-resolve: "npm:^4.2.0"
|
|
743
|
+
checksum: 10c0/6d01196172ef062a9cd0ee299dff3a405221e65057d6cca9ac9fb4bacd7d78168d54b0837b75d5f163038d770a3a7e4449d68ea2fc7a577c01b9ab51bfd53c98
|
|
730
744
|
languageName: node
|
|
731
745
|
linkType: hard
|
|
732
746
|
|
|
@@ -739,13 +753,50 @@ __metadata:
|
|
|
739
753
|
languageName: node
|
|
740
754
|
linkType: hard
|
|
741
755
|
|
|
742
|
-
"@jridgewell/
|
|
756
|
+
"@jridgewell/gen-mapping@npm:^0.3.5":
|
|
757
|
+
version: 0.3.13
|
|
758
|
+
resolution: "@jridgewell/gen-mapping@npm:0.3.13"
|
|
759
|
+
dependencies:
|
|
760
|
+
"@jridgewell/sourcemap-codec": "npm:^1.5.0"
|
|
761
|
+
"@jridgewell/trace-mapping": "npm:^0.3.24"
|
|
762
|
+
checksum: 10c0/9a7d65fb13bd9aec1fbab74cda08496839b7e2ceb31f5ab922b323e94d7c481ce0fc4fd7e12e2610915ed8af51178bdc61e168e92a8c8b8303b030b03489b13b
|
|
763
|
+
languageName: node
|
|
764
|
+
linkType: hard
|
|
765
|
+
|
|
766
|
+
"@jridgewell/remapping@npm:^2.3.5":
|
|
767
|
+
version: 2.3.5
|
|
768
|
+
resolution: "@jridgewell/remapping@npm:2.3.5"
|
|
769
|
+
dependencies:
|
|
770
|
+
"@jridgewell/gen-mapping": "npm:^0.3.5"
|
|
771
|
+
"@jridgewell/trace-mapping": "npm:^0.3.24"
|
|
772
|
+
checksum: 10c0/3de494219ffeb2c5c38711d0d7bb128097edf91893090a2dbc8ee0b55d092bb7347b1fd0f478486c5eab010e855c73927b1666f2107516d472d24a73017d1194
|
|
773
|
+
languageName: node
|
|
774
|
+
linkType: hard
|
|
775
|
+
|
|
776
|
+
"@jridgewell/resolve-uri@npm:^3.1.0":
|
|
777
|
+
version: 3.1.2
|
|
778
|
+
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
|
|
779
|
+
checksum: 10c0/d502e6fb516b35032331406d4e962c21fe77cdf1cbdb49c6142bcbd9e30507094b18972778a6e27cbad756209cfe34b1a27729e6fa08a2eb92b33943f680cf1e
|
|
780
|
+
languageName: node
|
|
781
|
+
linkType: hard
|
|
782
|
+
|
|
783
|
+
"@jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0, @jridgewell/sourcemap-codec@npm:^1.5.5":
|
|
743
784
|
version: 1.5.5
|
|
744
785
|
resolution: "@jridgewell/sourcemap-codec@npm:1.5.5"
|
|
745
786
|
checksum: 10c0/f9e538f302b63c0ebc06eecb1dd9918dd4289ed36147a0ddce35d6ea4d7ebbda243cda7b2213b6a5e1d8087a298d5cf630fb2bd39329cdecb82017023f6081a0
|
|
746
787
|
languageName: node
|
|
747
788
|
linkType: hard
|
|
748
789
|
|
|
790
|
+
"@jridgewell/trace-mapping@npm:^0.3.24":
|
|
791
|
+
version: 0.3.31
|
|
792
|
+
resolution: "@jridgewell/trace-mapping@npm:0.3.31"
|
|
793
|
+
dependencies:
|
|
794
|
+
"@jridgewell/resolve-uri": "npm:^3.1.0"
|
|
795
|
+
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
|
|
796
|
+
checksum: 10c0/4b30ec8cd56c5fd9a661f088230af01e0c1a3888d11ffb6b47639700f71225be21d1f7e168048d6d4f9449207b978a235c07c8f15c07705685d16dc06280e9d9
|
|
797
|
+
languageName: node
|
|
798
|
+
linkType: hard
|
|
799
|
+
|
|
749
800
|
"@mermaid-js/mermaid-mindmap@npm:^9.3.0":
|
|
750
801
|
version: 9.3.0
|
|
751
802
|
resolution: "@mermaid-js/mermaid-mindmap@npm:9.3.0"
|
|
@@ -761,12 +812,24 @@ __metadata:
|
|
|
761
812
|
languageName: node
|
|
762
813
|
linkType: hard
|
|
763
814
|
|
|
764
|
-
"@mermaid-js/parser@npm:^
|
|
765
|
-
version:
|
|
766
|
-
resolution: "@mermaid-js/parser@npm:
|
|
815
|
+
"@mermaid-js/parser@npm:^1.1.1":
|
|
816
|
+
version: 1.1.1
|
|
817
|
+
resolution: "@mermaid-js/parser@npm:1.1.1"
|
|
767
818
|
dependencies:
|
|
768
|
-
|
|
769
|
-
checksum: 10c0/
|
|
819
|
+
"@chevrotain/types": "npm:~11.1.1"
|
|
820
|
+
checksum: 10c0/66414d9d66f3a86a6751427cb8890a00beaaee2b7eba34c21b34b60cdaf9237d21e9b50b9bf1f560a01a600ee332d33b949fd8f12cbda3238aba50edc0dfdf15
|
|
821
|
+
languageName: node
|
|
822
|
+
linkType: hard
|
|
823
|
+
|
|
824
|
+
"@napi-rs/wasm-runtime@npm:^1.1.4":
|
|
825
|
+
version: 1.1.4
|
|
826
|
+
resolution: "@napi-rs/wasm-runtime@npm:1.1.4"
|
|
827
|
+
dependencies:
|
|
828
|
+
"@tybys/wasm-util": "npm:^0.10.1"
|
|
829
|
+
peerDependencies:
|
|
830
|
+
"@emnapi/core": ^1.7.1
|
|
831
|
+
"@emnapi/runtime": ^1.7.1
|
|
832
|
+
checksum: 10c0/2e88e1955258949ccf2d18c79975821ad38071b465ef126a5e14110977b97868867b016c1ad046e963cccc42c0bd9db6c8ff5fd1ebb61b87bb3487f339041658
|
|
770
833
|
languageName: node
|
|
771
834
|
linkType: hard
|
|
772
835
|
|
|
@@ -814,7 +877,7 @@ __metadata:
|
|
|
814
877
|
"@hotwired/turbo": "npm:^8.0.4"
|
|
815
878
|
"@popperjs/core": "npm:^2.11.8"
|
|
816
879
|
"@tailwindcss/forms": "npm:^0.5.10"
|
|
817
|
-
"@tailwindcss/postcss": "npm:^4.0
|
|
880
|
+
"@tailwindcss/postcss": "npm:^4.3.0"
|
|
818
881
|
"@tailwindcss/typography": "npm:^0.5.16"
|
|
819
882
|
"@uppy/core": "npm:^4.3.1"
|
|
820
883
|
"@uppy/dashboard": "npm:^4.1.3"
|
|
@@ -823,19 +886,19 @@ __metadata:
|
|
|
823
886
|
chokidar-cli: "npm:^3.0.0"
|
|
824
887
|
concurrently: "npm:^8.2.2"
|
|
825
888
|
cssnano: "npm:^7.0.2"
|
|
826
|
-
dompurify: "npm:^3.
|
|
827
|
-
esbuild: "npm:^0.
|
|
889
|
+
dompurify: "npm:^3.4.3"
|
|
890
|
+
esbuild: "npm:^0.28.0"
|
|
828
891
|
esbuild-plugin-manifest: "npm:^1.0.3"
|
|
829
892
|
flowbite-typography: "npm:^1.0.5"
|
|
830
893
|
lodash.debounce: "npm:^4.0.8"
|
|
831
894
|
marked: "npm:^15.0.3"
|
|
832
|
-
mermaid: "npm:^11.
|
|
833
|
-
postcss: "npm:^8.
|
|
834
|
-
postcss-cli: "npm:^11.0.
|
|
895
|
+
mermaid: "npm:^11.15.0"
|
|
896
|
+
postcss: "npm:^8.5.14"
|
|
897
|
+
postcss-cli: "npm:^11.0.1"
|
|
835
898
|
postcss-hash: "npm:^3.0.0"
|
|
836
|
-
postcss-import: "npm:^16.1.
|
|
837
|
-
tailwindcss: "npm:^4.0
|
|
838
|
-
vitepress: "npm:^1.4
|
|
899
|
+
postcss-import: "npm:^16.1.1"
|
|
900
|
+
tailwindcss: "npm:^4.3.0"
|
|
901
|
+
vitepress: "npm:^1.6.4"
|
|
839
902
|
vitepress-plugin-mermaid: "npm:^2.0.17"
|
|
840
903
|
languageName: unknown
|
|
841
904
|
linkType: soft
|
|
@@ -1106,109 +1169,128 @@ __metadata:
|
|
|
1106
1169
|
languageName: node
|
|
1107
1170
|
linkType: hard
|
|
1108
1171
|
|
|
1109
|
-
"@tailwindcss/node@npm:4.0
|
|
1110
|
-
version: 4.0
|
|
1111
|
-
resolution: "@tailwindcss/node@npm:4.0
|
|
1172
|
+
"@tailwindcss/node@npm:4.3.0":
|
|
1173
|
+
version: 4.3.0
|
|
1174
|
+
resolution: "@tailwindcss/node@npm:4.3.0"
|
|
1112
1175
|
dependencies:
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1176
|
+
"@jridgewell/remapping": "npm:^2.3.5"
|
|
1177
|
+
enhanced-resolve: "npm:^5.21.0"
|
|
1178
|
+
jiti: "npm:^2.6.1"
|
|
1179
|
+
lightningcss: "npm:1.32.0"
|
|
1180
|
+
magic-string: "npm:^0.30.21"
|
|
1181
|
+
source-map-js: "npm:^1.2.1"
|
|
1182
|
+
tailwindcss: "npm:4.3.0"
|
|
1183
|
+
checksum: 10c0/0c8c1eb7957d2c30fff731631301dd33d74359ed659821e804421c9cec4a14c7432f8ebcfcd535ffa210a2df228b85b4d431137d2e67f0d9239934ed2769d3bc
|
|
1117
1184
|
languageName: node
|
|
1118
1185
|
linkType: hard
|
|
1119
1186
|
|
|
1120
|
-
"@tailwindcss/oxide-android-arm64@npm:4.0
|
|
1121
|
-
version: 4.0
|
|
1122
|
-
resolution: "@tailwindcss/oxide-android-arm64@npm:4.0
|
|
1187
|
+
"@tailwindcss/oxide-android-arm64@npm:4.3.0":
|
|
1188
|
+
version: 4.3.0
|
|
1189
|
+
resolution: "@tailwindcss/oxide-android-arm64@npm:4.3.0"
|
|
1123
1190
|
conditions: os=android & cpu=arm64
|
|
1124
1191
|
languageName: node
|
|
1125
1192
|
linkType: hard
|
|
1126
1193
|
|
|
1127
|
-
"@tailwindcss/oxide-darwin-arm64@npm:4.0
|
|
1128
|
-
version: 4.0
|
|
1129
|
-
resolution: "@tailwindcss/oxide-darwin-arm64@npm:4.0
|
|
1194
|
+
"@tailwindcss/oxide-darwin-arm64@npm:4.3.0":
|
|
1195
|
+
version: 4.3.0
|
|
1196
|
+
resolution: "@tailwindcss/oxide-darwin-arm64@npm:4.3.0"
|
|
1130
1197
|
conditions: os=darwin & cpu=arm64
|
|
1131
1198
|
languageName: node
|
|
1132
1199
|
linkType: hard
|
|
1133
1200
|
|
|
1134
|
-
"@tailwindcss/oxide-darwin-x64@npm:4.0
|
|
1135
|
-
version: 4.0
|
|
1136
|
-
resolution: "@tailwindcss/oxide-darwin-x64@npm:4.0
|
|
1201
|
+
"@tailwindcss/oxide-darwin-x64@npm:4.3.0":
|
|
1202
|
+
version: 4.3.0
|
|
1203
|
+
resolution: "@tailwindcss/oxide-darwin-x64@npm:4.3.0"
|
|
1137
1204
|
conditions: os=darwin & cpu=x64
|
|
1138
1205
|
languageName: node
|
|
1139
1206
|
linkType: hard
|
|
1140
1207
|
|
|
1141
|
-
"@tailwindcss/oxide-freebsd-x64@npm:4.0
|
|
1142
|
-
version: 4.0
|
|
1143
|
-
resolution: "@tailwindcss/oxide-freebsd-x64@npm:4.0
|
|
1208
|
+
"@tailwindcss/oxide-freebsd-x64@npm:4.3.0":
|
|
1209
|
+
version: 4.3.0
|
|
1210
|
+
resolution: "@tailwindcss/oxide-freebsd-x64@npm:4.3.0"
|
|
1144
1211
|
conditions: os=freebsd & cpu=x64
|
|
1145
1212
|
languageName: node
|
|
1146
1213
|
linkType: hard
|
|
1147
1214
|
|
|
1148
|
-
"@tailwindcss/oxide-linux-arm-gnueabihf@npm:4.0
|
|
1149
|
-
version: 4.0
|
|
1150
|
-
resolution: "@tailwindcss/oxide-linux-arm-gnueabihf@npm:4.0
|
|
1215
|
+
"@tailwindcss/oxide-linux-arm-gnueabihf@npm:4.3.0":
|
|
1216
|
+
version: 4.3.0
|
|
1217
|
+
resolution: "@tailwindcss/oxide-linux-arm-gnueabihf@npm:4.3.0"
|
|
1151
1218
|
conditions: os=linux & cpu=arm
|
|
1152
1219
|
languageName: node
|
|
1153
1220
|
linkType: hard
|
|
1154
1221
|
|
|
1155
|
-
"@tailwindcss/oxide-linux-arm64-gnu@npm:4.0
|
|
1156
|
-
version: 4.0
|
|
1157
|
-
resolution: "@tailwindcss/oxide-linux-arm64-gnu@npm:4.0
|
|
1222
|
+
"@tailwindcss/oxide-linux-arm64-gnu@npm:4.3.0":
|
|
1223
|
+
version: 4.3.0
|
|
1224
|
+
resolution: "@tailwindcss/oxide-linux-arm64-gnu@npm:4.3.0"
|
|
1158
1225
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
|
1159
1226
|
languageName: node
|
|
1160
1227
|
linkType: hard
|
|
1161
1228
|
|
|
1162
|
-
"@tailwindcss/oxide-linux-arm64-musl@npm:4.0
|
|
1163
|
-
version: 4.0
|
|
1164
|
-
resolution: "@tailwindcss/oxide-linux-arm64-musl@npm:4.0
|
|
1229
|
+
"@tailwindcss/oxide-linux-arm64-musl@npm:4.3.0":
|
|
1230
|
+
version: 4.3.0
|
|
1231
|
+
resolution: "@tailwindcss/oxide-linux-arm64-musl@npm:4.3.0"
|
|
1165
1232
|
conditions: os=linux & cpu=arm64 & libc=musl
|
|
1166
1233
|
languageName: node
|
|
1167
1234
|
linkType: hard
|
|
1168
1235
|
|
|
1169
|
-
"@tailwindcss/oxide-linux-x64-gnu@npm:4.0
|
|
1170
|
-
version: 4.0
|
|
1171
|
-
resolution: "@tailwindcss/oxide-linux-x64-gnu@npm:4.0
|
|
1236
|
+
"@tailwindcss/oxide-linux-x64-gnu@npm:4.3.0":
|
|
1237
|
+
version: 4.3.0
|
|
1238
|
+
resolution: "@tailwindcss/oxide-linux-x64-gnu@npm:4.3.0"
|
|
1172
1239
|
conditions: os=linux & cpu=x64 & libc=glibc
|
|
1173
1240
|
languageName: node
|
|
1174
1241
|
linkType: hard
|
|
1175
1242
|
|
|
1176
|
-
"@tailwindcss/oxide-linux-x64-musl@npm:4.0
|
|
1177
|
-
version: 4.0
|
|
1178
|
-
resolution: "@tailwindcss/oxide-linux-x64-musl@npm:4.0
|
|
1243
|
+
"@tailwindcss/oxide-linux-x64-musl@npm:4.3.0":
|
|
1244
|
+
version: 4.3.0
|
|
1245
|
+
resolution: "@tailwindcss/oxide-linux-x64-musl@npm:4.3.0"
|
|
1179
1246
|
conditions: os=linux & cpu=x64 & libc=musl
|
|
1180
1247
|
languageName: node
|
|
1181
1248
|
linkType: hard
|
|
1182
1249
|
|
|
1183
|
-
"@tailwindcss/oxide-
|
|
1184
|
-
version: 4.0
|
|
1185
|
-
resolution: "@tailwindcss/oxide-
|
|
1250
|
+
"@tailwindcss/oxide-wasm32-wasi@npm:4.3.0":
|
|
1251
|
+
version: 4.3.0
|
|
1252
|
+
resolution: "@tailwindcss/oxide-wasm32-wasi@npm:4.3.0"
|
|
1253
|
+
dependencies:
|
|
1254
|
+
"@emnapi/core": "npm:^1.10.0"
|
|
1255
|
+
"@emnapi/runtime": "npm:^1.10.0"
|
|
1256
|
+
"@emnapi/wasi-threads": "npm:^1.2.1"
|
|
1257
|
+
"@napi-rs/wasm-runtime": "npm:^1.1.4"
|
|
1258
|
+
"@tybys/wasm-util": "npm:^0.10.1"
|
|
1259
|
+
tslib: "npm:^2.8.1"
|
|
1260
|
+
conditions: cpu=wasm32
|
|
1261
|
+
languageName: node
|
|
1262
|
+
linkType: hard
|
|
1263
|
+
|
|
1264
|
+
"@tailwindcss/oxide-win32-arm64-msvc@npm:4.3.0":
|
|
1265
|
+
version: 4.3.0
|
|
1266
|
+
resolution: "@tailwindcss/oxide-win32-arm64-msvc@npm:4.3.0"
|
|
1186
1267
|
conditions: os=win32 & cpu=arm64
|
|
1187
1268
|
languageName: node
|
|
1188
1269
|
linkType: hard
|
|
1189
1270
|
|
|
1190
|
-
"@tailwindcss/oxide-win32-x64-msvc@npm:4.0
|
|
1191
|
-
version: 4.0
|
|
1192
|
-
resolution: "@tailwindcss/oxide-win32-x64-msvc@npm:4.0
|
|
1271
|
+
"@tailwindcss/oxide-win32-x64-msvc@npm:4.3.0":
|
|
1272
|
+
version: 4.3.0
|
|
1273
|
+
resolution: "@tailwindcss/oxide-win32-x64-msvc@npm:4.3.0"
|
|
1193
1274
|
conditions: os=win32 & cpu=x64
|
|
1194
1275
|
languageName: node
|
|
1195
1276
|
linkType: hard
|
|
1196
1277
|
|
|
1197
|
-
"@tailwindcss/oxide@npm:4.0
|
|
1198
|
-
version: 4.0
|
|
1199
|
-
resolution: "@tailwindcss/oxide@npm:4.0
|
|
1200
|
-
dependencies:
|
|
1201
|
-
"@tailwindcss/oxide-android-arm64": "npm:4.0
|
|
1202
|
-
"@tailwindcss/oxide-darwin-arm64": "npm:4.0
|
|
1203
|
-
"@tailwindcss/oxide-darwin-x64": "npm:4.0
|
|
1204
|
-
"@tailwindcss/oxide-freebsd-x64": "npm:4.0
|
|
1205
|
-
"@tailwindcss/oxide-linux-arm-gnueabihf": "npm:4.0
|
|
1206
|
-
"@tailwindcss/oxide-linux-arm64-gnu": "npm:4.0
|
|
1207
|
-
"@tailwindcss/oxide-linux-arm64-musl": "npm:4.0
|
|
1208
|
-
"@tailwindcss/oxide-linux-x64-gnu": "npm:4.0
|
|
1209
|
-
"@tailwindcss/oxide-linux-x64-musl": "npm:4.0
|
|
1210
|
-
"@tailwindcss/oxide-
|
|
1211
|
-
"@tailwindcss/oxide-win32-
|
|
1278
|
+
"@tailwindcss/oxide@npm:4.3.0":
|
|
1279
|
+
version: 4.3.0
|
|
1280
|
+
resolution: "@tailwindcss/oxide@npm:4.3.0"
|
|
1281
|
+
dependencies:
|
|
1282
|
+
"@tailwindcss/oxide-android-arm64": "npm:4.3.0"
|
|
1283
|
+
"@tailwindcss/oxide-darwin-arm64": "npm:4.3.0"
|
|
1284
|
+
"@tailwindcss/oxide-darwin-x64": "npm:4.3.0"
|
|
1285
|
+
"@tailwindcss/oxide-freebsd-x64": "npm:4.3.0"
|
|
1286
|
+
"@tailwindcss/oxide-linux-arm-gnueabihf": "npm:4.3.0"
|
|
1287
|
+
"@tailwindcss/oxide-linux-arm64-gnu": "npm:4.3.0"
|
|
1288
|
+
"@tailwindcss/oxide-linux-arm64-musl": "npm:4.3.0"
|
|
1289
|
+
"@tailwindcss/oxide-linux-x64-gnu": "npm:4.3.0"
|
|
1290
|
+
"@tailwindcss/oxide-linux-x64-musl": "npm:4.3.0"
|
|
1291
|
+
"@tailwindcss/oxide-wasm32-wasi": "npm:4.3.0"
|
|
1292
|
+
"@tailwindcss/oxide-win32-arm64-msvc": "npm:4.3.0"
|
|
1293
|
+
"@tailwindcss/oxide-win32-x64-msvc": "npm:4.3.0"
|
|
1212
1294
|
dependenciesMeta:
|
|
1213
1295
|
"@tailwindcss/oxide-android-arm64":
|
|
1214
1296
|
optional: true
|
|
@@ -1228,25 +1310,26 @@ __metadata:
|
|
|
1228
1310
|
optional: true
|
|
1229
1311
|
"@tailwindcss/oxide-linux-x64-musl":
|
|
1230
1312
|
optional: true
|
|
1313
|
+
"@tailwindcss/oxide-wasm32-wasi":
|
|
1314
|
+
optional: true
|
|
1231
1315
|
"@tailwindcss/oxide-win32-arm64-msvc":
|
|
1232
1316
|
optional: true
|
|
1233
1317
|
"@tailwindcss/oxide-win32-x64-msvc":
|
|
1234
1318
|
optional: true
|
|
1235
|
-
checksum: 10c0/
|
|
1319
|
+
checksum: 10c0/9a04ee1e59df5e596765ee3ffb0f6eb13e8abab3a8331d2bb397adb5de7090e159a6b98e17401477678c41fa779f0b8cd04ba4ef4432054ae6cdeb562df9a243
|
|
1236
1320
|
languageName: node
|
|
1237
1321
|
linkType: hard
|
|
1238
1322
|
|
|
1239
|
-
"@tailwindcss/postcss@npm:^4.0
|
|
1240
|
-
version: 4.0
|
|
1241
|
-
resolution: "@tailwindcss/postcss@npm:4.0
|
|
1323
|
+
"@tailwindcss/postcss@npm:^4.3.0":
|
|
1324
|
+
version: 4.3.0
|
|
1325
|
+
resolution: "@tailwindcss/postcss@npm:4.3.0"
|
|
1242
1326
|
dependencies:
|
|
1243
1327
|
"@alloc/quick-lru": "npm:^5.2.0"
|
|
1244
|
-
"@tailwindcss/node": "npm:4.0
|
|
1245
|
-
"@tailwindcss/oxide": "npm:4.0
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
checksum: 10c0/ee6e2ef244bf4384594a9486df9d680ef892faeafd114236d81e9855154d2f8ef79631febb09064a9df6191251ab631b28ebcbcd78b88bb45a732c855fb3ef68
|
|
1328
|
+
"@tailwindcss/node": "npm:4.3.0"
|
|
1329
|
+
"@tailwindcss/oxide": "npm:4.3.0"
|
|
1330
|
+
postcss: "npm:^8.5.10"
|
|
1331
|
+
tailwindcss: "npm:4.3.0"
|
|
1332
|
+
checksum: 10c0/83483debd4e09b448e4c974d6a8bdaa1f436c0eaa79fd8803be4c3d1ff0346cb2228a465dffd557e471a6a24694fcdc3bd18ef2a22e16a36a7e7681e1ff4b5c1
|
|
1250
1333
|
languageName: node
|
|
1251
1334
|
linkType: hard
|
|
1252
1335
|
|
|
@@ -1271,6 +1354,15 @@ __metadata:
|
|
|
1271
1354
|
languageName: node
|
|
1272
1355
|
linkType: hard
|
|
1273
1356
|
|
|
1357
|
+
"@tybys/wasm-util@npm:^0.10.1":
|
|
1358
|
+
version: 0.10.2
|
|
1359
|
+
resolution: "@tybys/wasm-util@npm:0.10.2"
|
|
1360
|
+
dependencies:
|
|
1361
|
+
tslib: "npm:^2.4.0"
|
|
1362
|
+
checksum: 10c0/26165bcd1fd7269f42d7fbe3de318f854a8968de8397e89fc9a423bb3e2da35a52150f382e6323b3367595beb16d9800a6f35971a5599daf76da1742ec3afc25
|
|
1363
|
+
languageName: node
|
|
1364
|
+
linkType: hard
|
|
1365
|
+
|
|
1274
1366
|
"@types/d3-array@npm:*":
|
|
1275
1367
|
version: 3.2.1
|
|
1276
1368
|
resolution: "@types/d3-array@npm:3.2.1"
|
|
@@ -1779,6 +1871,21 @@ __metadata:
|
|
|
1779
1871
|
languageName: node
|
|
1780
1872
|
linkType: hard
|
|
1781
1873
|
|
|
1874
|
+
"@upsetjs/venn.js@npm:^2.0.0":
|
|
1875
|
+
version: 2.0.0
|
|
1876
|
+
resolution: "@upsetjs/venn.js@npm:2.0.0"
|
|
1877
|
+
dependencies:
|
|
1878
|
+
d3-selection: "npm:^3.0.0"
|
|
1879
|
+
d3-transition: "npm:^3.0.1"
|
|
1880
|
+
dependenciesMeta:
|
|
1881
|
+
d3-selection:
|
|
1882
|
+
optional: true
|
|
1883
|
+
d3-transition:
|
|
1884
|
+
optional: true
|
|
1885
|
+
checksum: 10c0/b12014d94708ab4df7f5a4b6205c6f23ff235cca2ffe91df3314862b109b826e52f9020c2a2f7527d3712d21c578d6db9cdb60ce46a528739cc18e58d111f724
|
|
1886
|
+
languageName: node
|
|
1887
|
+
linkType: hard
|
|
1888
|
+
|
|
1782
1889
|
"@vitejs/plugin-vue@npm:^5.2.1":
|
|
1783
1890
|
version: 5.2.4
|
|
1784
1891
|
resolution: "@vitejs/plugin-vue@npm:5.2.4"
|
|
@@ -2006,15 +2113,6 @@ __metadata:
|
|
|
2006
2113
|
languageName: node
|
|
2007
2114
|
linkType: hard
|
|
2008
2115
|
|
|
2009
|
-
"acorn@npm:^8.14.0, acorn@npm:^8.15.0":
|
|
2010
|
-
version: 8.15.0
|
|
2011
|
-
resolution: "acorn@npm:8.15.0"
|
|
2012
|
-
bin:
|
|
2013
|
-
acorn: bin/acorn
|
|
2014
|
-
checksum: 10c0/dec73ff59b7d6628a01eebaece7f2bdb8bb62b9b5926dcad0f8931f2b8b79c2be21f6c68ac095592adb5adb15831a3635d9343e6a91d028bbe85d564875ec3ec
|
|
2015
|
-
languageName: node
|
|
2016
|
-
linkType: hard
|
|
2017
|
-
|
|
2018
2116
|
"agent-base@npm:^7.1.0, agent-base@npm:^7.1.2":
|
|
2019
2117
|
version: 7.1.4
|
|
2020
2118
|
resolution: "agent-base@npm:7.1.4"
|
|
@@ -2231,31 +2329,6 @@ __metadata:
|
|
|
2231
2329
|
languageName: node
|
|
2232
2330
|
linkType: hard
|
|
2233
2331
|
|
|
2234
|
-
"chevrotain-allstar@npm:~0.3.0":
|
|
2235
|
-
version: 0.3.1
|
|
2236
|
-
resolution: "chevrotain-allstar@npm:0.3.1"
|
|
2237
|
-
dependencies:
|
|
2238
|
-
lodash-es: "npm:^4.17.21"
|
|
2239
|
-
peerDependencies:
|
|
2240
|
-
chevrotain: ^11.0.0
|
|
2241
|
-
checksum: 10c0/5cadedffd3114eb06b15fd3939bb1aa6c75412dbd737fe302b52c5c24334f9cb01cee8edc1d1067d98ba80dddf971f1d0e94b387de51423fc6cf3c5d8b7ef27a
|
|
2242
|
-
languageName: node
|
|
2243
|
-
linkType: hard
|
|
2244
|
-
|
|
2245
|
-
"chevrotain@npm:~11.0.3":
|
|
2246
|
-
version: 11.0.3
|
|
2247
|
-
resolution: "chevrotain@npm:11.0.3"
|
|
2248
|
-
dependencies:
|
|
2249
|
-
"@chevrotain/cst-dts-gen": "npm:11.0.3"
|
|
2250
|
-
"@chevrotain/gast": "npm:11.0.3"
|
|
2251
|
-
"@chevrotain/regexp-to-ast": "npm:11.0.3"
|
|
2252
|
-
"@chevrotain/types": "npm:11.0.3"
|
|
2253
|
-
"@chevrotain/utils": "npm:11.0.3"
|
|
2254
|
-
lodash-es: "npm:4.17.21"
|
|
2255
|
-
checksum: 10c0/ffd425fa321e3f17e9833d7f44cd39f2743f066e92ca74b226176080ca5d455f853fe9091cdfd86354bd899d85c08b3bdc3f55b267e7d07124b048a88349765f
|
|
2256
|
-
languageName: node
|
|
2257
|
-
linkType: hard
|
|
2258
|
-
|
|
2259
2332
|
"chokidar-cli@npm:^3.0.0":
|
|
2260
2333
|
version: 3.0.0
|
|
2261
2334
|
resolution: "chokidar-cli@npm:3.0.0"
|
|
@@ -2412,13 +2485,6 @@ __metadata:
|
|
|
2412
2485
|
languageName: node
|
|
2413
2486
|
linkType: hard
|
|
2414
2487
|
|
|
2415
|
-
"confbox@npm:^0.1.8":
|
|
2416
|
-
version: 0.1.8
|
|
2417
|
-
resolution: "confbox@npm:0.1.8"
|
|
2418
|
-
checksum: 10c0/fc2c68d97cb54d885b10b63e45bd8da83a8a71459d3ecf1825143dd4c7f9f1b696b3283e07d9d12a144c1301c2ebc7842380bdf0014e55acc4ae1c9550102418
|
|
2419
|
-
languageName: node
|
|
2420
|
-
linkType: hard
|
|
2421
|
-
|
|
2422
2488
|
"copy-anything@npm:^4":
|
|
2423
2489
|
version: 4.0.5
|
|
2424
2490
|
resolution: "copy-anything@npm:4.0.5"
|
|
@@ -2610,13 +2676,20 @@ __metadata:
|
|
|
2610
2676
|
languageName: node
|
|
2611
2677
|
linkType: hard
|
|
2612
2678
|
|
|
2613
|
-
"cytoscape@npm:^3.23.0
|
|
2679
|
+
"cytoscape@npm:^3.23.0":
|
|
2614
2680
|
version: 3.33.1
|
|
2615
2681
|
resolution: "cytoscape@npm:3.33.1"
|
|
2616
2682
|
checksum: 10c0/dffcf5f74df4d91517c4faf394df880d8283ce76edef19edba0c762941cf4f18daf7c4c955ec50c794f476ace39ad4394f8c98483222bd2682e1fd206e976411
|
|
2617
2683
|
languageName: node
|
|
2618
2684
|
linkType: hard
|
|
2619
2685
|
|
|
2686
|
+
"cytoscape@npm:^3.33.1":
|
|
2687
|
+
version: 3.33.3
|
|
2688
|
+
resolution: "cytoscape@npm:3.33.3"
|
|
2689
|
+
checksum: 10c0/f0d01f682d3e443cbeea9aa294ccd6934442362df3ce259e7b0fe3b9a8ce534d901840c503db8b53da814542bc1508f7f14a69e4fe725f919c25483a7200efe7
|
|
2690
|
+
languageName: node
|
|
2691
|
+
linkType: hard
|
|
2692
|
+
|
|
2620
2693
|
"d3-array@npm:1 - 2":
|
|
2621
2694
|
version: 2.12.1
|
|
2622
2695
|
resolution: "d3-array@npm:2.12.1"
|
|
@@ -2854,7 +2927,7 @@ __metadata:
|
|
|
2854
2927
|
languageName: node
|
|
2855
2928
|
linkType: hard
|
|
2856
2929
|
|
|
2857
|
-
"d3-selection@npm:2 - 3, d3-selection@npm:3":
|
|
2930
|
+
"d3-selection@npm:2 - 3, d3-selection@npm:3, d3-selection@npm:^3.0.0":
|
|
2858
2931
|
version: 3.0.0
|
|
2859
2932
|
resolution: "d3-selection@npm:3.0.0"
|
|
2860
2933
|
checksum: 10c0/e59096bbe8f0cb0daa1001d9bdd6dbc93a688019abc97d1d8b37f85cd3c286a6875b22adea0931b0c88410d025563e1643019161a883c516acf50c190a11b56b
|
|
@@ -2904,7 +2977,7 @@ __metadata:
|
|
|
2904
2977
|
languageName: node
|
|
2905
2978
|
linkType: hard
|
|
2906
2979
|
|
|
2907
|
-
"d3-transition@npm:2 - 3, d3-transition@npm:3":
|
|
2980
|
+
"d3-transition@npm:2 - 3, d3-transition@npm:3, d3-transition@npm:^3.0.1":
|
|
2908
2981
|
version: 3.0.1
|
|
2909
2982
|
resolution: "d3-transition@npm:3.0.1"
|
|
2910
2983
|
dependencies:
|
|
@@ -2970,13 +3043,13 @@ __metadata:
|
|
|
2970
3043
|
languageName: node
|
|
2971
3044
|
linkType: hard
|
|
2972
3045
|
|
|
2973
|
-
"dagre-d3-es@npm:7.0.
|
|
2974
|
-
version: 7.0.
|
|
2975
|
-
resolution: "dagre-d3-es@npm:7.0.
|
|
3046
|
+
"dagre-d3-es@npm:7.0.14":
|
|
3047
|
+
version: 7.0.14
|
|
3048
|
+
resolution: "dagre-d3-es@npm:7.0.14"
|
|
2976
3049
|
dependencies:
|
|
2977
3050
|
d3: "npm:^7.9.0"
|
|
2978
3051
|
lodash-es: "npm:^4.17.21"
|
|
2979
|
-
checksum: 10c0/
|
|
3052
|
+
checksum: 10c0/0dc91fc79300eb0a4eab5a48a76c2baf3ce439c389d19e2f015729bb57dafd75e1e9a4c2880daf016e81ee45caca7b21745c13b23b6cd2a786ce84767e88323e
|
|
2980
3053
|
languageName: node
|
|
2981
3054
|
linkType: hard
|
|
2982
3055
|
|
|
@@ -2989,10 +3062,10 @@ __metadata:
|
|
|
2989
3062
|
languageName: node
|
|
2990
3063
|
linkType: hard
|
|
2991
3064
|
|
|
2992
|
-
"dayjs@npm:^1.11.
|
|
2993
|
-
version: 1.11.
|
|
2994
|
-
resolution: "dayjs@npm:1.11.
|
|
2995
|
-
checksum: 10c0/
|
|
3065
|
+
"dayjs@npm:^1.11.19":
|
|
3066
|
+
version: 1.11.20
|
|
3067
|
+
resolution: "dayjs@npm:1.11.20"
|
|
3068
|
+
checksum: 10c0/8af525e2aa100c8db9923d706c42b2b2d30579faf89456619413a5c10916efc92c2b166e193c27c02eb3174b30aa440ee1e7b72b0a2876b3da651d204db848a0
|
|
2996
3069
|
languageName: node
|
|
2997
3070
|
linkType: hard
|
|
2998
3071
|
|
|
@@ -3038,12 +3111,10 @@ __metadata:
|
|
|
3038
3111
|
languageName: node
|
|
3039
3112
|
linkType: hard
|
|
3040
3113
|
|
|
3041
|
-
"detect-libc@npm:^
|
|
3042
|
-
version: 1.
|
|
3043
|
-
resolution: "detect-libc@npm:1.
|
|
3044
|
-
|
|
3045
|
-
detect-libc: ./bin/detect-libc.js
|
|
3046
|
-
checksum: 10c0/4da0deae9f69e13bc37a0902d78bf7169480004b1fed3c19722d56cff578d16f0e11633b7fbf5fb6249181236c72e90024cbd68f0b9558ae06e281f47326d50d
|
|
3114
|
+
"detect-libc@npm:^2.0.3":
|
|
3115
|
+
version: 2.1.2
|
|
3116
|
+
resolution: "detect-libc@npm:2.1.2"
|
|
3117
|
+
checksum: 10c0/acc675c29a5649fa1fb6e255f993b8ee829e510b6b56b0910666949c80c364738833417d0edb5f90e4e46be17228b0f2b66a010513984e18b15deeeac49369c4
|
|
3047
3118
|
languageName: node
|
|
3048
3119
|
linkType: hard
|
|
3049
3120
|
|
|
@@ -3083,15 +3154,15 @@ __metadata:
|
|
|
3083
3154
|
languageName: node
|
|
3084
3155
|
linkType: hard
|
|
3085
3156
|
|
|
3086
|
-
"dompurify@npm:^3.
|
|
3087
|
-
version: 3.3
|
|
3088
|
-
resolution: "dompurify@npm:3.3
|
|
3157
|
+
"dompurify@npm:^3.3.1, dompurify@npm:^3.4.3":
|
|
3158
|
+
version: 3.4.3
|
|
3159
|
+
resolution: "dompurify@npm:3.4.3"
|
|
3089
3160
|
dependencies:
|
|
3090
3161
|
"@types/trusted-types": "npm:^2.0.7"
|
|
3091
3162
|
dependenciesMeta:
|
|
3092
3163
|
"@types/trusted-types":
|
|
3093
3164
|
optional: true
|
|
3094
|
-
checksum: 10c0/
|
|
3165
|
+
checksum: 10c0/88b9e1a6d0a990e15fab46f4eb96163ef79f20634705b21c82651ffce1ccc5236e4007397d920234afab86123d49be863f2367bd6aacdf28a401aef4d177e0f9
|
|
3095
3166
|
languageName: node
|
|
3096
3167
|
linkType: hard
|
|
3097
3168
|
|
|
@@ -3134,13 +3205,13 @@ __metadata:
|
|
|
3134
3205
|
languageName: node
|
|
3135
3206
|
linkType: hard
|
|
3136
3207
|
|
|
3137
|
-
"enhanced-resolve@npm:^5.
|
|
3138
|
-
version: 5.
|
|
3139
|
-
resolution: "enhanced-resolve@npm:5.
|
|
3208
|
+
"enhanced-resolve@npm:^5.21.0":
|
|
3209
|
+
version: 5.21.3
|
|
3210
|
+
resolution: "enhanced-resolve@npm:5.21.3"
|
|
3140
3211
|
dependencies:
|
|
3141
3212
|
graceful-fs: "npm:^4.2.4"
|
|
3142
|
-
tapable: "npm:^2.
|
|
3143
|
-
checksum: 10c0/
|
|
3213
|
+
tapable: "npm:^2.3.3"
|
|
3214
|
+
checksum: 10c0/4d6ea9a93cc2ba385bdc5393a10c4fbaf7ae9fb04d49f94d6c8e3a73eb9599cfb5baab3ff8bb5395f3ef292db75c83bc8aca820825754cca203303d558e809bc
|
|
3144
3215
|
languageName: node
|
|
3145
3216
|
linkType: hard
|
|
3146
3217
|
|
|
@@ -3165,6 +3236,18 @@ __metadata:
|
|
|
3165
3236
|
languageName: node
|
|
3166
3237
|
linkType: hard
|
|
3167
3238
|
|
|
3239
|
+
"es-toolkit@npm:^1.45.1":
|
|
3240
|
+
version: 1.46.1
|
|
3241
|
+
resolution: "es-toolkit@npm:1.46.1"
|
|
3242
|
+
dependenciesMeta:
|
|
3243
|
+
"@trivago/prettier-plugin-sort-imports@4.3.0":
|
|
3244
|
+
unplugged: true
|
|
3245
|
+
prettier-plugin-sort-re-exports@0.0.1:
|
|
3246
|
+
unplugged: true
|
|
3247
|
+
checksum: 10c0/6a4c3dd0ddc2138fa13d983d93ebaf8061759c52c2cf7c3101315139fc1fca826d253daa67fe85ad880c03cc4c092bd53a83a7cbf58b4721c251479122ba5303
|
|
3248
|
+
languageName: node
|
|
3249
|
+
linkType: hard
|
|
3250
|
+
|
|
3168
3251
|
"esbuild-plugin-manifest@npm:^1.0.3":
|
|
3169
3252
|
version: 1.0.5
|
|
3170
3253
|
resolution: "esbuild-plugin-manifest@npm:1.0.5"
|
|
@@ -3176,33 +3259,33 @@ __metadata:
|
|
|
3176
3259
|
languageName: node
|
|
3177
3260
|
linkType: hard
|
|
3178
3261
|
|
|
3179
|
-
"esbuild@npm:^0.
|
|
3180
|
-
version: 0.
|
|
3181
|
-
resolution: "esbuild@npm:0.
|
|
3182
|
-
dependencies:
|
|
3183
|
-
"@esbuild/aix-ppc64": "npm:0.
|
|
3184
|
-
"@esbuild/android-arm": "npm:0.
|
|
3185
|
-
"@esbuild/android-arm64": "npm:0.
|
|
3186
|
-
"@esbuild/android-x64": "npm:0.
|
|
3187
|
-
"@esbuild/darwin-arm64": "npm:0.
|
|
3188
|
-
"@esbuild/darwin-x64": "npm:0.
|
|
3189
|
-
"@esbuild/freebsd-arm64": "npm:0.
|
|
3190
|
-
"@esbuild/freebsd-x64": "npm:0.
|
|
3191
|
-
"@esbuild/linux-arm": "npm:0.
|
|
3192
|
-
"@esbuild/linux-arm64": "npm:0.
|
|
3193
|
-
"@esbuild/linux-ia32": "npm:0.
|
|
3194
|
-
"@esbuild/linux-loong64": "npm:0.
|
|
3195
|
-
"@esbuild/linux-mips64el": "npm:0.
|
|
3196
|
-
"@esbuild/linux-ppc64": "npm:0.
|
|
3197
|
-
"@esbuild/linux-riscv64": "npm:0.
|
|
3198
|
-
"@esbuild/linux-s390x": "npm:0.
|
|
3199
|
-
"@esbuild/linux-x64": "npm:0.
|
|
3200
|
-
"@esbuild/netbsd-x64": "npm:0.
|
|
3201
|
-
"@esbuild/openbsd-x64": "npm:0.
|
|
3202
|
-
"@esbuild/sunos-x64": "npm:0.
|
|
3203
|
-
"@esbuild/win32-arm64": "npm:0.
|
|
3204
|
-
"@esbuild/win32-ia32": "npm:0.
|
|
3205
|
-
"@esbuild/win32-x64": "npm:0.
|
|
3262
|
+
"esbuild@npm:^0.21.3":
|
|
3263
|
+
version: 0.21.5
|
|
3264
|
+
resolution: "esbuild@npm:0.21.5"
|
|
3265
|
+
dependencies:
|
|
3266
|
+
"@esbuild/aix-ppc64": "npm:0.21.5"
|
|
3267
|
+
"@esbuild/android-arm": "npm:0.21.5"
|
|
3268
|
+
"@esbuild/android-arm64": "npm:0.21.5"
|
|
3269
|
+
"@esbuild/android-x64": "npm:0.21.5"
|
|
3270
|
+
"@esbuild/darwin-arm64": "npm:0.21.5"
|
|
3271
|
+
"@esbuild/darwin-x64": "npm:0.21.5"
|
|
3272
|
+
"@esbuild/freebsd-arm64": "npm:0.21.5"
|
|
3273
|
+
"@esbuild/freebsd-x64": "npm:0.21.5"
|
|
3274
|
+
"@esbuild/linux-arm": "npm:0.21.5"
|
|
3275
|
+
"@esbuild/linux-arm64": "npm:0.21.5"
|
|
3276
|
+
"@esbuild/linux-ia32": "npm:0.21.5"
|
|
3277
|
+
"@esbuild/linux-loong64": "npm:0.21.5"
|
|
3278
|
+
"@esbuild/linux-mips64el": "npm:0.21.5"
|
|
3279
|
+
"@esbuild/linux-ppc64": "npm:0.21.5"
|
|
3280
|
+
"@esbuild/linux-riscv64": "npm:0.21.5"
|
|
3281
|
+
"@esbuild/linux-s390x": "npm:0.21.5"
|
|
3282
|
+
"@esbuild/linux-x64": "npm:0.21.5"
|
|
3283
|
+
"@esbuild/netbsd-x64": "npm:0.21.5"
|
|
3284
|
+
"@esbuild/openbsd-x64": "npm:0.21.5"
|
|
3285
|
+
"@esbuild/sunos-x64": "npm:0.21.5"
|
|
3286
|
+
"@esbuild/win32-arm64": "npm:0.21.5"
|
|
3287
|
+
"@esbuild/win32-ia32": "npm:0.21.5"
|
|
3288
|
+
"@esbuild/win32-x64": "npm:0.21.5"
|
|
3206
3289
|
dependenciesMeta:
|
|
3207
3290
|
"@esbuild/aix-ppc64":
|
|
3208
3291
|
optional: true
|
|
@@ -3252,37 +3335,40 @@ __metadata:
|
|
|
3252
3335
|
optional: true
|
|
3253
3336
|
bin:
|
|
3254
3337
|
esbuild: bin/esbuild
|
|
3255
|
-
checksum: 10c0/
|
|
3338
|
+
checksum: 10c0/fa08508adf683c3f399e8a014a6382a6b65542213431e26206c0720e536b31c09b50798747c2a105a4bbba1d9767b8d3615a74c2f7bf1ddf6d836cd11eb672de
|
|
3256
3339
|
languageName: node
|
|
3257
3340
|
linkType: hard
|
|
3258
3341
|
|
|
3259
|
-
"esbuild@npm:^0.
|
|
3260
|
-
version: 0.
|
|
3261
|
-
resolution: "esbuild@npm:0.
|
|
3262
|
-
dependencies:
|
|
3263
|
-
"@esbuild/aix-ppc64": "npm:0.
|
|
3264
|
-
"@esbuild/android-arm": "npm:0.
|
|
3265
|
-
"@esbuild/android-arm64": "npm:0.
|
|
3266
|
-
"@esbuild/android-x64": "npm:0.
|
|
3267
|
-
"@esbuild/darwin-arm64": "npm:0.
|
|
3268
|
-
"@esbuild/darwin-x64": "npm:0.
|
|
3269
|
-
"@esbuild/freebsd-arm64": "npm:0.
|
|
3270
|
-
"@esbuild/freebsd-x64": "npm:0.
|
|
3271
|
-
"@esbuild/linux-arm": "npm:0.
|
|
3272
|
-
"@esbuild/linux-arm64": "npm:0.
|
|
3273
|
-
"@esbuild/linux-ia32": "npm:0.
|
|
3274
|
-
"@esbuild/linux-loong64": "npm:0.
|
|
3275
|
-
"@esbuild/linux-mips64el": "npm:0.
|
|
3276
|
-
"@esbuild/linux-ppc64": "npm:0.
|
|
3277
|
-
"@esbuild/linux-riscv64": "npm:0.
|
|
3278
|
-
"@esbuild/linux-s390x": "npm:0.
|
|
3279
|
-
"@esbuild/linux-x64": "npm:0.
|
|
3280
|
-
"@esbuild/netbsd-
|
|
3281
|
-
"@esbuild/
|
|
3282
|
-
"@esbuild/
|
|
3283
|
-
"@esbuild/
|
|
3284
|
-
"@esbuild/
|
|
3285
|
-
"@esbuild/
|
|
3342
|
+
"esbuild@npm:^0.28.0":
|
|
3343
|
+
version: 0.28.0
|
|
3344
|
+
resolution: "esbuild@npm:0.28.0"
|
|
3345
|
+
dependencies:
|
|
3346
|
+
"@esbuild/aix-ppc64": "npm:0.28.0"
|
|
3347
|
+
"@esbuild/android-arm": "npm:0.28.0"
|
|
3348
|
+
"@esbuild/android-arm64": "npm:0.28.0"
|
|
3349
|
+
"@esbuild/android-x64": "npm:0.28.0"
|
|
3350
|
+
"@esbuild/darwin-arm64": "npm:0.28.0"
|
|
3351
|
+
"@esbuild/darwin-x64": "npm:0.28.0"
|
|
3352
|
+
"@esbuild/freebsd-arm64": "npm:0.28.0"
|
|
3353
|
+
"@esbuild/freebsd-x64": "npm:0.28.0"
|
|
3354
|
+
"@esbuild/linux-arm": "npm:0.28.0"
|
|
3355
|
+
"@esbuild/linux-arm64": "npm:0.28.0"
|
|
3356
|
+
"@esbuild/linux-ia32": "npm:0.28.0"
|
|
3357
|
+
"@esbuild/linux-loong64": "npm:0.28.0"
|
|
3358
|
+
"@esbuild/linux-mips64el": "npm:0.28.0"
|
|
3359
|
+
"@esbuild/linux-ppc64": "npm:0.28.0"
|
|
3360
|
+
"@esbuild/linux-riscv64": "npm:0.28.0"
|
|
3361
|
+
"@esbuild/linux-s390x": "npm:0.28.0"
|
|
3362
|
+
"@esbuild/linux-x64": "npm:0.28.0"
|
|
3363
|
+
"@esbuild/netbsd-arm64": "npm:0.28.0"
|
|
3364
|
+
"@esbuild/netbsd-x64": "npm:0.28.0"
|
|
3365
|
+
"@esbuild/openbsd-arm64": "npm:0.28.0"
|
|
3366
|
+
"@esbuild/openbsd-x64": "npm:0.28.0"
|
|
3367
|
+
"@esbuild/openharmony-arm64": "npm:0.28.0"
|
|
3368
|
+
"@esbuild/sunos-x64": "npm:0.28.0"
|
|
3369
|
+
"@esbuild/win32-arm64": "npm:0.28.0"
|
|
3370
|
+
"@esbuild/win32-ia32": "npm:0.28.0"
|
|
3371
|
+
"@esbuild/win32-x64": "npm:0.28.0"
|
|
3286
3372
|
dependenciesMeta:
|
|
3287
3373
|
"@esbuild/aix-ppc64":
|
|
3288
3374
|
optional: true
|
|
@@ -3318,10 +3404,16 @@ __metadata:
|
|
|
3318
3404
|
optional: true
|
|
3319
3405
|
"@esbuild/linux-x64":
|
|
3320
3406
|
optional: true
|
|
3407
|
+
"@esbuild/netbsd-arm64":
|
|
3408
|
+
optional: true
|
|
3321
3409
|
"@esbuild/netbsd-x64":
|
|
3322
3410
|
optional: true
|
|
3411
|
+
"@esbuild/openbsd-arm64":
|
|
3412
|
+
optional: true
|
|
3323
3413
|
"@esbuild/openbsd-x64":
|
|
3324
3414
|
optional: true
|
|
3415
|
+
"@esbuild/openharmony-arm64":
|
|
3416
|
+
optional: true
|
|
3325
3417
|
"@esbuild/sunos-x64":
|
|
3326
3418
|
optional: true
|
|
3327
3419
|
"@esbuild/win32-arm64":
|
|
@@ -3332,7 +3424,7 @@ __metadata:
|
|
|
3332
3424
|
optional: true
|
|
3333
3425
|
bin:
|
|
3334
3426
|
esbuild: bin/esbuild
|
|
3335
|
-
checksum: 10c0/
|
|
3427
|
+
checksum: 10c0/8acd95c238ec6c4a9d16163277faf228a8994b642d187b3fe667ffbb469008e6748cde144fdc3c175bf8e78ee49e15a0ed9b9f183fdb5fcea1772f87fb1372a4
|
|
3336
3428
|
languageName: node
|
|
3337
3429
|
linkType: hard
|
|
3338
3430
|
|
|
@@ -3611,6 +3703,13 @@ __metadata:
|
|
|
3611
3703
|
languageName: node
|
|
3612
3704
|
linkType: hard
|
|
3613
3705
|
|
|
3706
|
+
"import-meta-resolve@npm:^4.2.0":
|
|
3707
|
+
version: 4.2.0
|
|
3708
|
+
resolution: "import-meta-resolve@npm:4.2.0"
|
|
3709
|
+
checksum: 10c0/3ee8aeecb61d19b49d2703987f977e9d1c7d4ba47db615a570eaa02fe414f40dfa63f7b953e842cbe8470d26df6371332bfcf21b2fd92b0112f9fea80dde2c4c
|
|
3710
|
+
languageName: node
|
|
3711
|
+
linkType: hard
|
|
3712
|
+
|
|
3614
3713
|
"internmap@npm:1 - 2":
|
|
3615
3714
|
version: 2.0.3
|
|
3616
3715
|
resolution: "internmap@npm:2.0.3"
|
|
@@ -3708,12 +3807,12 @@ __metadata:
|
|
|
3708
3807
|
languageName: node
|
|
3709
3808
|
linkType: hard
|
|
3710
3809
|
|
|
3711
|
-
"jiti@npm:^2.
|
|
3712
|
-
version: 2.
|
|
3713
|
-
resolution: "jiti@npm:2.
|
|
3810
|
+
"jiti@npm:^2.6.1":
|
|
3811
|
+
version: 2.7.0
|
|
3812
|
+
resolution: "jiti@npm:2.7.0"
|
|
3714
3813
|
bin:
|
|
3715
3814
|
jiti: lib/jiti-cli.mjs
|
|
3716
|
-
checksum: 10c0/
|
|
3815
|
+
checksum: 10c0/1b1e2310a490dce1aeea3da5f5dfe18273516c20ce48be2e98eb8ea452d5f3dcc8fd0cfd6d28b4052a24c5dbab6e3089b2d7e79f0bce7915b10d750929563c42
|
|
3717
3816
|
languageName: node
|
|
3718
3817
|
linkType: hard
|
|
3719
3818
|
|
|
@@ -3730,14 +3829,14 @@ __metadata:
|
|
|
3730
3829
|
languageName: node
|
|
3731
3830
|
linkType: hard
|
|
3732
3831
|
|
|
3733
|
-
"katex@npm:^0.16.
|
|
3734
|
-
version: 0.16.
|
|
3735
|
-
resolution: "katex@npm:0.16.
|
|
3832
|
+
"katex@npm:^0.16.25":
|
|
3833
|
+
version: 0.16.46
|
|
3834
|
+
resolution: "katex@npm:0.16.46"
|
|
3736
3835
|
dependencies:
|
|
3737
3836
|
commander: "npm:^8.3.0"
|
|
3738
3837
|
bin:
|
|
3739
3838
|
katex: cli.js
|
|
3740
|
-
checksum: 10c0/
|
|
3839
|
+
checksum: 10c0/c0a1006e0decae978832cfe19c4e316eceebb047dc0f918be041c956b67fd35791a6e0a868ef5f51eaf600d2c62e53114dbc94a34a89e11f95fcf24b0abd2d5f
|
|
3741
3840
|
languageName: node
|
|
3742
3841
|
linkType: hard
|
|
3743
3842
|
|
|
@@ -3748,19 +3847,6 @@ __metadata:
|
|
|
3748
3847
|
languageName: node
|
|
3749
3848
|
linkType: hard
|
|
3750
3849
|
|
|
3751
|
-
"langium@npm:3.3.1":
|
|
3752
|
-
version: 3.3.1
|
|
3753
|
-
resolution: "langium@npm:3.3.1"
|
|
3754
|
-
dependencies:
|
|
3755
|
-
chevrotain: "npm:~11.0.3"
|
|
3756
|
-
chevrotain-allstar: "npm:~0.3.0"
|
|
3757
|
-
vscode-languageserver: "npm:~9.0.1"
|
|
3758
|
-
vscode-languageserver-textdocument: "npm:~1.0.11"
|
|
3759
|
-
vscode-uri: "npm:~3.0.8"
|
|
3760
|
-
checksum: 10c0/0c54803068addb0f7c16a57fdb2db2e5d4d9a21259d477c3c7d0587c2c2f65a313f9eeef3c95ac1c2e41cd11d4f2eaf620d2c03fe839a3350ffee59d2b4c7647
|
|
3761
|
-
languageName: node
|
|
3762
|
-
linkType: hard
|
|
3763
|
-
|
|
3764
3850
|
"layout-base@npm:^1.0.0":
|
|
3765
3851
|
version: 1.0.2
|
|
3766
3852
|
resolution: "layout-base@npm:1.0.2"
|
|
@@ -3775,92 +3861,102 @@ __metadata:
|
|
|
3775
3861
|
languageName: node
|
|
3776
3862
|
linkType: hard
|
|
3777
3863
|
|
|
3778
|
-
"lightningcss-
|
|
3779
|
-
version: 1.
|
|
3780
|
-
resolution: "lightningcss-
|
|
3864
|
+
"lightningcss-android-arm64@npm:1.32.0":
|
|
3865
|
+
version: 1.32.0
|
|
3866
|
+
resolution: "lightningcss-android-arm64@npm:1.32.0"
|
|
3867
|
+
conditions: os=android & cpu=arm64
|
|
3868
|
+
languageName: node
|
|
3869
|
+
linkType: hard
|
|
3870
|
+
|
|
3871
|
+
"lightningcss-darwin-arm64@npm:1.32.0":
|
|
3872
|
+
version: 1.32.0
|
|
3873
|
+
resolution: "lightningcss-darwin-arm64@npm:1.32.0"
|
|
3781
3874
|
conditions: os=darwin & cpu=arm64
|
|
3782
3875
|
languageName: node
|
|
3783
3876
|
linkType: hard
|
|
3784
3877
|
|
|
3785
|
-
"lightningcss-darwin-x64@npm:1.
|
|
3786
|
-
version: 1.
|
|
3787
|
-
resolution: "lightningcss-darwin-x64@npm:1.
|
|
3878
|
+
"lightningcss-darwin-x64@npm:1.32.0":
|
|
3879
|
+
version: 1.32.0
|
|
3880
|
+
resolution: "lightningcss-darwin-x64@npm:1.32.0"
|
|
3788
3881
|
conditions: os=darwin & cpu=x64
|
|
3789
3882
|
languageName: node
|
|
3790
3883
|
linkType: hard
|
|
3791
3884
|
|
|
3792
|
-
"lightningcss-freebsd-x64@npm:1.
|
|
3793
|
-
version: 1.
|
|
3794
|
-
resolution: "lightningcss-freebsd-x64@npm:1.
|
|
3885
|
+
"lightningcss-freebsd-x64@npm:1.32.0":
|
|
3886
|
+
version: 1.32.0
|
|
3887
|
+
resolution: "lightningcss-freebsd-x64@npm:1.32.0"
|
|
3795
3888
|
conditions: os=freebsd & cpu=x64
|
|
3796
3889
|
languageName: node
|
|
3797
3890
|
linkType: hard
|
|
3798
3891
|
|
|
3799
|
-
"lightningcss-linux-arm-gnueabihf@npm:1.
|
|
3800
|
-
version: 1.
|
|
3801
|
-
resolution: "lightningcss-linux-arm-gnueabihf@npm:1.
|
|
3892
|
+
"lightningcss-linux-arm-gnueabihf@npm:1.32.0":
|
|
3893
|
+
version: 1.32.0
|
|
3894
|
+
resolution: "lightningcss-linux-arm-gnueabihf@npm:1.32.0"
|
|
3802
3895
|
conditions: os=linux & cpu=arm
|
|
3803
3896
|
languageName: node
|
|
3804
3897
|
linkType: hard
|
|
3805
3898
|
|
|
3806
|
-
"lightningcss-linux-arm64-gnu@npm:1.
|
|
3807
|
-
version: 1.
|
|
3808
|
-
resolution: "lightningcss-linux-arm64-gnu@npm:1.
|
|
3899
|
+
"lightningcss-linux-arm64-gnu@npm:1.32.0":
|
|
3900
|
+
version: 1.32.0
|
|
3901
|
+
resolution: "lightningcss-linux-arm64-gnu@npm:1.32.0"
|
|
3809
3902
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
|
3810
3903
|
languageName: node
|
|
3811
3904
|
linkType: hard
|
|
3812
3905
|
|
|
3813
|
-
"lightningcss-linux-arm64-musl@npm:1.
|
|
3814
|
-
version: 1.
|
|
3815
|
-
resolution: "lightningcss-linux-arm64-musl@npm:1.
|
|
3906
|
+
"lightningcss-linux-arm64-musl@npm:1.32.0":
|
|
3907
|
+
version: 1.32.0
|
|
3908
|
+
resolution: "lightningcss-linux-arm64-musl@npm:1.32.0"
|
|
3816
3909
|
conditions: os=linux & cpu=arm64 & libc=musl
|
|
3817
3910
|
languageName: node
|
|
3818
3911
|
linkType: hard
|
|
3819
3912
|
|
|
3820
|
-
"lightningcss-linux-x64-gnu@npm:1.
|
|
3821
|
-
version: 1.
|
|
3822
|
-
resolution: "lightningcss-linux-x64-gnu@npm:1.
|
|
3913
|
+
"lightningcss-linux-x64-gnu@npm:1.32.0":
|
|
3914
|
+
version: 1.32.0
|
|
3915
|
+
resolution: "lightningcss-linux-x64-gnu@npm:1.32.0"
|
|
3823
3916
|
conditions: os=linux & cpu=x64 & libc=glibc
|
|
3824
3917
|
languageName: node
|
|
3825
3918
|
linkType: hard
|
|
3826
3919
|
|
|
3827
|
-
"lightningcss-linux-x64-musl@npm:1.
|
|
3828
|
-
version: 1.
|
|
3829
|
-
resolution: "lightningcss-linux-x64-musl@npm:1.
|
|
3920
|
+
"lightningcss-linux-x64-musl@npm:1.32.0":
|
|
3921
|
+
version: 1.32.0
|
|
3922
|
+
resolution: "lightningcss-linux-x64-musl@npm:1.32.0"
|
|
3830
3923
|
conditions: os=linux & cpu=x64 & libc=musl
|
|
3831
3924
|
languageName: node
|
|
3832
3925
|
linkType: hard
|
|
3833
3926
|
|
|
3834
|
-
"lightningcss-win32-arm64-msvc@npm:1.
|
|
3835
|
-
version: 1.
|
|
3836
|
-
resolution: "lightningcss-win32-arm64-msvc@npm:1.
|
|
3927
|
+
"lightningcss-win32-arm64-msvc@npm:1.32.0":
|
|
3928
|
+
version: 1.32.0
|
|
3929
|
+
resolution: "lightningcss-win32-arm64-msvc@npm:1.32.0"
|
|
3837
3930
|
conditions: os=win32 & cpu=arm64
|
|
3838
3931
|
languageName: node
|
|
3839
3932
|
linkType: hard
|
|
3840
3933
|
|
|
3841
|
-
"lightningcss-win32-x64-msvc@npm:1.
|
|
3842
|
-
version: 1.
|
|
3843
|
-
resolution: "lightningcss-win32-x64-msvc@npm:1.
|
|
3934
|
+
"lightningcss-win32-x64-msvc@npm:1.32.0":
|
|
3935
|
+
version: 1.32.0
|
|
3936
|
+
resolution: "lightningcss-win32-x64-msvc@npm:1.32.0"
|
|
3844
3937
|
conditions: os=win32 & cpu=x64
|
|
3845
3938
|
languageName: node
|
|
3846
3939
|
linkType: hard
|
|
3847
3940
|
|
|
3848
|
-
"lightningcss@npm
|
|
3849
|
-
version: 1.
|
|
3850
|
-
resolution: "lightningcss@npm:1.
|
|
3941
|
+
"lightningcss@npm:1.32.0":
|
|
3942
|
+
version: 1.32.0
|
|
3943
|
+
resolution: "lightningcss@npm:1.32.0"
|
|
3851
3944
|
dependencies:
|
|
3852
|
-
detect-libc: "npm:^
|
|
3853
|
-
lightningcss-
|
|
3854
|
-
lightningcss-darwin-
|
|
3855
|
-
lightningcss-
|
|
3856
|
-
lightningcss-
|
|
3857
|
-
lightningcss-linux-
|
|
3858
|
-
lightningcss-linux-arm64-
|
|
3859
|
-
lightningcss-linux-
|
|
3860
|
-
lightningcss-linux-x64-
|
|
3861
|
-
lightningcss-
|
|
3862
|
-
lightningcss-win32-
|
|
3945
|
+
detect-libc: "npm:^2.0.3"
|
|
3946
|
+
lightningcss-android-arm64: "npm:1.32.0"
|
|
3947
|
+
lightningcss-darwin-arm64: "npm:1.32.0"
|
|
3948
|
+
lightningcss-darwin-x64: "npm:1.32.0"
|
|
3949
|
+
lightningcss-freebsd-x64: "npm:1.32.0"
|
|
3950
|
+
lightningcss-linux-arm-gnueabihf: "npm:1.32.0"
|
|
3951
|
+
lightningcss-linux-arm64-gnu: "npm:1.32.0"
|
|
3952
|
+
lightningcss-linux-arm64-musl: "npm:1.32.0"
|
|
3953
|
+
lightningcss-linux-x64-gnu: "npm:1.32.0"
|
|
3954
|
+
lightningcss-linux-x64-musl: "npm:1.32.0"
|
|
3955
|
+
lightningcss-win32-arm64-msvc: "npm:1.32.0"
|
|
3956
|
+
lightningcss-win32-x64-msvc: "npm:1.32.0"
|
|
3863
3957
|
dependenciesMeta:
|
|
3958
|
+
lightningcss-android-arm64:
|
|
3959
|
+
optional: true
|
|
3864
3960
|
lightningcss-darwin-arm64:
|
|
3865
3961
|
optional: true
|
|
3866
3962
|
lightningcss-darwin-x64:
|
|
@@ -3881,7 +3977,7 @@ __metadata:
|
|
|
3881
3977
|
optional: true
|
|
3882
3978
|
lightningcss-win32-x64-msvc:
|
|
3883
3979
|
optional: true
|
|
3884
|
-
checksum: 10c0/
|
|
3980
|
+
checksum: 10c0/70945bd55097af46fc9fab7f5ed09cd5869d85940a2acab7ee06d0117004a1d68155708a2d462531cea2fc3c67aefc9333a7068c80b0b78dd404c16838809e03
|
|
3885
3981
|
languageName: node
|
|
3886
3982
|
linkType: hard
|
|
3887
3983
|
|
|
@@ -3902,7 +3998,7 @@ __metadata:
|
|
|
3902
3998
|
languageName: node
|
|
3903
3999
|
linkType: hard
|
|
3904
4000
|
|
|
3905
|
-
"lodash-es@npm
|
|
4001
|
+
"lodash-es@npm:^4.17.21":
|
|
3906
4002
|
version: 4.17.21
|
|
3907
4003
|
resolution: "lodash-es@npm:4.17.21"
|
|
3908
4004
|
checksum: 10c0/fb407355f7e6cd523a9383e76e6b455321f0f153a6c9625e21a8827d10c54c2a2341bd2ae8d034358b60e07325e1330c14c224ff582d04612a46a4f0479ff2f2
|
|
@@ -4017,7 +4113,7 @@ __metadata:
|
|
|
4017
4113
|
languageName: node
|
|
4018
4114
|
linkType: hard
|
|
4019
4115
|
|
|
4020
|
-
"marked@npm:^16.
|
|
4116
|
+
"marked@npm:^16.3.0":
|
|
4021
4117
|
version: 16.4.2
|
|
4022
4118
|
resolution: "marked@npm:16.4.2"
|
|
4023
4119
|
bin:
|
|
@@ -4057,31 +4153,32 @@ __metadata:
|
|
|
4057
4153
|
languageName: node
|
|
4058
4154
|
linkType: hard
|
|
4059
4155
|
|
|
4060
|
-
"mermaid@npm:^11.
|
|
4061
|
-
version: 11.
|
|
4062
|
-
resolution: "mermaid@npm:11.
|
|
4156
|
+
"mermaid@npm:^11.15.0":
|
|
4157
|
+
version: 11.15.0
|
|
4158
|
+
resolution: "mermaid@npm:11.15.0"
|
|
4063
4159
|
dependencies:
|
|
4064
4160
|
"@braintree/sanitize-url": "npm:^7.1.1"
|
|
4065
|
-
"@iconify/utils": "npm:^3.0.
|
|
4066
|
-
"@mermaid-js/parser": "npm:^
|
|
4161
|
+
"@iconify/utils": "npm:^3.0.2"
|
|
4162
|
+
"@mermaid-js/parser": "npm:^1.1.1"
|
|
4067
4163
|
"@types/d3": "npm:^7.4.3"
|
|
4068
|
-
|
|
4164
|
+
"@upsetjs/venn.js": "npm:^2.0.0"
|
|
4165
|
+
cytoscape: "npm:^3.33.1"
|
|
4069
4166
|
cytoscape-cose-bilkent: "npm:^4.1.0"
|
|
4070
4167
|
cytoscape-fcose: "npm:^2.2.0"
|
|
4071
4168
|
d3: "npm:^7.9.0"
|
|
4072
4169
|
d3-sankey: "npm:^0.12.3"
|
|
4073
|
-
dagre-d3-es: "npm:7.0.
|
|
4074
|
-
dayjs: "npm:^1.11.
|
|
4075
|
-
dompurify: "npm:^3.
|
|
4076
|
-
|
|
4170
|
+
dagre-d3-es: "npm:7.0.14"
|
|
4171
|
+
dayjs: "npm:^1.11.19"
|
|
4172
|
+
dompurify: "npm:^3.3.1"
|
|
4173
|
+
es-toolkit: "npm:^1.45.1"
|
|
4174
|
+
katex: "npm:^0.16.25"
|
|
4077
4175
|
khroma: "npm:^2.1.0"
|
|
4078
|
-
|
|
4079
|
-
marked: "npm:^16.2.1"
|
|
4176
|
+
marked: "npm:^16.3.0"
|
|
4080
4177
|
roughjs: "npm:^4.6.6"
|
|
4081
4178
|
stylis: "npm:^4.3.6"
|
|
4082
4179
|
ts-dedent: "npm:^2.2.0"
|
|
4083
|
-
uuid: "npm:^11.1.0"
|
|
4084
|
-
checksum: 10c0/
|
|
4180
|
+
uuid: "npm:^11.1.0 || ^12 || ^13 || ^14.0.0"
|
|
4181
|
+
checksum: 10c0/9085b47c30b66a1e94e07c93951d9e53e5c89ec8c9fff8814233bddeecf6b8eaf9036d3168e4d1360c3f5d07cd051c666da96860eb0f22f064bd749499a0c83f
|
|
4085
4182
|
languageName: node
|
|
4086
4183
|
linkType: hard
|
|
4087
4184
|
|
|
@@ -4262,30 +4359,6 @@ __metadata:
|
|
|
4262
4359
|
languageName: node
|
|
4263
4360
|
linkType: hard
|
|
4264
4361
|
|
|
4265
|
-
"mlly@npm:^1.7.4":
|
|
4266
|
-
version: 1.7.4
|
|
4267
|
-
resolution: "mlly@npm:1.7.4"
|
|
4268
|
-
dependencies:
|
|
4269
|
-
acorn: "npm:^8.14.0"
|
|
4270
|
-
pathe: "npm:^2.0.1"
|
|
4271
|
-
pkg-types: "npm:^1.3.0"
|
|
4272
|
-
ufo: "npm:^1.5.4"
|
|
4273
|
-
checksum: 10c0/69e738218a13d6365caf930e0ab4e2b848b84eec261597df9788cefb9930f3e40667be9cb58a4718834ba5f97a6efeef31d3b5a95f4388143fd4e0d0deff72ff
|
|
4274
|
-
languageName: node
|
|
4275
|
-
linkType: hard
|
|
4276
|
-
|
|
4277
|
-
"mlly@npm:^1.8.0":
|
|
4278
|
-
version: 1.8.0
|
|
4279
|
-
resolution: "mlly@npm:1.8.0"
|
|
4280
|
-
dependencies:
|
|
4281
|
-
acorn: "npm:^8.15.0"
|
|
4282
|
-
pathe: "npm:^2.0.3"
|
|
4283
|
-
pkg-types: "npm:^1.3.1"
|
|
4284
|
-
ufo: "npm:^1.6.1"
|
|
4285
|
-
checksum: 10c0/f174b844ae066c71e9b128046677868e2e28694f0bbeeffbe760b2a9d8ff24de0748d0fde6fabe706700c1d2e11d3c0d7a53071b5ea99671592fac03364604ab
|
|
4286
|
-
languageName: node
|
|
4287
|
-
linkType: hard
|
|
4288
|
-
|
|
4289
4362
|
"ms@npm:^2.1.3":
|
|
4290
4363
|
version: 2.1.3
|
|
4291
4364
|
resolution: "ms@npm:2.1.3"
|
|
@@ -4495,13 +4568,6 @@ __metadata:
|
|
|
4495
4568
|
languageName: node
|
|
4496
4569
|
linkType: hard
|
|
4497
4570
|
|
|
4498
|
-
"pathe@npm:^2.0.1, pathe@npm:^2.0.3":
|
|
4499
|
-
version: 2.0.3
|
|
4500
|
-
resolution: "pathe@npm:2.0.3"
|
|
4501
|
-
checksum: 10c0/c118dc5a8b5c4166011b2b70608762e260085180bb9e33e80a50dcdb1e78c010b1624f4280c492c92b05fc276715a4c357d1f9edc570f8f1b3d90b6839ebaca1
|
|
4502
|
-
languageName: node
|
|
4503
|
-
linkType: hard
|
|
4504
|
-
|
|
4505
4571
|
"perfect-debounce@npm:^1.0.0":
|
|
4506
4572
|
version: 1.0.0
|
|
4507
4573
|
resolution: "perfect-debounce@npm:1.0.0"
|
|
@@ -4537,17 +4603,6 @@ __metadata:
|
|
|
4537
4603
|
languageName: node
|
|
4538
4604
|
linkType: hard
|
|
4539
4605
|
|
|
4540
|
-
"pkg-types@npm:^1.3.0, pkg-types@npm:^1.3.1":
|
|
4541
|
-
version: 1.3.1
|
|
4542
|
-
resolution: "pkg-types@npm:1.3.1"
|
|
4543
|
-
dependencies:
|
|
4544
|
-
confbox: "npm:^0.1.8"
|
|
4545
|
-
mlly: "npm:^1.7.4"
|
|
4546
|
-
pathe: "npm:^2.0.1"
|
|
4547
|
-
checksum: 10c0/19e6cb8b66dcc66c89f2344aecfa47f2431c988cfa3366bdfdcfb1dd6695f87dcce37fbd90fe9d1605e2f4440b77f391e83c23255347c35cf84e7fd774d7fcea
|
|
4548
|
-
languageName: node
|
|
4549
|
-
linkType: hard
|
|
4550
|
-
|
|
4551
4606
|
"points-on-curve@npm:0.2.0, points-on-curve@npm:^0.2.0":
|
|
4552
4607
|
version: 0.2.0
|
|
4553
4608
|
resolution: "points-on-curve@npm:0.2.0"
|
|
@@ -4577,7 +4632,7 @@ __metadata:
|
|
|
4577
4632
|
languageName: node
|
|
4578
4633
|
linkType: hard
|
|
4579
4634
|
|
|
4580
|
-
"postcss-cli@npm:^11.0.
|
|
4635
|
+
"postcss-cli@npm:^11.0.1":
|
|
4581
4636
|
version: 11.0.1
|
|
4582
4637
|
resolution: "postcss-cli@npm:11.0.1"
|
|
4583
4638
|
dependencies:
|
|
@@ -4673,16 +4728,16 @@ __metadata:
|
|
|
4673
4728
|
languageName: node
|
|
4674
4729
|
linkType: hard
|
|
4675
4730
|
|
|
4676
|
-
"postcss-import@npm:^16.1.
|
|
4677
|
-
version: 16.1.
|
|
4678
|
-
resolution: "postcss-import@npm:16.1.
|
|
4731
|
+
"postcss-import@npm:^16.1.1":
|
|
4732
|
+
version: 16.1.1
|
|
4733
|
+
resolution: "postcss-import@npm:16.1.1"
|
|
4679
4734
|
dependencies:
|
|
4680
4735
|
postcss-value-parser: "npm:^4.0.0"
|
|
4681
4736
|
read-cache: "npm:^1.0.0"
|
|
4682
4737
|
resolve: "npm:^1.1.7"
|
|
4683
4738
|
peerDependencies:
|
|
4684
4739
|
postcss: ^8.0.0
|
|
4685
|
-
checksum: 10c0/
|
|
4740
|
+
checksum: 10c0/b91245971564891110cb407c7459bd470893ccbdd3328fdd384ef2be4d0e5f304e5834acbb8b537ad562c001db34bee1c29b55994bead5ab5a53b1edc2a687b9
|
|
4686
4741
|
languageName: node
|
|
4687
4742
|
linkType: hard
|
|
4688
4743
|
|
|
@@ -4987,7 +5042,7 @@ __metadata:
|
|
|
4987
5042
|
languageName: node
|
|
4988
5043
|
linkType: hard
|
|
4989
5044
|
|
|
4990
|
-
"postcss@npm:^8.4.
|
|
5045
|
+
"postcss@npm:^8.4.43, postcss@npm:^8.5.6":
|
|
4991
5046
|
version: 8.5.6
|
|
4992
5047
|
resolution: "postcss@npm:8.5.6"
|
|
4993
5048
|
dependencies:
|
|
@@ -4998,6 +5053,17 @@ __metadata:
|
|
|
4998
5053
|
languageName: node
|
|
4999
5054
|
linkType: hard
|
|
5000
5055
|
|
|
5056
|
+
"postcss@npm:^8.5.10, postcss@npm:^8.5.14":
|
|
5057
|
+
version: 8.5.14
|
|
5058
|
+
resolution: "postcss@npm:8.5.14"
|
|
5059
|
+
dependencies:
|
|
5060
|
+
nanoid: "npm:^3.3.11"
|
|
5061
|
+
picocolors: "npm:^1.1.1"
|
|
5062
|
+
source-map-js: "npm:^1.2.1"
|
|
5063
|
+
checksum: 10c0/48138207cf5ef5581be1bfe2cb65ccfe0ac75e43888ba045afc8ed6043d7b56aeb3b9a9fe5b353ff554be943cd0cc15d826ccb991525159175971e5ee8ab0237
|
|
5064
|
+
languageName: node
|
|
5065
|
+
linkType: hard
|
|
5066
|
+
|
|
5001
5067
|
"preact@npm:^10.0.0, preact@npm:^10.5.13":
|
|
5002
5068
|
version: 10.28.2
|
|
5003
5069
|
resolution: "preact@npm:10.28.2"
|
|
@@ -5532,17 +5598,17 @@ __metadata:
|
|
|
5532
5598
|
languageName: node
|
|
5533
5599
|
linkType: hard
|
|
5534
5600
|
|
|
5535
|
-
"tailwindcss@npm:4.0
|
|
5536
|
-
version: 4.0
|
|
5537
|
-
resolution: "tailwindcss@npm:4.0
|
|
5538
|
-
checksum: 10c0/
|
|
5601
|
+
"tailwindcss@npm:4.3.0, tailwindcss@npm:^4.3.0":
|
|
5602
|
+
version: 4.3.0
|
|
5603
|
+
resolution: "tailwindcss@npm:4.3.0"
|
|
5604
|
+
checksum: 10c0/4cde389ee5e9132e7ef90e4c1d05978d52821761a00700c18b7d46d325881086f0a9c9ec7f616929ecd6e26109c41913538883e066c6dd4bd993debbbbc99084
|
|
5539
5605
|
languageName: node
|
|
5540
5606
|
linkType: hard
|
|
5541
5607
|
|
|
5542
|
-
"tapable@npm:^2.
|
|
5543
|
-
version: 2.
|
|
5544
|
-
resolution: "tapable@npm:2.
|
|
5545
|
-
checksum: 10c0/
|
|
5608
|
+
"tapable@npm:^2.3.3":
|
|
5609
|
+
version: 2.3.3
|
|
5610
|
+
resolution: "tapable@npm:2.3.3"
|
|
5611
|
+
checksum: 10c0/47992e861053f861154e92fb4a98ac4ab47b6463717e60792dd1e8c755da0c4964cd8bb68c308a9066d6da89000b6310457b4d5d985c30de4ccc29066068cc17
|
|
5546
5612
|
languageName: node
|
|
5547
5613
|
linkType: hard
|
|
5548
5614
|
|
|
@@ -5615,20 +5681,13 @@ __metadata:
|
|
|
5615
5681
|
languageName: node
|
|
5616
5682
|
linkType: hard
|
|
5617
5683
|
|
|
5618
|
-
"tslib@npm:^2.1.0":
|
|
5684
|
+
"tslib@npm:^2.1.0, tslib@npm:^2.4.0, tslib@npm:^2.8.1":
|
|
5619
5685
|
version: 2.8.1
|
|
5620
5686
|
resolution: "tslib@npm:2.8.1"
|
|
5621
5687
|
checksum: 10c0/9c4759110a19c53f992d9aae23aac5ced636e99887b51b9e61def52611732872ff7668757d4e4c61f19691e36f4da981cd9485e869b4a7408d689f6bf1f14e62
|
|
5622
5688
|
languageName: node
|
|
5623
5689
|
linkType: hard
|
|
5624
5690
|
|
|
5625
|
-
"ufo@npm:^1.5.4, ufo@npm:^1.6.1":
|
|
5626
|
-
version: 1.6.3
|
|
5627
|
-
resolution: "ufo@npm:1.6.3"
|
|
5628
|
-
checksum: 10c0/bf0e4ebff99e54da1b9c7182ac2f40475988b41faa881d579bc97bc2a0509672107b0a0e94c4b8d31a0ab8c4bf07f4aa0b469ac6da8536d56bda5b085ea2e953
|
|
5629
|
-
languageName: node
|
|
5630
|
-
linkType: hard
|
|
5631
|
-
|
|
5632
5691
|
"unist-util-is@npm:^6.0.0":
|
|
5633
5692
|
version: 6.0.0
|
|
5634
5693
|
resolution: "unist-util-is@npm:6.0.0"
|
|
@@ -5705,12 +5764,12 @@ __metadata:
|
|
|
5705
5764
|
languageName: node
|
|
5706
5765
|
linkType: hard
|
|
5707
5766
|
|
|
5708
|
-
"uuid@npm:^11.1.0":
|
|
5709
|
-
version:
|
|
5710
|
-
resolution: "uuid@npm:
|
|
5767
|
+
"uuid@npm:^11.1.0 || ^12 || ^13 || ^14.0.0":
|
|
5768
|
+
version: 14.0.0
|
|
5769
|
+
resolution: "uuid@npm:14.0.0"
|
|
5711
5770
|
bin:
|
|
5712
|
-
uuid: dist/
|
|
5713
|
-
checksum: 10c0/
|
|
5771
|
+
uuid: dist-node/bin/uuid
|
|
5772
|
+
checksum: 10c0/a57ae7794c45005c1a9208989196c5baf79a7679c30f43c1bee9033a2c4d113a2cea216fa6fcc9663b08b0d55635df1a7c6eb7e7f3d21c3e50688c698fa39a50
|
|
5714
5773
|
languageName: node
|
|
5715
5774
|
linkType: hard
|
|
5716
5775
|
|
|
@@ -5792,9 +5851,9 @@ __metadata:
|
|
|
5792
5851
|
languageName: node
|
|
5793
5852
|
linkType: hard
|
|
5794
5853
|
|
|
5795
|
-
"vitepress@npm:^1.4
|
|
5796
|
-
version: 1.6.
|
|
5797
|
-
resolution: "vitepress@npm:1.6.
|
|
5854
|
+
"vitepress@npm:^1.6.4":
|
|
5855
|
+
version: 1.6.4
|
|
5856
|
+
resolution: "vitepress@npm:1.6.4"
|
|
5798
5857
|
dependencies:
|
|
5799
5858
|
"@docsearch/css": "npm:3.8.2"
|
|
5800
5859
|
"@docsearch/js": "npm:3.8.2"
|
|
@@ -5824,56 +5883,7 @@ __metadata:
|
|
|
5824
5883
|
optional: true
|
|
5825
5884
|
bin:
|
|
5826
5885
|
vitepress: bin/vitepress.js
|
|
5827
|
-
checksum: 10c0/
|
|
5828
|
-
languageName: node
|
|
5829
|
-
linkType: hard
|
|
5830
|
-
|
|
5831
|
-
"vscode-jsonrpc@npm:8.2.0":
|
|
5832
|
-
version: 8.2.0
|
|
5833
|
-
resolution: "vscode-jsonrpc@npm:8.2.0"
|
|
5834
|
-
checksum: 10c0/0789c227057a844f5ead55c84679206227a639b9fb76e881185053abc4e9848aa487245966cc2393fcb342c4541241b015a1a2559fddd20ac1e68945c95344e6
|
|
5835
|
-
languageName: node
|
|
5836
|
-
linkType: hard
|
|
5837
|
-
|
|
5838
|
-
"vscode-languageserver-protocol@npm:3.17.5":
|
|
5839
|
-
version: 3.17.5
|
|
5840
|
-
resolution: "vscode-languageserver-protocol@npm:3.17.5"
|
|
5841
|
-
dependencies:
|
|
5842
|
-
vscode-jsonrpc: "npm:8.2.0"
|
|
5843
|
-
vscode-languageserver-types: "npm:3.17.5"
|
|
5844
|
-
checksum: 10c0/5f38fd80da9868d706eaa4a025f4aff9c3faad34646bcde1426f915cbd8d7e8b6c3755ce3fef6eebd256ba3145426af1085305f8a76e34276d2e95aaf339a90b
|
|
5845
|
-
languageName: node
|
|
5846
|
-
linkType: hard
|
|
5847
|
-
|
|
5848
|
-
"vscode-languageserver-textdocument@npm:~1.0.11":
|
|
5849
|
-
version: 1.0.12
|
|
5850
|
-
resolution: "vscode-languageserver-textdocument@npm:1.0.12"
|
|
5851
|
-
checksum: 10c0/534349894b059602c4d97615a1147b6c4c031141c2093e59657f54e38570f5989c21b376836f13b9375419869242e9efb4066643208b21ab1e1dee111a0f00fb
|
|
5852
|
-
languageName: node
|
|
5853
|
-
linkType: hard
|
|
5854
|
-
|
|
5855
|
-
"vscode-languageserver-types@npm:3.17.5":
|
|
5856
|
-
version: 3.17.5
|
|
5857
|
-
resolution: "vscode-languageserver-types@npm:3.17.5"
|
|
5858
|
-
checksum: 10c0/1e1260de79a2cc8de3e46f2e0182cdc94a7eddab487db5a3bd4ee716f67728e685852707d72c059721ce500447be9a46764a04f0611e94e4321ffa088eef36f8
|
|
5859
|
-
languageName: node
|
|
5860
|
-
linkType: hard
|
|
5861
|
-
|
|
5862
|
-
"vscode-languageserver@npm:~9.0.1":
|
|
5863
|
-
version: 9.0.1
|
|
5864
|
-
resolution: "vscode-languageserver@npm:9.0.1"
|
|
5865
|
-
dependencies:
|
|
5866
|
-
vscode-languageserver-protocol: "npm:3.17.5"
|
|
5867
|
-
bin:
|
|
5868
|
-
installServerIntoExtension: bin/installServerIntoExtension
|
|
5869
|
-
checksum: 10c0/8a0838d77c98a211c76e54bd3a6249fc877e4e1a73322673fb0e921168d8e91de4f170f1d4ff7e8b6289d0698207afc6aba6662d4c1cd8e4bd7cae96afd6b0c2
|
|
5870
|
-
languageName: node
|
|
5871
|
-
linkType: hard
|
|
5872
|
-
|
|
5873
|
-
"vscode-uri@npm:~3.0.8":
|
|
5874
|
-
version: 3.0.8
|
|
5875
|
-
resolution: "vscode-uri@npm:3.0.8"
|
|
5876
|
-
checksum: 10c0/f7f217f526bf109589969fe6e66b71e70b937de1385a1d7bb577ca3ee7c5e820d3856a86e9ff2fa9b7a0bc56a3dd8c3a9a557d3fedd7df414bc618d5e6b567f9
|
|
5886
|
+
checksum: 10c0/bffdd6fcfdfa72ff48228f7361d596e2279ebdbde9684b87cf66f7ef12ba096cb6eb931a1aff82038bdc579bb287e0982ba28f9416ed47af18e720a93b332d71
|
|
5877
5887
|
languageName: node
|
|
5878
5888
|
linkType: hard
|
|
5879
5889
|
|