@aurelia/storybook 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -23
- package/__tests__/render.test.ts +1 -1
- package/apps/hello-world/.storybook/main.ts +5 -7
- package/apps/hello-world/package-lock.json +10141 -0
- package/apps/hello-world/package.json +6 -10
- package/apps/hello-world/src/stories/hello-world.stories.ts +5 -4
- package/apps/hello-world-webpack/.storybook/main.ts +1 -3
- package/apps/hello-world-webpack/package-lock.json +77 -1399
- package/apps/hello-world-webpack/package.json +3 -5
- package/dist/index.js +79 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +79 -3
- package/dist/index.mjs.map +1 -1
- package/dist/preview/render.js +79 -3
- package/dist/preview/render.js.map +1 -1
- package/dist/preview/render.mjs +79 -3
- package/dist/preview/render.mjs.map +1 -1
- package/dist/preview.js +0 -1
- package/dist/preview.js.map +1 -1
- package/dist/preview.mjs +0 -1
- package/dist/preview.mjs.map +1 -1
- package/package.json +6 -10
- package/rollup.config.mjs +0 -3
- package/src/preview/render.ts +2 -2
- package/src/preview/types.ts +1 -1
|
@@ -13,13 +13,11 @@
|
|
|
13
13
|
"aurelia": "2.0.0-beta.14"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@aurelia/storybook": "file
|
|
16
|
+
"@aurelia/storybook": "file:../..",
|
|
17
17
|
"@aurelia/testing": "latest",
|
|
18
18
|
"@aurelia/webpack-loader": "latest",
|
|
19
|
-
"@storybook/addon-
|
|
20
|
-
"@storybook/addon-links": "^9.0.12",
|
|
19
|
+
"@storybook/addon-links": "^9.0.0",
|
|
21
20
|
"@storybook/addon-webpack5-compiler-swc": "^3.0.0",
|
|
22
|
-
"@storybook/html-webpack5": "^8.6.14",
|
|
23
21
|
"@types/node": "^22.10.2",
|
|
24
22
|
"autoprefixer": "^10.4.20",
|
|
25
23
|
"css-loader": "^7.1.2",
|
|
@@ -29,7 +27,7 @@
|
|
|
29
27
|
"html-webpack-plugin": "^5.6.3",
|
|
30
28
|
"postcss": "^8.4.49",
|
|
31
29
|
"postcss-loader": "^8.1.1",
|
|
32
|
-
"storybook": "^9.0.
|
|
30
|
+
"storybook": "^9.0.0",
|
|
33
31
|
"style-loader": "^4.0.0",
|
|
34
32
|
"stylelint": "^16.12.0",
|
|
35
33
|
"stylelint-config-standard": "^36.0.1",
|
|
@@ -43,42 +41,9 @@
|
|
|
43
41
|
"webpack-dev-server": "^5.2.0"
|
|
44
42
|
}
|
|
45
43
|
},
|
|
46
|
-
"..": {
|
|
47
|
-
"name": "@aurelia/storybook",
|
|
48
|
-
"version": "0.1.1",
|
|
49
|
-
"extraneous": true,
|
|
50
|
-
"devDependencies": {
|
|
51
|
-
"@aurelia/webpack-loader": "2.0.0-beta.24",
|
|
52
|
-
"@rollup/plugin-commonjs": "^28.0.2",
|
|
53
|
-
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
54
|
-
"@rollup/plugin-typescript": "^12.1.2",
|
|
55
|
-
"@storybook/builder-vite": "^8.5.3",
|
|
56
|
-
"@storybook/core-common": "^8.5.3",
|
|
57
|
-
"@storybook/preview-api": "^8.5.3",
|
|
58
|
-
"@storybook/types": "^8.5.3",
|
|
59
|
-
"@types/jest": "^29.5.14",
|
|
60
|
-
"glob": "^11.0.1",
|
|
61
|
-
"jest": "^29.7.0",
|
|
62
|
-
"jest-environment-jsdom": "^29.7.0",
|
|
63
|
-
"rollup": "^4.34.2",
|
|
64
|
-
"ts-jest": "^29.2.5",
|
|
65
|
-
"ts-loader": "9.5.2",
|
|
66
|
-
"typescript": "^5.7.3"
|
|
67
|
-
},
|
|
68
|
-
"peerDependencies": {
|
|
69
|
-
"@aurelia/runtime-html": "^2.0.0-beta.24",
|
|
70
|
-
"@aurelia/vite-plugin": "^2.0.0-beta.24",
|
|
71
|
-
"@storybook/addons": "^7.6.17",
|
|
72
|
-
"@storybook/builder-vite": "^8.5.3",
|
|
73
|
-
"@storybook/builder-webpack5": "^8.5.3",
|
|
74
|
-
"@storybook/core-common": "^8.5.3",
|
|
75
|
-
"@storybook/core-events": "^8.5.3",
|
|
76
|
-
"aurelia": "^2.0.0-beta.24"
|
|
77
|
-
}
|
|
78
|
-
},
|
|
79
44
|
"../..": {
|
|
80
45
|
"name": "@aurelia/storybook",
|
|
81
|
-
"version": "1.0.
|
|
46
|
+
"version": "1.0.1",
|
|
82
47
|
"dev": true,
|
|
83
48
|
"devDependencies": {
|
|
84
49
|
"@aurelia/webpack-loader": "^2.0.0-beta.24",
|
|
@@ -86,14 +51,12 @@
|
|
|
86
51
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
87
52
|
"@rollup/plugin-typescript": "^12.1.3",
|
|
88
53
|
"@storybook/builder-vite": "^9.0.12",
|
|
89
|
-
"@storybook/core-common": "^8.6.14",
|
|
90
|
-
"@storybook/preview-api": "^8.6.14",
|
|
91
|
-
"@storybook/types": "^8.6.14",
|
|
92
54
|
"@types/jest": "^30.0.0",
|
|
93
55
|
"glob": "^11.0.3",
|
|
94
56
|
"jest": "^30.0.2",
|
|
95
57
|
"jest-environment-jsdom": "^30.0.2",
|
|
96
58
|
"rollup": "^4.44.0",
|
|
59
|
+
"storybook": "^9.0.12",
|
|
97
60
|
"ts-jest": "^29.4.0",
|
|
98
61
|
"ts-loader": "^9.5.2",
|
|
99
62
|
"typescript": "^5.8.3"
|
|
@@ -101,12 +64,10 @@
|
|
|
101
64
|
"peerDependencies": {
|
|
102
65
|
"@aurelia/runtime-html": "^2.0.0-beta.24",
|
|
103
66
|
"@aurelia/vite-plugin": "^2.0.0-beta.24",
|
|
104
|
-
"@storybook/
|
|
105
|
-
"@storybook/builder-
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"@storybook/core-events": "^8.6.14",
|
|
109
|
-
"aurelia": "^2.0.0-beta.24"
|
|
67
|
+
"@storybook/builder-vite": "^9.0.0",
|
|
68
|
+
"@storybook/builder-webpack5": "^9.0.0",
|
|
69
|
+
"aurelia": "^2.0.0-beta.24",
|
|
70
|
+
"storybook": "^9.0.0"
|
|
110
71
|
}
|
|
111
72
|
},
|
|
112
73
|
"node_modules/@adobe/css-tools": {
|
|
@@ -384,6 +345,7 @@
|
|
|
384
345
|
"integrity": "sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==",
|
|
385
346
|
"dev": true,
|
|
386
347
|
"license": "MIT",
|
|
348
|
+
"peer": true,
|
|
387
349
|
"engines": {
|
|
388
350
|
"node": ">=6.9.0"
|
|
389
351
|
}
|
|
@@ -1292,697 +1254,98 @@
|
|
|
1292
1254
|
"version": "2.0.5",
|
|
1293
1255
|
"resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz",
|
|
1294
1256
|
"integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==",
|
|
1295
|
-
"dev": true,
|
|
1296
|
-
"license": "MIT"
|
|
1297
|
-
},
|
|
1298
|
-
"node_modules/@mdx-js/react": {
|
|
1299
|
-
"version": "3.1.0",
|
|
1300
|
-
"resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-3.1.0.tgz",
|
|
1301
|
-
"integrity": "sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ==",
|
|
1302
|
-
"dev": true,
|
|
1303
|
-
"license": "MIT",
|
|
1304
|
-
"dependencies": {
|
|
1305
|
-
"@types/mdx": "^2.0.0"
|
|
1306
|
-
},
|
|
1307
|
-
"funding": {
|
|
1308
|
-
"type": "opencollective",
|
|
1309
|
-
"url": "https://opencollective.com/unified"
|
|
1310
|
-
},
|
|
1311
|
-
"peerDependencies": {
|
|
1312
|
-
"@types/react": ">=16",
|
|
1313
|
-
"react": ">=16"
|
|
1314
|
-
}
|
|
1315
|
-
},
|
|
1316
|
-
"node_modules/@nodelib/fs.scandir": {
|
|
1317
|
-
"version": "2.1.5",
|
|
1318
|
-
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
|
|
1319
|
-
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
|
|
1320
|
-
"dev": true,
|
|
1321
|
-
"license": "MIT",
|
|
1322
|
-
"dependencies": {
|
|
1323
|
-
"@nodelib/fs.stat": "2.0.5",
|
|
1324
|
-
"run-parallel": "^1.1.9"
|
|
1325
|
-
},
|
|
1326
|
-
"engines": {
|
|
1327
|
-
"node": ">= 8"
|
|
1328
|
-
}
|
|
1329
|
-
},
|
|
1330
|
-
"node_modules/@nodelib/fs.stat": {
|
|
1331
|
-
"version": "2.0.5",
|
|
1332
|
-
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
|
|
1333
|
-
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
|
|
1334
|
-
"dev": true,
|
|
1335
|
-
"license": "MIT",
|
|
1336
|
-
"engines": {
|
|
1337
|
-
"node": ">= 8"
|
|
1338
|
-
}
|
|
1339
|
-
},
|
|
1340
|
-
"node_modules/@nodelib/fs.walk": {
|
|
1341
|
-
"version": "1.2.8",
|
|
1342
|
-
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
|
|
1343
|
-
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
|
|
1344
|
-
"dev": true,
|
|
1345
|
-
"license": "MIT",
|
|
1346
|
-
"dependencies": {
|
|
1347
|
-
"@nodelib/fs.scandir": "2.1.5",
|
|
1348
|
-
"fastq": "^1.6.0"
|
|
1349
|
-
},
|
|
1350
|
-
"engines": {
|
|
1351
|
-
"node": ">= 8"
|
|
1352
|
-
}
|
|
1353
|
-
},
|
|
1354
|
-
"node_modules/@polka/url": {
|
|
1355
|
-
"version": "1.0.0-next.29",
|
|
1356
|
-
"resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz",
|
|
1357
|
-
"integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==",
|
|
1358
|
-
"dev": true,
|
|
1359
|
-
"license": "MIT"
|
|
1360
|
-
},
|
|
1361
|
-
"node_modules/@storybook/addon-essentials": {
|
|
1362
|
-
"version": "8.6.14",
|
|
1363
|
-
"resolved": "https://registry.npmjs.org/@storybook/addon-essentials/-/addon-essentials-8.6.14.tgz",
|
|
1364
|
-
"integrity": "sha512-5ZZSHNaW9mXMOFkoPyc3QkoNGdJHETZydI62/OASR0lmPlJ1065TNigEo5dJddmZNn0/3bkE8eKMAzLnO5eIdA==",
|
|
1365
|
-
"dev": true,
|
|
1366
|
-
"license": "MIT",
|
|
1367
|
-
"dependencies": {
|
|
1368
|
-
"@storybook/addon-actions": "8.6.14",
|
|
1369
|
-
"@storybook/addon-backgrounds": "8.6.14",
|
|
1370
|
-
"@storybook/addon-controls": "8.6.14",
|
|
1371
|
-
"@storybook/addon-docs": "8.6.14",
|
|
1372
|
-
"@storybook/addon-highlight": "8.6.14",
|
|
1373
|
-
"@storybook/addon-measure": "8.6.14",
|
|
1374
|
-
"@storybook/addon-outline": "8.6.14",
|
|
1375
|
-
"@storybook/addon-toolbars": "8.6.14",
|
|
1376
|
-
"@storybook/addon-viewport": "8.6.14",
|
|
1377
|
-
"ts-dedent": "^2.0.0"
|
|
1378
|
-
},
|
|
1379
|
-
"funding": {
|
|
1380
|
-
"type": "opencollective",
|
|
1381
|
-
"url": "https://opencollective.com/storybook"
|
|
1382
|
-
},
|
|
1383
|
-
"peerDependencies": {
|
|
1384
|
-
"storybook": "^8.6.14"
|
|
1385
|
-
}
|
|
1386
|
-
},
|
|
1387
|
-
"node_modules/@storybook/addon-essentials/node_modules/@storybook/addon-actions": {
|
|
1388
|
-
"version": "8.6.14",
|
|
1389
|
-
"resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-8.6.14.tgz",
|
|
1390
|
-
"integrity": "sha512-mDQxylxGGCQSK7tJPkD144J8jWh9IU9ziJMHfB84PKpI/V5ZgqMDnpr2bssTrUaGDqU5e1/z8KcRF+Melhs9pQ==",
|
|
1391
|
-
"dev": true,
|
|
1392
|
-
"license": "MIT",
|
|
1393
|
-
"dependencies": {
|
|
1394
|
-
"@storybook/global": "^5.0.0",
|
|
1395
|
-
"@types/uuid": "^9.0.1",
|
|
1396
|
-
"dequal": "^2.0.2",
|
|
1397
|
-
"polished": "^4.2.2",
|
|
1398
|
-
"uuid": "^9.0.0"
|
|
1399
|
-
},
|
|
1400
|
-
"funding": {
|
|
1401
|
-
"type": "opencollective",
|
|
1402
|
-
"url": "https://opencollective.com/storybook"
|
|
1403
|
-
},
|
|
1404
|
-
"peerDependencies": {
|
|
1405
|
-
"storybook": "^8.6.14"
|
|
1406
|
-
}
|
|
1407
|
-
},
|
|
1408
|
-
"node_modules/@storybook/addon-essentials/node_modules/@storybook/addon-backgrounds": {
|
|
1409
|
-
"version": "8.6.14",
|
|
1410
|
-
"resolved": "https://registry.npmjs.org/@storybook/addon-backgrounds/-/addon-backgrounds-8.6.14.tgz",
|
|
1411
|
-
"integrity": "sha512-l9xS8qWe5n4tvMwth09QxH2PmJbCctEvBAc1tjjRasAfrd69f7/uFK4WhwJAstzBTNgTc8VXI4w8ZR97i1sFbg==",
|
|
1412
|
-
"dev": true,
|
|
1413
|
-
"license": "MIT",
|
|
1414
|
-
"dependencies": {
|
|
1415
|
-
"@storybook/global": "^5.0.0",
|
|
1416
|
-
"memoizerific": "^1.11.3",
|
|
1417
|
-
"ts-dedent": "^2.0.0"
|
|
1418
|
-
},
|
|
1419
|
-
"funding": {
|
|
1420
|
-
"type": "opencollective",
|
|
1421
|
-
"url": "https://opencollective.com/storybook"
|
|
1422
|
-
},
|
|
1423
|
-
"peerDependencies": {
|
|
1424
|
-
"storybook": "^8.6.14"
|
|
1425
|
-
}
|
|
1426
|
-
},
|
|
1427
|
-
"node_modules/@storybook/addon-essentials/node_modules/@storybook/addon-controls": {
|
|
1428
|
-
"version": "8.6.14",
|
|
1429
|
-
"resolved": "https://registry.npmjs.org/@storybook/addon-controls/-/addon-controls-8.6.14.tgz",
|
|
1430
|
-
"integrity": "sha512-IiQpkNJdiRyA4Mq9mzjZlvQugL/aE7hNgVxBBGPiIZG6wb6Ht9hNnBYpap5ZXXFKV9p2qVI0FZK445ONmAa+Cw==",
|
|
1431
|
-
"dev": true,
|
|
1432
|
-
"license": "MIT",
|
|
1433
|
-
"dependencies": {
|
|
1434
|
-
"@storybook/global": "^5.0.0",
|
|
1435
|
-
"dequal": "^2.0.2",
|
|
1436
|
-
"ts-dedent": "^2.0.0"
|
|
1437
|
-
},
|
|
1438
|
-
"funding": {
|
|
1439
|
-
"type": "opencollective",
|
|
1440
|
-
"url": "https://opencollective.com/storybook"
|
|
1441
|
-
},
|
|
1442
|
-
"peerDependencies": {
|
|
1443
|
-
"storybook": "^8.6.14"
|
|
1444
|
-
}
|
|
1445
|
-
},
|
|
1446
|
-
"node_modules/@storybook/addon-essentials/node_modules/@storybook/addon-docs": {
|
|
1447
|
-
"version": "8.6.14",
|
|
1448
|
-
"resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-8.6.14.tgz",
|
|
1449
|
-
"integrity": "sha512-Obpd0OhAF99JyU5pp5ci17YmpcQtMNgqW2pTXV8jAiiipWpwO++hNDeQmLmlSXB399XjtRDOcDVkoc7rc6JzdQ==",
|
|
1450
|
-
"dev": true,
|
|
1451
|
-
"license": "MIT",
|
|
1452
|
-
"dependencies": {
|
|
1453
|
-
"@mdx-js/react": "^3.0.0",
|
|
1454
|
-
"@storybook/blocks": "8.6.14",
|
|
1455
|
-
"@storybook/csf-plugin": "8.6.14",
|
|
1456
|
-
"@storybook/react-dom-shim": "8.6.14",
|
|
1457
|
-
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
1458
|
-
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
1459
|
-
"ts-dedent": "^2.0.0"
|
|
1460
|
-
},
|
|
1461
|
-
"funding": {
|
|
1462
|
-
"type": "opencollective",
|
|
1463
|
-
"url": "https://opencollective.com/storybook"
|
|
1464
|
-
},
|
|
1465
|
-
"peerDependencies": {
|
|
1466
|
-
"storybook": "^8.6.14"
|
|
1467
|
-
}
|
|
1468
|
-
},
|
|
1469
|
-
"node_modules/@storybook/addon-essentials/node_modules/@storybook/addon-docs/node_modules/@storybook/blocks": {
|
|
1470
|
-
"version": "8.6.14",
|
|
1471
|
-
"resolved": "https://registry.npmjs.org/@storybook/blocks/-/blocks-8.6.14.tgz",
|
|
1472
|
-
"integrity": "sha512-rBMHAfA39AGHgkrDze4RmsnQTMw1ND5fGWobr9pDcJdnDKWQWNRD7Nrlxj0gFlN3n4D9lEZhWGdFrCbku7FVAQ==",
|
|
1473
|
-
"dev": true,
|
|
1474
|
-
"license": "MIT",
|
|
1475
|
-
"dependencies": {
|
|
1476
|
-
"@storybook/icons": "^1.2.12",
|
|
1477
|
-
"ts-dedent": "^2.0.0"
|
|
1478
|
-
},
|
|
1479
|
-
"funding": {
|
|
1480
|
-
"type": "opencollective",
|
|
1481
|
-
"url": "https://opencollective.com/storybook"
|
|
1482
|
-
},
|
|
1483
|
-
"peerDependencies": {
|
|
1484
|
-
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
1485
|
-
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
1486
|
-
"storybook": "^8.6.14"
|
|
1487
|
-
},
|
|
1488
|
-
"peerDependenciesMeta": {
|
|
1489
|
-
"react": {
|
|
1490
|
-
"optional": true
|
|
1491
|
-
},
|
|
1492
|
-
"react-dom": {
|
|
1493
|
-
"optional": true
|
|
1494
|
-
}
|
|
1495
|
-
}
|
|
1496
|
-
},
|
|
1497
|
-
"node_modules/@storybook/addon-essentials/node_modules/@storybook/addon-docs/node_modules/@storybook/csf-plugin": {
|
|
1498
|
-
"version": "8.6.14",
|
|
1499
|
-
"resolved": "https://registry.npmjs.org/@storybook/csf-plugin/-/csf-plugin-8.6.14.tgz",
|
|
1500
|
-
"integrity": "sha512-dErtc9teAuN+eelN8FojzFE635xlq9cNGGGEu0WEmMUQ4iJ8pingvBO1N8X3scz4Ry7KnxX++NNf3J3gpxS8qQ==",
|
|
1501
|
-
"dev": true,
|
|
1502
|
-
"license": "MIT",
|
|
1503
|
-
"dependencies": {
|
|
1504
|
-
"unplugin": "^1.3.1"
|
|
1505
|
-
},
|
|
1506
|
-
"funding": {
|
|
1507
|
-
"type": "opencollective",
|
|
1508
|
-
"url": "https://opencollective.com/storybook"
|
|
1509
|
-
},
|
|
1510
|
-
"peerDependencies": {
|
|
1511
|
-
"storybook": "^8.6.14"
|
|
1512
|
-
}
|
|
1513
|
-
},
|
|
1514
|
-
"node_modules/@storybook/addon-essentials/node_modules/@storybook/addon-docs/node_modules/@storybook/react-dom-shim": {
|
|
1515
|
-
"version": "8.6.14",
|
|
1516
|
-
"resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-8.6.14.tgz",
|
|
1517
|
-
"integrity": "sha512-0hixr3dOy3f3M+HBofp3jtMQMS+sqzjKNgl7Arfuj3fvjmyXOks/yGjDImySR4imPtEllvPZfhiQNlejheaInw==",
|
|
1518
|
-
"dev": true,
|
|
1519
|
-
"license": "MIT",
|
|
1520
|
-
"funding": {
|
|
1521
|
-
"type": "opencollective",
|
|
1522
|
-
"url": "https://opencollective.com/storybook"
|
|
1523
|
-
},
|
|
1524
|
-
"peerDependencies": {
|
|
1525
|
-
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta",
|
|
1526
|
-
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta",
|
|
1527
|
-
"storybook": "^8.6.14"
|
|
1528
|
-
}
|
|
1529
|
-
},
|
|
1530
|
-
"node_modules/@storybook/addon-essentials/node_modules/@storybook/addon-highlight": {
|
|
1531
|
-
"version": "8.6.14",
|
|
1532
|
-
"resolved": "https://registry.npmjs.org/@storybook/addon-highlight/-/addon-highlight-8.6.14.tgz",
|
|
1533
|
-
"integrity": "sha512-4H19OJlapkofiE9tM6K/vsepf4ir9jMm9T+zw5L85blJZxhKZIbJ6FO0TCG9PDc4iPt3L6+aq5B0X29s9zicNQ==",
|
|
1534
|
-
"dev": true,
|
|
1535
|
-
"license": "MIT",
|
|
1536
|
-
"dependencies": {
|
|
1537
|
-
"@storybook/global": "^5.0.0"
|
|
1538
|
-
},
|
|
1539
|
-
"funding": {
|
|
1540
|
-
"type": "opencollective",
|
|
1541
|
-
"url": "https://opencollective.com/storybook"
|
|
1542
|
-
},
|
|
1543
|
-
"peerDependencies": {
|
|
1544
|
-
"storybook": "^8.6.14"
|
|
1545
|
-
}
|
|
1546
|
-
},
|
|
1547
|
-
"node_modules/@storybook/addon-essentials/node_modules/@storybook/addon-measure": {
|
|
1548
|
-
"version": "8.6.14",
|
|
1549
|
-
"resolved": "https://registry.npmjs.org/@storybook/addon-measure/-/addon-measure-8.6.14.tgz",
|
|
1550
|
-
"integrity": "sha512-1Tlyb72NX8aAqm6I6OICsUuGOP6hgnXcuFlXucyhKomPa6j3Eu2vKu561t/f0oGtAK2nO93Z70kVaEh5X+vaGw==",
|
|
1551
|
-
"dev": true,
|
|
1552
|
-
"license": "MIT",
|
|
1553
|
-
"dependencies": {
|
|
1554
|
-
"@storybook/global": "^5.0.0",
|
|
1555
|
-
"tiny-invariant": "^1.3.1"
|
|
1556
|
-
},
|
|
1557
|
-
"funding": {
|
|
1558
|
-
"type": "opencollective",
|
|
1559
|
-
"url": "https://opencollective.com/storybook"
|
|
1560
|
-
},
|
|
1561
|
-
"peerDependencies": {
|
|
1562
|
-
"storybook": "^8.6.14"
|
|
1563
|
-
}
|
|
1564
|
-
},
|
|
1565
|
-
"node_modules/@storybook/addon-essentials/node_modules/@storybook/addon-outline": {
|
|
1566
|
-
"version": "8.6.14",
|
|
1567
|
-
"resolved": "https://registry.npmjs.org/@storybook/addon-outline/-/addon-outline-8.6.14.tgz",
|
|
1568
|
-
"integrity": "sha512-CW857JvN6OxGWElqjlzJO2S69DHf+xO3WsEfT5mT3ZtIjmsvRDukdWfDU9bIYUFyA2lFvYjncBGjbK+I91XR7w==",
|
|
1569
|
-
"dev": true,
|
|
1570
|
-
"license": "MIT",
|
|
1571
|
-
"dependencies": {
|
|
1572
|
-
"@storybook/global": "^5.0.0",
|
|
1573
|
-
"ts-dedent": "^2.0.0"
|
|
1574
|
-
},
|
|
1575
|
-
"funding": {
|
|
1576
|
-
"type": "opencollective",
|
|
1577
|
-
"url": "https://opencollective.com/storybook"
|
|
1578
|
-
},
|
|
1579
|
-
"peerDependencies": {
|
|
1580
|
-
"storybook": "^8.6.14"
|
|
1581
|
-
}
|
|
1582
|
-
},
|
|
1583
|
-
"node_modules/@storybook/addon-essentials/node_modules/@storybook/addon-toolbars": {
|
|
1584
|
-
"version": "8.6.14",
|
|
1585
|
-
"resolved": "https://registry.npmjs.org/@storybook/addon-toolbars/-/addon-toolbars-8.6.14.tgz",
|
|
1586
|
-
"integrity": "sha512-W/wEXT8h3VyZTVfWK/84BAcjAxTdtRiAkT2KAN0nbSHxxB5KEM1MjKpKu2upyzzMa3EywITqbfy4dP6lpkVTwQ==",
|
|
1587
|
-
"dev": true,
|
|
1588
|
-
"license": "MIT",
|
|
1589
|
-
"funding": {
|
|
1590
|
-
"type": "opencollective",
|
|
1591
|
-
"url": "https://opencollective.com/storybook"
|
|
1592
|
-
},
|
|
1593
|
-
"peerDependencies": {
|
|
1594
|
-
"storybook": "^8.6.14"
|
|
1595
|
-
}
|
|
1596
|
-
},
|
|
1597
|
-
"node_modules/@storybook/addon-essentials/node_modules/@storybook/addon-viewport": {
|
|
1598
|
-
"version": "8.6.14",
|
|
1599
|
-
"resolved": "https://registry.npmjs.org/@storybook/addon-viewport/-/addon-viewport-8.6.14.tgz",
|
|
1600
|
-
"integrity": "sha512-gNzVQbMqRC+/4uQTPI2ZrWuRHGquTMZpdgB9DrD88VTEjNudP+J6r8myLfr2VvGksBbUMHkGHMXHuIhrBEnXYA==",
|
|
1601
|
-
"dev": true,
|
|
1602
|
-
"license": "MIT",
|
|
1603
|
-
"dependencies": {
|
|
1604
|
-
"memoizerific": "^1.11.3"
|
|
1605
|
-
},
|
|
1606
|
-
"funding": {
|
|
1607
|
-
"type": "opencollective",
|
|
1608
|
-
"url": "https://opencollective.com/storybook"
|
|
1609
|
-
},
|
|
1610
|
-
"peerDependencies": {
|
|
1611
|
-
"storybook": "^8.6.14"
|
|
1612
|
-
}
|
|
1613
|
-
},
|
|
1614
|
-
"node_modules/@storybook/addon-essentials/node_modules/uuid": {
|
|
1615
|
-
"version": "9.0.1",
|
|
1616
|
-
"resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz",
|
|
1617
|
-
"integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==",
|
|
1618
|
-
"dev": true,
|
|
1619
|
-
"funding": [
|
|
1620
|
-
"https://github.com/sponsors/broofa",
|
|
1621
|
-
"https://github.com/sponsors/ctavan"
|
|
1622
|
-
],
|
|
1623
|
-
"license": "MIT",
|
|
1624
|
-
"bin": {
|
|
1625
|
-
"uuid": "dist/bin/uuid"
|
|
1626
|
-
}
|
|
1627
|
-
},
|
|
1628
|
-
"node_modules/@storybook/addon-links": {
|
|
1629
|
-
"version": "9.0.12",
|
|
1630
|
-
"resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-9.0.12.tgz",
|
|
1631
|
-
"integrity": "sha512-Ix7WXnCMkEWrgBrGCoZAFH276Xj/4g8e5Kao9BSZneUBjJJC2LuCaTftGeiM4kQ7sKBPOc/L6zIyusWckBvXIQ==",
|
|
1632
|
-
"dev": true,
|
|
1633
|
-
"license": "MIT",
|
|
1634
|
-
"dependencies": {
|
|
1635
|
-
"@storybook/global": "^5.0.0"
|
|
1636
|
-
},
|
|
1637
|
-
"funding": {
|
|
1638
|
-
"type": "opencollective",
|
|
1639
|
-
"url": "https://opencollective.com/storybook"
|
|
1640
|
-
},
|
|
1641
|
-
"peerDependencies": {
|
|
1642
|
-
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta",
|
|
1643
|
-
"storybook": "^9.0.12"
|
|
1644
|
-
},
|
|
1645
|
-
"peerDependenciesMeta": {
|
|
1646
|
-
"react": {
|
|
1647
|
-
"optional": true
|
|
1648
|
-
}
|
|
1649
|
-
}
|
|
1650
|
-
},
|
|
1651
|
-
"node_modules/@storybook/addon-webpack5-compiler-swc": {
|
|
1652
|
-
"version": "3.0.0",
|
|
1653
|
-
"resolved": "https://registry.npmjs.org/@storybook/addon-webpack5-compiler-swc/-/addon-webpack5-compiler-swc-3.0.0.tgz",
|
|
1654
|
-
"integrity": "sha512-qkQwQEvHlxwPCHz/xakGfXJusEa1gKMw7enELh6QGopblfN3rMiV084boqiIqBReqWTasSwHOqvuElAu0NQ+8w==",
|
|
1655
|
-
"dev": true,
|
|
1656
|
-
"license": "MIT",
|
|
1657
|
-
"dependencies": {
|
|
1658
|
-
"@swc/core": "^1.10.8",
|
|
1659
|
-
"swc-loader": "^0.2.6"
|
|
1660
|
-
},
|
|
1661
|
-
"engines": {
|
|
1662
|
-
"node": ">=18"
|
|
1663
|
-
}
|
|
1664
|
-
},
|
|
1665
|
-
"node_modules/@storybook/global": {
|
|
1666
|
-
"version": "5.0.0",
|
|
1667
|
-
"resolved": "https://registry.npmjs.org/@storybook/global/-/global-5.0.0.tgz",
|
|
1668
|
-
"integrity": "sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==",
|
|
1669
|
-
"dev": true,
|
|
1670
|
-
"license": "MIT"
|
|
1671
|
-
},
|
|
1672
|
-
"node_modules/@storybook/html-webpack5": {
|
|
1673
|
-
"version": "8.6.14",
|
|
1674
|
-
"resolved": "https://registry.npmjs.org/@storybook/html-webpack5/-/html-webpack5-8.6.14.tgz",
|
|
1675
|
-
"integrity": "sha512-OLq/ONRV7I84oyoaMSnwa9xDHP9Y6/u9Zz7jTcAgE2iThmaQND+2IfUHgRYK8QNWyQQwwLzV4+anvUsojtAmkw==",
|
|
1676
|
-
"dev": true,
|
|
1677
|
-
"license": "MIT",
|
|
1678
|
-
"dependencies": {
|
|
1679
|
-
"@storybook/builder-webpack5": "8.6.14",
|
|
1680
|
-
"@storybook/global": "^5.0.0",
|
|
1681
|
-
"@storybook/html": "8.6.14",
|
|
1682
|
-
"@storybook/preset-html-webpack": "8.6.14"
|
|
1683
|
-
},
|
|
1684
|
-
"engines": {
|
|
1685
|
-
"node": ">=18.0.0"
|
|
1686
|
-
},
|
|
1687
|
-
"funding": {
|
|
1688
|
-
"type": "opencollective",
|
|
1689
|
-
"url": "https://opencollective.com/storybook"
|
|
1690
|
-
},
|
|
1691
|
-
"peerDependencies": {
|
|
1692
|
-
"storybook": "^8.6.14"
|
|
1693
|
-
}
|
|
1694
|
-
},
|
|
1695
|
-
"node_modules/@storybook/html-webpack5/node_modules/@storybook/builder-webpack5": {
|
|
1696
|
-
"version": "8.6.14",
|
|
1697
|
-
"resolved": "https://registry.npmjs.org/@storybook/builder-webpack5/-/builder-webpack5-8.6.14.tgz",
|
|
1698
|
-
"integrity": "sha512-YZYAqc6NBKoMTKZpjxnkMch6zDtMkBZdS/yaji1+wJX2QPFBwTbSh7SpeBxDp1S11gXSAJ4f1btUWeqSqo8nJA==",
|
|
1699
|
-
"dev": true,
|
|
1700
|
-
"license": "MIT",
|
|
1701
|
-
"dependencies": {
|
|
1702
|
-
"@storybook/core-webpack": "8.6.14",
|
|
1703
|
-
"@types/semver": "^7.3.4",
|
|
1704
|
-
"browser-assert": "^1.2.1",
|
|
1705
|
-
"case-sensitive-paths-webpack-plugin": "^2.4.0",
|
|
1706
|
-
"cjs-module-lexer": "^1.2.3",
|
|
1707
|
-
"constants-browserify": "^1.0.0",
|
|
1708
|
-
"css-loader": "^6.7.1",
|
|
1709
|
-
"es-module-lexer": "^1.5.0",
|
|
1710
|
-
"fork-ts-checker-webpack-plugin": "^8.0.0",
|
|
1711
|
-
"html-webpack-plugin": "^5.5.0",
|
|
1712
|
-
"magic-string": "^0.30.5",
|
|
1713
|
-
"path-browserify": "^1.0.1",
|
|
1714
|
-
"process": "^0.11.10",
|
|
1715
|
-
"semver": "^7.3.7",
|
|
1716
|
-
"style-loader": "^3.3.1",
|
|
1717
|
-
"terser-webpack-plugin": "^5.3.1",
|
|
1718
|
-
"ts-dedent": "^2.0.0",
|
|
1719
|
-
"url": "^0.11.0",
|
|
1720
|
-
"util": "^0.12.4",
|
|
1721
|
-
"util-deprecate": "^1.0.2",
|
|
1722
|
-
"webpack": "5",
|
|
1723
|
-
"webpack-dev-middleware": "^6.1.2",
|
|
1724
|
-
"webpack-hot-middleware": "^2.25.1",
|
|
1725
|
-
"webpack-virtual-modules": "^0.6.0"
|
|
1726
|
-
},
|
|
1727
|
-
"funding": {
|
|
1728
|
-
"type": "opencollective",
|
|
1729
|
-
"url": "https://opencollective.com/storybook"
|
|
1730
|
-
},
|
|
1731
|
-
"peerDependencies": {
|
|
1732
|
-
"storybook": "^8.6.14"
|
|
1733
|
-
},
|
|
1734
|
-
"peerDependenciesMeta": {
|
|
1735
|
-
"typescript": {
|
|
1736
|
-
"optional": true
|
|
1737
|
-
}
|
|
1738
|
-
}
|
|
1739
|
-
},
|
|
1740
|
-
"node_modules/@storybook/html-webpack5/node_modules/@storybook/builder-webpack5/node_modules/@storybook/core-webpack": {
|
|
1741
|
-
"version": "8.6.14",
|
|
1742
|
-
"resolved": "https://registry.npmjs.org/@storybook/core-webpack/-/core-webpack-8.6.14.tgz",
|
|
1743
|
-
"integrity": "sha512-iG7r8osNKabSGBbuJuSeMWKbU+ilt5PvzTYkClcYaagla/DliXkXvfywA6jOugVk/Cpx+c6tVKlPfjLcaQHwmw==",
|
|
1744
|
-
"dev": true,
|
|
1745
|
-
"license": "MIT",
|
|
1746
|
-
"dependencies": {
|
|
1747
|
-
"ts-dedent": "^2.0.0"
|
|
1748
|
-
},
|
|
1749
|
-
"funding": {
|
|
1750
|
-
"type": "opencollective",
|
|
1751
|
-
"url": "https://opencollective.com/storybook"
|
|
1752
|
-
},
|
|
1753
|
-
"peerDependencies": {
|
|
1754
|
-
"storybook": "^8.6.14"
|
|
1755
|
-
}
|
|
1756
|
-
},
|
|
1757
|
-
"node_modules/@storybook/html-webpack5/node_modules/@storybook/html": {
|
|
1758
|
-
"version": "8.6.14",
|
|
1759
|
-
"resolved": "https://registry.npmjs.org/@storybook/html/-/html-8.6.14.tgz",
|
|
1760
|
-
"integrity": "sha512-Mbn5M7qsODJbVYMlDTduXQCj3uG2AXwwNJF2K9ttph/m6rnW2zn6ZPtSVi0HKc92C8tDdzws6Z8ibftRrmLcTw==",
|
|
1761
|
-
"dev": true,
|
|
1762
|
-
"license": "MIT",
|
|
1763
|
-
"dependencies": {
|
|
1764
|
-
"@storybook/components": "8.6.14",
|
|
1765
|
-
"@storybook/global": "^5.0.0",
|
|
1766
|
-
"@storybook/manager-api": "8.6.14",
|
|
1767
|
-
"@storybook/preview-api": "8.6.14",
|
|
1768
|
-
"@storybook/theming": "8.6.14",
|
|
1769
|
-
"ts-dedent": "^2.0.0"
|
|
1770
|
-
},
|
|
1771
|
-
"engines": {
|
|
1772
|
-
"node": ">=18.0.0"
|
|
1773
|
-
},
|
|
1774
|
-
"funding": {
|
|
1775
|
-
"type": "opencollective",
|
|
1776
|
-
"url": "https://opencollective.com/storybook"
|
|
1777
|
-
},
|
|
1778
|
-
"peerDependencies": {
|
|
1779
|
-
"storybook": "^8.6.14"
|
|
1780
|
-
}
|
|
1781
|
-
},
|
|
1782
|
-
"node_modules/@storybook/html-webpack5/node_modules/@storybook/html/node_modules/@storybook/components": {
|
|
1783
|
-
"version": "8.6.14",
|
|
1784
|
-
"resolved": "https://registry.npmjs.org/@storybook/components/-/components-8.6.14.tgz",
|
|
1785
|
-
"integrity": "sha512-HNR2mC5I4Z5ek8kTrVZlIY/B8gJGs5b3XdZPBPBopTIN6U/YHXiDyOjY3JlaS4fSG1fVhp/Qp1TpMn1w/9m1pw==",
|
|
1786
|
-
"dev": true,
|
|
1787
|
-
"license": "MIT",
|
|
1788
|
-
"funding": {
|
|
1789
|
-
"type": "opencollective",
|
|
1790
|
-
"url": "https://opencollective.com/storybook"
|
|
1791
|
-
},
|
|
1792
|
-
"peerDependencies": {
|
|
1793
|
-
"storybook": "^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0"
|
|
1794
|
-
}
|
|
1795
|
-
},
|
|
1796
|
-
"node_modules/@storybook/html-webpack5/node_modules/@storybook/html/node_modules/@storybook/manager-api": {
|
|
1797
|
-
"version": "8.6.14",
|
|
1798
|
-
"resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-8.6.14.tgz",
|
|
1799
|
-
"integrity": "sha512-ez0Zihuy17udLbfHZQXkGqwtep0mSGgHcNzGN7iZrMP1m+VmNo+7aGCJJdvXi7+iU3yq8weXSQFWg5DqWgLS7g==",
|
|
1800
|
-
"dev": true,
|
|
1801
|
-
"license": "MIT",
|
|
1802
|
-
"funding": {
|
|
1803
|
-
"type": "opencollective",
|
|
1804
|
-
"url": "https://opencollective.com/storybook"
|
|
1805
|
-
},
|
|
1806
|
-
"peerDependencies": {
|
|
1807
|
-
"storybook": "^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0"
|
|
1808
|
-
}
|
|
1809
|
-
},
|
|
1810
|
-
"node_modules/@storybook/html-webpack5/node_modules/@storybook/html/node_modules/@storybook/preview-api": {
|
|
1811
|
-
"version": "8.6.14",
|
|
1812
|
-
"resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-8.6.14.tgz",
|
|
1813
|
-
"integrity": "sha512-2GhcCd4dNMrnD7eooEfvbfL4I83qAqEyO0CO7JQAmIO6Rxb9BsOLLI/GD5HkvQB73ArTJ+PT50rfaO820IExOQ==",
|
|
1814
|
-
"dev": true,
|
|
1815
|
-
"license": "MIT",
|
|
1816
|
-
"funding": {
|
|
1817
|
-
"type": "opencollective",
|
|
1818
|
-
"url": "https://opencollective.com/storybook"
|
|
1819
|
-
},
|
|
1820
|
-
"peerDependencies": {
|
|
1821
|
-
"storybook": "^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0"
|
|
1822
|
-
}
|
|
1823
|
-
},
|
|
1824
|
-
"node_modules/@storybook/html-webpack5/node_modules/@storybook/html/node_modules/@storybook/theming": {
|
|
1825
|
-
"version": "8.6.14",
|
|
1826
|
-
"resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-8.6.14.tgz",
|
|
1827
|
-
"integrity": "sha512-r4y+LsiB37V5hzpQo+BM10PaCsp7YlZ0YcZzQP1OCkPlYXmUAFy2VvDKaFRpD8IeNPKug2u4iFm/laDEbs03dg==",
|
|
1828
|
-
"dev": true,
|
|
1829
|
-
"license": "MIT",
|
|
1830
|
-
"funding": {
|
|
1831
|
-
"type": "opencollective",
|
|
1832
|
-
"url": "https://opencollective.com/storybook"
|
|
1833
|
-
},
|
|
1834
|
-
"peerDependencies": {
|
|
1835
|
-
"storybook": "^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0"
|
|
1836
|
-
}
|
|
1837
|
-
},
|
|
1838
|
-
"node_modules/@storybook/html-webpack5/node_modules/@storybook/preset-html-webpack": {
|
|
1839
|
-
"version": "8.6.14",
|
|
1840
|
-
"resolved": "https://registry.npmjs.org/@storybook/preset-html-webpack/-/preset-html-webpack-8.6.14.tgz",
|
|
1841
|
-
"integrity": "sha512-zKg2zOtiUh+obNTmSWBmYZtAl1xyNdLoCVZZhhrxbBpO72AOqMLMnPgIMx+HpOpfSjgB1N+OaDEXIFyjzoritw==",
|
|
1842
|
-
"dev": true,
|
|
1843
|
-
"license": "MIT",
|
|
1844
|
-
"dependencies": {
|
|
1845
|
-
"@storybook/core-webpack": "8.6.14",
|
|
1846
|
-
"html-loader": "^3.1.0",
|
|
1847
|
-
"webpack": "5"
|
|
1848
|
-
},
|
|
1849
|
-
"engines": {
|
|
1850
|
-
"node": ">=18.0.0"
|
|
1851
|
-
},
|
|
1852
|
-
"funding": {
|
|
1853
|
-
"type": "opencollective",
|
|
1854
|
-
"url": "https://opencollective.com/storybook"
|
|
1855
|
-
},
|
|
1856
|
-
"peerDependencies": {
|
|
1857
|
-
"storybook": "^8.6.14"
|
|
1858
|
-
}
|
|
1859
|
-
},
|
|
1860
|
-
"node_modules/@storybook/html-webpack5/node_modules/@storybook/preset-html-webpack/node_modules/@storybook/core-webpack": {
|
|
1861
|
-
"version": "8.6.14",
|
|
1862
|
-
"resolved": "https://registry.npmjs.org/@storybook/core-webpack/-/core-webpack-8.6.14.tgz",
|
|
1863
|
-
"integrity": "sha512-iG7r8osNKabSGBbuJuSeMWKbU+ilt5PvzTYkClcYaagla/DliXkXvfywA6jOugVk/Cpx+c6tVKlPfjLcaQHwmw==",
|
|
1864
|
-
"dev": true,
|
|
1865
|
-
"license": "MIT",
|
|
1866
|
-
"dependencies": {
|
|
1867
|
-
"ts-dedent": "^2.0.0"
|
|
1868
|
-
},
|
|
1869
|
-
"funding": {
|
|
1870
|
-
"type": "opencollective",
|
|
1871
|
-
"url": "https://opencollective.com/storybook"
|
|
1872
|
-
},
|
|
1873
|
-
"peerDependencies": {
|
|
1874
|
-
"storybook": "^8.6.14"
|
|
1875
|
-
}
|
|
1876
|
-
},
|
|
1877
|
-
"node_modules/@storybook/html-webpack5/node_modules/css-loader": {
|
|
1878
|
-
"version": "6.11.0",
|
|
1879
|
-
"resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz",
|
|
1880
|
-
"integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==",
|
|
1881
|
-
"dev": true,
|
|
1882
|
-
"license": "MIT",
|
|
1883
|
-
"dependencies": {
|
|
1884
|
-
"icss-utils": "^5.1.0",
|
|
1885
|
-
"postcss": "^8.4.33",
|
|
1886
|
-
"postcss-modules-extract-imports": "^3.1.0",
|
|
1887
|
-
"postcss-modules-local-by-default": "^4.0.5",
|
|
1888
|
-
"postcss-modules-scope": "^3.2.0",
|
|
1889
|
-
"postcss-modules-values": "^4.0.0",
|
|
1890
|
-
"postcss-value-parser": "^4.2.0",
|
|
1891
|
-
"semver": "^7.5.4"
|
|
1892
|
-
},
|
|
1893
|
-
"engines": {
|
|
1894
|
-
"node": ">= 12.13.0"
|
|
1895
|
-
},
|
|
1896
|
-
"funding": {
|
|
1897
|
-
"type": "opencollective",
|
|
1898
|
-
"url": "https://opencollective.com/webpack"
|
|
1899
|
-
},
|
|
1900
|
-
"peerDependencies": {
|
|
1901
|
-
"@rspack/core": "0.x || 1.x",
|
|
1902
|
-
"webpack": "^5.0.0"
|
|
1903
|
-
},
|
|
1904
|
-
"peerDependenciesMeta": {
|
|
1905
|
-
"@rspack/core": {
|
|
1906
|
-
"optional": true
|
|
1907
|
-
},
|
|
1908
|
-
"webpack": {
|
|
1909
|
-
"optional": true
|
|
1910
|
-
}
|
|
1911
|
-
}
|
|
1257
|
+
"dev": true,
|
|
1258
|
+
"license": "MIT"
|
|
1912
1259
|
},
|
|
1913
|
-
"node_modules/@
|
|
1914
|
-
"version": "
|
|
1915
|
-
"resolved": "https://registry.npmjs.org/
|
|
1916
|
-
"integrity": "sha512-
|
|
1260
|
+
"node_modules/@nodelib/fs.scandir": {
|
|
1261
|
+
"version": "2.1.5",
|
|
1262
|
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
|
|
1263
|
+
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
|
|
1917
1264
|
"dev": true,
|
|
1918
|
-
"license": "
|
|
1265
|
+
"license": "MIT",
|
|
1919
1266
|
"dependencies": {
|
|
1920
|
-
"fs
|
|
1267
|
+
"@nodelib/fs.stat": "2.0.5",
|
|
1268
|
+
"run-parallel": "^1.1.9"
|
|
1921
1269
|
},
|
|
1922
1270
|
"engines": {
|
|
1923
|
-
"node": ">=
|
|
1271
|
+
"node": ">= 8"
|
|
1924
1272
|
}
|
|
1925
1273
|
},
|
|
1926
|
-
"node_modules/@
|
|
1927
|
-
"version": "
|
|
1928
|
-
"resolved": "https://registry.npmjs.org/
|
|
1929
|
-
"integrity": "sha512-
|
|
1274
|
+
"node_modules/@nodelib/fs.stat": {
|
|
1275
|
+
"version": "2.0.5",
|
|
1276
|
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
|
|
1277
|
+
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
|
|
1930
1278
|
"dev": true,
|
|
1931
1279
|
"license": "MIT",
|
|
1932
1280
|
"engines": {
|
|
1933
|
-
"node": ">=
|
|
1934
|
-
},
|
|
1935
|
-
"funding": {
|
|
1936
|
-
"type": "opencollective",
|
|
1937
|
-
"url": "https://opencollective.com/webpack"
|
|
1938
|
-
},
|
|
1939
|
-
"peerDependencies": {
|
|
1940
|
-
"webpack": "^5.0.0"
|
|
1281
|
+
"node": ">= 8"
|
|
1941
1282
|
}
|
|
1942
1283
|
},
|
|
1943
|
-
"node_modules/@
|
|
1944
|
-
"version": "
|
|
1945
|
-
"resolved": "https://registry.npmjs.org/
|
|
1946
|
-
"integrity": "sha512-
|
|
1284
|
+
"node_modules/@nodelib/fs.walk": {
|
|
1285
|
+
"version": "1.2.8",
|
|
1286
|
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
|
|
1287
|
+
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
|
|
1947
1288
|
"dev": true,
|
|
1948
1289
|
"license": "MIT",
|
|
1949
1290
|
"dependencies": {
|
|
1950
|
-
"
|
|
1951
|
-
"
|
|
1952
|
-
"mime-types": "^2.1.31",
|
|
1953
|
-
"range-parser": "^1.2.1",
|
|
1954
|
-
"schema-utils": "^4.0.0"
|
|
1291
|
+
"@nodelib/fs.scandir": "2.1.5",
|
|
1292
|
+
"fastq": "^1.6.0"
|
|
1955
1293
|
},
|
|
1956
1294
|
"engines": {
|
|
1957
|
-
"node": ">=
|
|
1295
|
+
"node": ">= 8"
|
|
1296
|
+
}
|
|
1297
|
+
},
|
|
1298
|
+
"node_modules/@polka/url": {
|
|
1299
|
+
"version": "1.0.0-next.29",
|
|
1300
|
+
"resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz",
|
|
1301
|
+
"integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==",
|
|
1302
|
+
"dev": true,
|
|
1303
|
+
"license": "MIT"
|
|
1304
|
+
},
|
|
1305
|
+
"node_modules/@storybook/addon-links": {
|
|
1306
|
+
"version": "9.0.12",
|
|
1307
|
+
"resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-9.0.12.tgz",
|
|
1308
|
+
"integrity": "sha512-Ix7WXnCMkEWrgBrGCoZAFH276Xj/4g8e5Kao9BSZneUBjJJC2LuCaTftGeiM4kQ7sKBPOc/L6zIyusWckBvXIQ==",
|
|
1309
|
+
"dev": true,
|
|
1310
|
+
"license": "MIT",
|
|
1311
|
+
"dependencies": {
|
|
1312
|
+
"@storybook/global": "^5.0.0"
|
|
1958
1313
|
},
|
|
1959
1314
|
"funding": {
|
|
1960
1315
|
"type": "opencollective",
|
|
1961
|
-
"url": "https://opencollective.com/
|
|
1316
|
+
"url": "https://opencollective.com/storybook"
|
|
1962
1317
|
},
|
|
1963
1318
|
"peerDependencies": {
|
|
1964
|
-
"
|
|
1319
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta",
|
|
1320
|
+
"storybook": "^9.0.12"
|
|
1965
1321
|
},
|
|
1966
1322
|
"peerDependenciesMeta": {
|
|
1967
|
-
"
|
|
1323
|
+
"react": {
|
|
1968
1324
|
"optional": true
|
|
1969
1325
|
}
|
|
1970
1326
|
}
|
|
1971
1327
|
},
|
|
1972
|
-
"node_modules/@storybook/
|
|
1973
|
-
"version": "
|
|
1974
|
-
"resolved": "https://registry.npmjs.org/@storybook/
|
|
1975
|
-
"integrity": "sha512-
|
|
1328
|
+
"node_modules/@storybook/addon-webpack5-compiler-swc": {
|
|
1329
|
+
"version": "3.0.0",
|
|
1330
|
+
"resolved": "https://registry.npmjs.org/@storybook/addon-webpack5-compiler-swc/-/addon-webpack5-compiler-swc-3.0.0.tgz",
|
|
1331
|
+
"integrity": "sha512-qkQwQEvHlxwPCHz/xakGfXJusEa1gKMw7enELh6QGopblfN3rMiV084boqiIqBReqWTasSwHOqvuElAu0NQ+8w==",
|
|
1976
1332
|
"dev": true,
|
|
1977
1333
|
"license": "MIT",
|
|
1978
|
-
"
|
|
1979
|
-
"
|
|
1334
|
+
"dependencies": {
|
|
1335
|
+
"@swc/core": "^1.10.8",
|
|
1336
|
+
"swc-loader": "^0.2.6"
|
|
1980
1337
|
},
|
|
1981
|
-
"
|
|
1982
|
-
"
|
|
1983
|
-
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta"
|
|
1338
|
+
"engines": {
|
|
1339
|
+
"node": ">=18"
|
|
1984
1340
|
}
|
|
1985
1341
|
},
|
|
1342
|
+
"node_modules/@storybook/global": {
|
|
1343
|
+
"version": "5.0.0",
|
|
1344
|
+
"resolved": "https://registry.npmjs.org/@storybook/global/-/global-5.0.0.tgz",
|
|
1345
|
+
"integrity": "sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==",
|
|
1346
|
+
"dev": true,
|
|
1347
|
+
"license": "MIT"
|
|
1348
|
+
},
|
|
1986
1349
|
"node_modules/@swc/core": {
|
|
1987
1350
|
"version": "1.12.5",
|
|
1988
1351
|
"resolved": "https://registry.npmjs.org/@swc/core/-/core-1.12.5.tgz",
|
|
@@ -2422,13 +1785,6 @@
|
|
|
2422
1785
|
"dev": true,
|
|
2423
1786
|
"license": "MIT"
|
|
2424
1787
|
},
|
|
2425
|
-
"node_modules/@types/mdx": {
|
|
2426
|
-
"version": "2.0.13",
|
|
2427
|
-
"resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.13.tgz",
|
|
2428
|
-
"integrity": "sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==",
|
|
2429
|
-
"dev": true,
|
|
2430
|
-
"license": "MIT"
|
|
2431
|
-
},
|
|
2432
1788
|
"node_modules/@types/mime": {
|
|
2433
1789
|
"version": "1.3.5",
|
|
2434
1790
|
"resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz",
|
|
@@ -2456,13 +1812,6 @@
|
|
|
2456
1812
|
"@types/node": "*"
|
|
2457
1813
|
}
|
|
2458
1814
|
},
|
|
2459
|
-
"node_modules/@types/parse-json": {
|
|
2460
|
-
"version": "4.0.2",
|
|
2461
|
-
"resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz",
|
|
2462
|
-
"integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==",
|
|
2463
|
-
"dev": true,
|
|
2464
|
-
"license": "MIT"
|
|
2465
|
-
},
|
|
2466
1815
|
"node_modules/@types/qs": {
|
|
2467
1816
|
"version": "6.14.0",
|
|
2468
1817
|
"resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.14.0.tgz",
|
|
@@ -2477,17 +1826,6 @@
|
|
|
2477
1826
|
"dev": true,
|
|
2478
1827
|
"license": "MIT"
|
|
2479
1828
|
},
|
|
2480
|
-
"node_modules/@types/react": {
|
|
2481
|
-
"version": "19.1.8",
|
|
2482
|
-
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.8.tgz",
|
|
2483
|
-
"integrity": "sha512-AwAfQ2Wa5bCx9WP8nZL2uMZWod7J7/JSplxbTmBQ5ms6QpqNYm672H0Vu9ZVKVngQ+ii4R/byguVEUZQyeg44g==",
|
|
2484
|
-
"dev": true,
|
|
2485
|
-
"license": "MIT",
|
|
2486
|
-
"peer": true,
|
|
2487
|
-
"dependencies": {
|
|
2488
|
-
"csstype": "^3.0.2"
|
|
2489
|
-
}
|
|
2490
|
-
},
|
|
2491
1829
|
"node_modules/@types/retry": {
|
|
2492
1830
|
"version": "0.12.2",
|
|
2493
1831
|
"resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz",
|
|
@@ -2495,13 +1833,6 @@
|
|
|
2495
1833
|
"dev": true,
|
|
2496
1834
|
"license": "MIT"
|
|
2497
1835
|
},
|
|
2498
|
-
"node_modules/@types/semver": {
|
|
2499
|
-
"version": "7.7.0",
|
|
2500
|
-
"resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.7.0.tgz",
|
|
2501
|
-
"integrity": "sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==",
|
|
2502
|
-
"dev": true,
|
|
2503
|
-
"license": "MIT"
|
|
2504
|
-
},
|
|
2505
1836
|
"node_modules/@types/send": {
|
|
2506
1837
|
"version": "0.17.5",
|
|
2507
1838
|
"resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.5.tgz",
|
|
@@ -2545,13 +1876,6 @@
|
|
|
2545
1876
|
"@types/node": "*"
|
|
2546
1877
|
}
|
|
2547
1878
|
},
|
|
2548
|
-
"node_modules/@types/uuid": {
|
|
2549
|
-
"version": "9.0.8",
|
|
2550
|
-
"resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.8.tgz",
|
|
2551
|
-
"integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==",
|
|
2552
|
-
"dev": true,
|
|
2553
|
-
"license": "MIT"
|
|
2554
|
-
},
|
|
2555
1879
|
"node_modules/@types/ws": {
|
|
2556
1880
|
"version": "8.18.1",
|
|
2557
1881
|
"resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.18.1.tgz",
|
|
@@ -3217,16 +2541,6 @@
|
|
|
3217
2541
|
"dev": true,
|
|
3218
2542
|
"license": "MIT"
|
|
3219
2543
|
},
|
|
3220
|
-
"node_modules/ajv-keywords": {
|
|
3221
|
-
"version": "3.5.2",
|
|
3222
|
-
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
|
|
3223
|
-
"integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
|
|
3224
|
-
"dev": true,
|
|
3225
|
-
"license": "MIT",
|
|
3226
|
-
"peerDependencies": {
|
|
3227
|
-
"ajv": "^6.9.1"
|
|
3228
|
-
}
|
|
3229
|
-
},
|
|
3230
2544
|
"node_modules/ansi-html-community": {
|
|
3231
2545
|
"version": "0.0.8",
|
|
3232
2546
|
"resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz",
|
|
@@ -3476,22 +2790,6 @@
|
|
|
3476
2790
|
"postcss": "^8.1.0"
|
|
3477
2791
|
}
|
|
3478
2792
|
},
|
|
3479
|
-
"node_modules/available-typed-arrays": {
|
|
3480
|
-
"version": "1.0.7",
|
|
3481
|
-
"resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz",
|
|
3482
|
-
"integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==",
|
|
3483
|
-
"dev": true,
|
|
3484
|
-
"license": "MIT",
|
|
3485
|
-
"dependencies": {
|
|
3486
|
-
"possible-typed-array-names": "^1.0.0"
|
|
3487
|
-
},
|
|
3488
|
-
"engines": {
|
|
3489
|
-
"node": ">= 0.4"
|
|
3490
|
-
},
|
|
3491
|
-
"funding": {
|
|
3492
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
3493
|
-
}
|
|
3494
|
-
},
|
|
3495
2793
|
"node_modules/balanced-match": {
|
|
3496
2794
|
"version": "1.0.2",
|
|
3497
2795
|
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
|
@@ -3704,12 +3002,6 @@
|
|
|
3704
3002
|
"node": ">=8"
|
|
3705
3003
|
}
|
|
3706
3004
|
},
|
|
3707
|
-
"node_modules/browser-assert": {
|
|
3708
|
-
"version": "1.2.1",
|
|
3709
|
-
"resolved": "https://registry.npmjs.org/browser-assert/-/browser-assert-1.2.1.tgz",
|
|
3710
|
-
"integrity": "sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==",
|
|
3711
|
-
"dev": true
|
|
3712
|
-
},
|
|
3713
3005
|
"node_modules/browserslist": {
|
|
3714
3006
|
"version": "4.25.0",
|
|
3715
3007
|
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.0.tgz",
|
|
@@ -3822,25 +3114,6 @@
|
|
|
3822
3114
|
"@keyv/serialize": "^1.0.3"
|
|
3823
3115
|
}
|
|
3824
3116
|
},
|
|
3825
|
-
"node_modules/call-bind": {
|
|
3826
|
-
"version": "1.0.8",
|
|
3827
|
-
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz",
|
|
3828
|
-
"integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
|
|
3829
|
-
"dev": true,
|
|
3830
|
-
"license": "MIT",
|
|
3831
|
-
"dependencies": {
|
|
3832
|
-
"call-bind-apply-helpers": "^1.0.0",
|
|
3833
|
-
"es-define-property": "^1.0.0",
|
|
3834
|
-
"get-intrinsic": "^1.2.4",
|
|
3835
|
-
"set-function-length": "^1.2.2"
|
|
3836
|
-
},
|
|
3837
|
-
"engines": {
|
|
3838
|
-
"node": ">= 0.4"
|
|
3839
|
-
},
|
|
3840
|
-
"funding": {
|
|
3841
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
3842
|
-
}
|
|
3843
|
-
},
|
|
3844
3117
|
"node_modules/call-bind-apply-helpers": {
|
|
3845
3118
|
"version": "1.0.2",
|
|
3846
3119
|
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
|
|
@@ -3914,16 +3187,6 @@
|
|
|
3914
3187
|
],
|
|
3915
3188
|
"license": "CC-BY-4.0"
|
|
3916
3189
|
},
|
|
3917
|
-
"node_modules/case-sensitive-paths-webpack-plugin": {
|
|
3918
|
-
"version": "2.4.0",
|
|
3919
|
-
"resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz",
|
|
3920
|
-
"integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==",
|
|
3921
|
-
"dev": true,
|
|
3922
|
-
"license": "MIT",
|
|
3923
|
-
"engines": {
|
|
3924
|
-
"node": ">=4"
|
|
3925
|
-
}
|
|
3926
|
-
},
|
|
3927
3190
|
"node_modules/chai": {
|
|
3928
3191
|
"version": "5.2.0",
|
|
3929
3192
|
"resolved": "https://registry.npmjs.org/chai/-/chai-5.2.0.tgz",
|
|
@@ -4016,13 +3279,6 @@
|
|
|
4016
3279
|
"node": ">=6.0"
|
|
4017
3280
|
}
|
|
4018
3281
|
},
|
|
4019
|
-
"node_modules/cjs-module-lexer": {
|
|
4020
|
-
"version": "1.4.3",
|
|
4021
|
-
"resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz",
|
|
4022
|
-
"integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==",
|
|
4023
|
-
"dev": true,
|
|
4024
|
-
"license": "MIT"
|
|
4025
|
-
},
|
|
4026
3282
|
"node_modules/clean-css": {
|
|
4027
3283
|
"version": "5.3.3",
|
|
4028
3284
|
"resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz",
|
|
@@ -4174,13 +3430,6 @@
|
|
|
4174
3430
|
"node": ">=0.8"
|
|
4175
3431
|
}
|
|
4176
3432
|
},
|
|
4177
|
-
"node_modules/constants-browserify": {
|
|
4178
|
-
"version": "1.0.0",
|
|
4179
|
-
"resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz",
|
|
4180
|
-
"integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==",
|
|
4181
|
-
"dev": true,
|
|
4182
|
-
"license": "MIT"
|
|
4183
|
-
},
|
|
4184
3433
|
"node_modules/content-disposition": {
|
|
4185
3434
|
"version": "0.5.4",
|
|
4186
3435
|
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
|
|
@@ -4380,14 +3629,6 @@
|
|
|
4380
3629
|
"node": ">=4"
|
|
4381
3630
|
}
|
|
4382
3631
|
},
|
|
4383
|
-
"node_modules/csstype": {
|
|
4384
|
-
"version": "3.1.3",
|
|
4385
|
-
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
|
|
4386
|
-
"integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
|
|
4387
|
-
"dev": true,
|
|
4388
|
-
"license": "MIT",
|
|
4389
|
-
"peer": true
|
|
4390
|
-
},
|
|
4391
3632
|
"node_modules/debounce": {
|
|
4392
3633
|
"version": "1.2.1",
|
|
4393
3634
|
"resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz",
|
|
@@ -4430,16 +3671,6 @@
|
|
|
4430
3671
|
"dev": true,
|
|
4431
3672
|
"license": "MIT"
|
|
4432
3673
|
},
|
|
4433
|
-
"node_modules/deepmerge": {
|
|
4434
|
-
"version": "4.3.1",
|
|
4435
|
-
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
|
|
4436
|
-
"integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
|
|
4437
|
-
"dev": true,
|
|
4438
|
-
"license": "MIT",
|
|
4439
|
-
"engines": {
|
|
4440
|
-
"node": ">=0.10.0"
|
|
4441
|
-
}
|
|
4442
|
-
},
|
|
4443
3674
|
"node_modules/default-browser": {
|
|
4444
3675
|
"version": "5.2.1",
|
|
4445
3676
|
"resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz",
|
|
@@ -4470,24 +3701,6 @@
|
|
|
4470
3701
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
4471
3702
|
}
|
|
4472
3703
|
},
|
|
4473
|
-
"node_modules/define-data-property": {
|
|
4474
|
-
"version": "1.1.4",
|
|
4475
|
-
"resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
|
|
4476
|
-
"integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
|
|
4477
|
-
"dev": true,
|
|
4478
|
-
"license": "MIT",
|
|
4479
|
-
"dependencies": {
|
|
4480
|
-
"es-define-property": "^1.0.0",
|
|
4481
|
-
"es-errors": "^1.3.0",
|
|
4482
|
-
"gopd": "^1.0.1"
|
|
4483
|
-
},
|
|
4484
|
-
"engines": {
|
|
4485
|
-
"node": ">= 0.4"
|
|
4486
|
-
},
|
|
4487
|
-
"funding": {
|
|
4488
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
4489
|
-
}
|
|
4490
|
-
},
|
|
4491
3704
|
"node_modules/define-lazy-prop": {
|
|
4492
3705
|
"version": "3.0.0",
|
|
4493
3706
|
"resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz",
|
|
@@ -5438,100 +4651,6 @@
|
|
|
5438
4651
|
}
|
|
5439
4652
|
}
|
|
5440
4653
|
},
|
|
5441
|
-
"node_modules/for-each": {
|
|
5442
|
-
"version": "0.3.5",
|
|
5443
|
-
"resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz",
|
|
5444
|
-
"integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==",
|
|
5445
|
-
"dev": true,
|
|
5446
|
-
"license": "MIT",
|
|
5447
|
-
"dependencies": {
|
|
5448
|
-
"is-callable": "^1.2.7"
|
|
5449
|
-
},
|
|
5450
|
-
"engines": {
|
|
5451
|
-
"node": ">= 0.4"
|
|
5452
|
-
},
|
|
5453
|
-
"funding": {
|
|
5454
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
5455
|
-
}
|
|
5456
|
-
},
|
|
5457
|
-
"node_modules/fork-ts-checker-webpack-plugin": {
|
|
5458
|
-
"version": "8.0.0",
|
|
5459
|
-
"resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-8.0.0.tgz",
|
|
5460
|
-
"integrity": "sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==",
|
|
5461
|
-
"dev": true,
|
|
5462
|
-
"license": "MIT",
|
|
5463
|
-
"dependencies": {
|
|
5464
|
-
"@babel/code-frame": "^7.16.7",
|
|
5465
|
-
"chalk": "^4.1.2",
|
|
5466
|
-
"chokidar": "^3.5.3",
|
|
5467
|
-
"cosmiconfig": "^7.0.1",
|
|
5468
|
-
"deepmerge": "^4.2.2",
|
|
5469
|
-
"fs-extra": "^10.0.0",
|
|
5470
|
-
"memfs": "^3.4.1",
|
|
5471
|
-
"minimatch": "^3.0.4",
|
|
5472
|
-
"node-abort-controller": "^3.0.1",
|
|
5473
|
-
"schema-utils": "^3.1.1",
|
|
5474
|
-
"semver": "^7.3.5",
|
|
5475
|
-
"tapable": "^2.2.1"
|
|
5476
|
-
},
|
|
5477
|
-
"engines": {
|
|
5478
|
-
"node": ">=12.13.0",
|
|
5479
|
-
"yarn": ">=1.0.0"
|
|
5480
|
-
},
|
|
5481
|
-
"peerDependencies": {
|
|
5482
|
-
"typescript": ">3.6.0",
|
|
5483
|
-
"webpack": "^5.11.0"
|
|
5484
|
-
}
|
|
5485
|
-
},
|
|
5486
|
-
"node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": {
|
|
5487
|
-
"version": "7.1.0",
|
|
5488
|
-
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
|
|
5489
|
-
"integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
|
|
5490
|
-
"dev": true,
|
|
5491
|
-
"license": "MIT",
|
|
5492
|
-
"dependencies": {
|
|
5493
|
-
"@types/parse-json": "^4.0.0",
|
|
5494
|
-
"import-fresh": "^3.2.1",
|
|
5495
|
-
"parse-json": "^5.0.0",
|
|
5496
|
-
"path-type": "^4.0.0",
|
|
5497
|
-
"yaml": "^1.10.0"
|
|
5498
|
-
},
|
|
5499
|
-
"engines": {
|
|
5500
|
-
"node": ">=10"
|
|
5501
|
-
}
|
|
5502
|
-
},
|
|
5503
|
-
"node_modules/fork-ts-checker-webpack-plugin/node_modules/memfs": {
|
|
5504
|
-
"version": "3.5.3",
|
|
5505
|
-
"resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz",
|
|
5506
|
-
"integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==",
|
|
5507
|
-
"dev": true,
|
|
5508
|
-
"license": "Unlicense",
|
|
5509
|
-
"dependencies": {
|
|
5510
|
-
"fs-monkey": "^1.0.4"
|
|
5511
|
-
},
|
|
5512
|
-
"engines": {
|
|
5513
|
-
"node": ">= 4.0.0"
|
|
5514
|
-
}
|
|
5515
|
-
},
|
|
5516
|
-
"node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": {
|
|
5517
|
-
"version": "3.3.0",
|
|
5518
|
-
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
|
|
5519
|
-
"integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
|
|
5520
|
-
"dev": true,
|
|
5521
|
-
"license": "MIT",
|
|
5522
|
-
"dependencies": {
|
|
5523
|
-
"@types/json-schema": "^7.0.8",
|
|
5524
|
-
"ajv": "^6.12.5",
|
|
5525
|
-
"ajv-keywords": "^3.5.2"
|
|
5526
|
-
},
|
|
5527
|
-
"engines": {
|
|
5528
|
-
"node": ">= 10.13.0"
|
|
5529
|
-
},
|
|
5530
|
-
"funding": {
|
|
5531
|
-
"type": "opencollective",
|
|
5532
|
-
"url": "https://opencollective.com/webpack"
|
|
5533
|
-
}
|
|
5534
|
-
},
|
|
5535
4654
|
"node_modules/forwarded": {
|
|
5536
4655
|
"version": "0.2.0",
|
|
5537
4656
|
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
|
|
@@ -5566,28 +4685,6 @@
|
|
|
5566
4685
|
"node": ">= 0.6"
|
|
5567
4686
|
}
|
|
5568
4687
|
},
|
|
5569
|
-
"node_modules/fs-extra": {
|
|
5570
|
-
"version": "10.1.0",
|
|
5571
|
-
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
|
|
5572
|
-
"integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
|
|
5573
|
-
"dev": true,
|
|
5574
|
-
"license": "MIT",
|
|
5575
|
-
"dependencies": {
|
|
5576
|
-
"graceful-fs": "^4.2.0",
|
|
5577
|
-
"jsonfile": "^6.0.1",
|
|
5578
|
-
"universalify": "^2.0.0"
|
|
5579
|
-
},
|
|
5580
|
-
"engines": {
|
|
5581
|
-
"node": ">=12"
|
|
5582
|
-
}
|
|
5583
|
-
},
|
|
5584
|
-
"node_modules/fs-monkey": {
|
|
5585
|
-
"version": "1.0.6",
|
|
5586
|
-
"resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.6.tgz",
|
|
5587
|
-
"integrity": "sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==",
|
|
5588
|
-
"dev": true,
|
|
5589
|
-
"license": "Unlicense"
|
|
5590
|
-
},
|
|
5591
4688
|
"node_modules/fsevents": {
|
|
5592
4689
|
"version": "2.3.3",
|
|
5593
4690
|
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
@@ -5810,45 +4907,16 @@
|
|
|
5810
4907
|
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
|
5811
4908
|
"dev": true,
|
|
5812
4909
|
"license": "MIT",
|
|
5813
|
-
"engines": {
|
|
5814
|
-
"node": ">=8"
|
|
5815
|
-
}
|
|
5816
|
-
},
|
|
5817
|
-
"node_modules/has-property-descriptors": {
|
|
5818
|
-
"version": "1.0.2",
|
|
5819
|
-
"resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
|
|
5820
|
-
"integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
|
|
5821
|
-
"dev": true,
|
|
5822
|
-
"license": "MIT",
|
|
5823
|
-
"dependencies": {
|
|
5824
|
-
"es-define-property": "^1.0.0"
|
|
5825
|
-
},
|
|
5826
|
-
"funding": {
|
|
5827
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
5828
|
-
}
|
|
5829
|
-
},
|
|
5830
|
-
"node_modules/has-symbols": {
|
|
5831
|
-
"version": "1.1.0",
|
|
5832
|
-
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
|
5833
|
-
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
|
5834
|
-
"dev": true,
|
|
5835
|
-
"license": "MIT",
|
|
5836
|
-
"engines": {
|
|
5837
|
-
"node": ">= 0.4"
|
|
5838
|
-
},
|
|
5839
|
-
"funding": {
|
|
5840
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
4910
|
+
"engines": {
|
|
4911
|
+
"node": ">=8"
|
|
5841
4912
|
}
|
|
5842
4913
|
},
|
|
5843
|
-
"node_modules/has-
|
|
5844
|
-
"version": "1.0
|
|
5845
|
-
"resolved": "https://registry.npmjs.org/has-
|
|
5846
|
-
"integrity": "sha512-
|
|
4914
|
+
"node_modules/has-symbols": {
|
|
4915
|
+
"version": "1.1.0",
|
|
4916
|
+
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
|
4917
|
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
|
5847
4918
|
"dev": true,
|
|
5848
4919
|
"license": "MIT",
|
|
5849
|
-
"dependencies": {
|
|
5850
|
-
"has-symbols": "^1.0.3"
|
|
5851
|
-
},
|
|
5852
4920
|
"engines": {
|
|
5853
4921
|
"node": ">= 0.4"
|
|
5854
4922
|
},
|
|
@@ -5932,23 +5000,6 @@
|
|
|
5932
5000
|
"safe-buffer": "~5.1.0"
|
|
5933
5001
|
}
|
|
5934
5002
|
},
|
|
5935
|
-
"node_modules/html-entities": {
|
|
5936
|
-
"version": "2.6.0",
|
|
5937
|
-
"resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.6.0.tgz",
|
|
5938
|
-
"integrity": "sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==",
|
|
5939
|
-
"dev": true,
|
|
5940
|
-
"funding": [
|
|
5941
|
-
{
|
|
5942
|
-
"type": "github",
|
|
5943
|
-
"url": "https://github.com/sponsors/mdevils"
|
|
5944
|
-
},
|
|
5945
|
-
{
|
|
5946
|
-
"type": "patreon",
|
|
5947
|
-
"url": "https://patreon.com/mdevils"
|
|
5948
|
-
}
|
|
5949
|
-
],
|
|
5950
|
-
"license": "MIT"
|
|
5951
|
-
},
|
|
5952
5003
|
"node_modules/html-escaper": {
|
|
5953
5004
|
"version": "2.0.2",
|
|
5954
5005
|
"resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
|
|
@@ -5956,34 +5007,6 @@
|
|
|
5956
5007
|
"dev": true,
|
|
5957
5008
|
"license": "MIT"
|
|
5958
5009
|
},
|
|
5959
|
-
"node_modules/html-loader": {
|
|
5960
|
-
"version": "3.1.2",
|
|
5961
|
-
"resolved": "https://registry.npmjs.org/html-loader/-/html-loader-3.1.2.tgz",
|
|
5962
|
-
"integrity": "sha512-9WQlLiAV5N9fCna4MUmBW/ifaUbuFZ2r7IZmtXzhyfyi4zgPEjXsmsYCKs+yT873MzRj+f1WMjuAiPNA7C6Tcw==",
|
|
5963
|
-
"dev": true,
|
|
5964
|
-
"license": "MIT",
|
|
5965
|
-
"dependencies": {
|
|
5966
|
-
"html-minifier-terser": "^6.0.2",
|
|
5967
|
-
"parse5": "^6.0.1"
|
|
5968
|
-
},
|
|
5969
|
-
"engines": {
|
|
5970
|
-
"node": ">= 12.13.0"
|
|
5971
|
-
},
|
|
5972
|
-
"funding": {
|
|
5973
|
-
"type": "opencollective",
|
|
5974
|
-
"url": "https://opencollective.com/webpack"
|
|
5975
|
-
},
|
|
5976
|
-
"peerDependencies": {
|
|
5977
|
-
"webpack": "^5.0.0"
|
|
5978
|
-
}
|
|
5979
|
-
},
|
|
5980
|
-
"node_modules/html-loader/node_modules/parse5": {
|
|
5981
|
-
"version": "6.0.1",
|
|
5982
|
-
"resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
|
|
5983
|
-
"integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
|
|
5984
|
-
"dev": true,
|
|
5985
|
-
"license": "MIT"
|
|
5986
|
-
},
|
|
5987
5010
|
"node_modules/html-minifier-terser": {
|
|
5988
5011
|
"version": "6.1.0",
|
|
5989
5012
|
"resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz",
|
|
@@ -6311,23 +5334,6 @@
|
|
|
6311
5334
|
"node": ">= 10"
|
|
6312
5335
|
}
|
|
6313
5336
|
},
|
|
6314
|
-
"node_modules/is-arguments": {
|
|
6315
|
-
"version": "1.2.0",
|
|
6316
|
-
"resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz",
|
|
6317
|
-
"integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==",
|
|
6318
|
-
"dev": true,
|
|
6319
|
-
"license": "MIT",
|
|
6320
|
-
"dependencies": {
|
|
6321
|
-
"call-bound": "^1.0.2",
|
|
6322
|
-
"has-tostringtag": "^1.0.2"
|
|
6323
|
-
},
|
|
6324
|
-
"engines": {
|
|
6325
|
-
"node": ">= 0.4"
|
|
6326
|
-
},
|
|
6327
|
-
"funding": {
|
|
6328
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
6329
|
-
}
|
|
6330
|
-
},
|
|
6331
5337
|
"node_modules/is-arrayish": {
|
|
6332
5338
|
"version": "0.2.1",
|
|
6333
5339
|
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
|
|
@@ -6348,19 +5354,6 @@
|
|
|
6348
5354
|
"node": ">=8"
|
|
6349
5355
|
}
|
|
6350
5356
|
},
|
|
6351
|
-
"node_modules/is-callable": {
|
|
6352
|
-
"version": "1.2.7",
|
|
6353
|
-
"resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
|
|
6354
|
-
"integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
|
|
6355
|
-
"dev": true,
|
|
6356
|
-
"license": "MIT",
|
|
6357
|
-
"engines": {
|
|
6358
|
-
"node": ">= 0.4"
|
|
6359
|
-
},
|
|
6360
|
-
"funding": {
|
|
6361
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
6362
|
-
}
|
|
6363
|
-
},
|
|
6364
5357
|
"node_modules/is-core-module": {
|
|
6365
5358
|
"version": "2.16.1",
|
|
6366
5359
|
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
|
|
@@ -6413,25 +5406,6 @@
|
|
|
6413
5406
|
"node": ">=8"
|
|
6414
5407
|
}
|
|
6415
5408
|
},
|
|
6416
|
-
"node_modules/is-generator-function": {
|
|
6417
|
-
"version": "1.1.0",
|
|
6418
|
-
"resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz",
|
|
6419
|
-
"integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==",
|
|
6420
|
-
"dev": true,
|
|
6421
|
-
"license": "MIT",
|
|
6422
|
-
"dependencies": {
|
|
6423
|
-
"call-bound": "^1.0.3",
|
|
6424
|
-
"get-proto": "^1.0.0",
|
|
6425
|
-
"has-tostringtag": "^1.0.2",
|
|
6426
|
-
"safe-regex-test": "^1.1.0"
|
|
6427
|
-
},
|
|
6428
|
-
"engines": {
|
|
6429
|
-
"node": ">= 0.4"
|
|
6430
|
-
},
|
|
6431
|
-
"funding": {
|
|
6432
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
6433
|
-
}
|
|
6434
|
-
},
|
|
6435
5409
|
"node_modules/is-glob": {
|
|
6436
5410
|
"version": "4.0.3",
|
|
6437
5411
|
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
|
@@ -6510,41 +5484,6 @@
|
|
|
6510
5484
|
"node": ">=0.10.0"
|
|
6511
5485
|
}
|
|
6512
5486
|
},
|
|
6513
|
-
"node_modules/is-regex": {
|
|
6514
|
-
"version": "1.2.1",
|
|
6515
|
-
"resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz",
|
|
6516
|
-
"integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==",
|
|
6517
|
-
"dev": true,
|
|
6518
|
-
"license": "MIT",
|
|
6519
|
-
"dependencies": {
|
|
6520
|
-
"call-bound": "^1.0.2",
|
|
6521
|
-
"gopd": "^1.2.0",
|
|
6522
|
-
"has-tostringtag": "^1.0.2",
|
|
6523
|
-
"hasown": "^2.0.2"
|
|
6524
|
-
},
|
|
6525
|
-
"engines": {
|
|
6526
|
-
"node": ">= 0.4"
|
|
6527
|
-
},
|
|
6528
|
-
"funding": {
|
|
6529
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
6530
|
-
}
|
|
6531
|
-
},
|
|
6532
|
-
"node_modules/is-typed-array": {
|
|
6533
|
-
"version": "1.1.15",
|
|
6534
|
-
"resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz",
|
|
6535
|
-
"integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==",
|
|
6536
|
-
"dev": true,
|
|
6537
|
-
"license": "MIT",
|
|
6538
|
-
"dependencies": {
|
|
6539
|
-
"which-typed-array": "^1.1.16"
|
|
6540
|
-
},
|
|
6541
|
-
"engines": {
|
|
6542
|
-
"node": ">= 0.4"
|
|
6543
|
-
},
|
|
6544
|
-
"funding": {
|
|
6545
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
6546
|
-
}
|
|
6547
|
-
},
|
|
6548
5487
|
"node_modules/is-wsl": {
|
|
6549
5488
|
"version": "3.1.0",
|
|
6550
5489
|
"resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz",
|
|
@@ -6687,19 +5626,6 @@
|
|
|
6687
5626
|
"node": ">=6"
|
|
6688
5627
|
}
|
|
6689
5628
|
},
|
|
6690
|
-
"node_modules/jsonfile": {
|
|
6691
|
-
"version": "6.1.0",
|
|
6692
|
-
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
|
|
6693
|
-
"integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
|
|
6694
|
-
"dev": true,
|
|
6695
|
-
"license": "MIT",
|
|
6696
|
-
"dependencies": {
|
|
6697
|
-
"universalify": "^2.0.0"
|
|
6698
|
-
},
|
|
6699
|
-
"optionalDependencies": {
|
|
6700
|
-
"graceful-fs": "^4.1.6"
|
|
6701
|
-
}
|
|
6702
|
-
},
|
|
6703
5629
|
"node_modules/keyv": {
|
|
6704
5630
|
"version": "4.5.4",
|
|
6705
5631
|
"resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
|
|
@@ -6849,23 +5775,6 @@
|
|
|
6849
5775
|
"lz-string": "bin/bin.js"
|
|
6850
5776
|
}
|
|
6851
5777
|
},
|
|
6852
|
-
"node_modules/magic-string": {
|
|
6853
|
-
"version": "0.30.17",
|
|
6854
|
-
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz",
|
|
6855
|
-
"integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==",
|
|
6856
|
-
"dev": true,
|
|
6857
|
-
"license": "MIT",
|
|
6858
|
-
"dependencies": {
|
|
6859
|
-
"@jridgewell/sourcemap-codec": "^1.5.0"
|
|
6860
|
-
}
|
|
6861
|
-
},
|
|
6862
|
-
"node_modules/map-or-similar": {
|
|
6863
|
-
"version": "1.5.0",
|
|
6864
|
-
"resolved": "https://registry.npmjs.org/map-or-similar/-/map-or-similar-1.5.0.tgz",
|
|
6865
|
-
"integrity": "sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==",
|
|
6866
|
-
"dev": true,
|
|
6867
|
-
"license": "MIT"
|
|
6868
|
-
},
|
|
6869
5778
|
"node_modules/math-intrinsics": {
|
|
6870
5779
|
"version": "1.1.0",
|
|
6871
5780
|
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
|
@@ -6924,16 +5833,6 @@
|
|
|
6924
5833
|
"url": "https://github.com/sponsors/streamich"
|
|
6925
5834
|
}
|
|
6926
5835
|
},
|
|
6927
|
-
"node_modules/memoizerific": {
|
|
6928
|
-
"version": "1.11.3",
|
|
6929
|
-
"resolved": "https://registry.npmjs.org/memoizerific/-/memoizerific-1.11.3.tgz",
|
|
6930
|
-
"integrity": "sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==",
|
|
6931
|
-
"dev": true,
|
|
6932
|
-
"license": "MIT",
|
|
6933
|
-
"dependencies": {
|
|
6934
|
-
"map-or-similar": "^1.5.0"
|
|
6935
|
-
}
|
|
6936
|
-
},
|
|
6937
5836
|
"node_modules/meow": {
|
|
6938
5837
|
"version": "13.2.0",
|
|
6939
5838
|
"resolved": "https://registry.npmjs.org/meow/-/meow-13.2.0.tgz",
|
|
@@ -7169,13 +6068,6 @@
|
|
|
7169
6068
|
"tslib": "^2.0.3"
|
|
7170
6069
|
}
|
|
7171
6070
|
},
|
|
7172
|
-
"node_modules/node-abort-controller": {
|
|
7173
|
-
"version": "3.1.1",
|
|
7174
|
-
"resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz",
|
|
7175
|
-
"integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==",
|
|
7176
|
-
"dev": true,
|
|
7177
|
-
"license": "MIT"
|
|
7178
|
-
},
|
|
7179
6071
|
"node_modules/node-forge": {
|
|
7180
6072
|
"version": "1.3.1",
|
|
7181
6073
|
"resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz",
|
|
@@ -7453,13 +6345,6 @@
|
|
|
7453
6345
|
"tslib": "^2.0.3"
|
|
7454
6346
|
}
|
|
7455
6347
|
},
|
|
7456
|
-
"node_modules/path-browserify": {
|
|
7457
|
-
"version": "1.0.1",
|
|
7458
|
-
"resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz",
|
|
7459
|
-
"integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==",
|
|
7460
|
-
"dev": true,
|
|
7461
|
-
"license": "MIT"
|
|
7462
|
-
},
|
|
7463
6348
|
"node_modules/path-exists": {
|
|
7464
6349
|
"version": "4.0.0",
|
|
7465
6350
|
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
|
|
@@ -7603,29 +6488,6 @@
|
|
|
7603
6488
|
"node": ">=8"
|
|
7604
6489
|
}
|
|
7605
6490
|
},
|
|
7606
|
-
"node_modules/polished": {
|
|
7607
|
-
"version": "4.3.1",
|
|
7608
|
-
"resolved": "https://registry.npmjs.org/polished/-/polished-4.3.1.tgz",
|
|
7609
|
-
"integrity": "sha512-OBatVyC/N7SCW/FaDHrSd+vn0o5cS855TOmYi4OkdWUMSJCET/xip//ch8xGUvtr3i44X9LVyWwQlRMTN3pwSA==",
|
|
7610
|
-
"dev": true,
|
|
7611
|
-
"license": "MIT",
|
|
7612
|
-
"dependencies": {
|
|
7613
|
-
"@babel/runtime": "^7.17.8"
|
|
7614
|
-
},
|
|
7615
|
-
"engines": {
|
|
7616
|
-
"node": ">=10"
|
|
7617
|
-
}
|
|
7618
|
-
},
|
|
7619
|
-
"node_modules/possible-typed-array-names": {
|
|
7620
|
-
"version": "1.1.0",
|
|
7621
|
-
"resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz",
|
|
7622
|
-
"integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==",
|
|
7623
|
-
"dev": true,
|
|
7624
|
-
"license": "MIT",
|
|
7625
|
-
"engines": {
|
|
7626
|
-
"node": ">= 0.4"
|
|
7627
|
-
}
|
|
7628
|
-
},
|
|
7629
6491
|
"node_modules/postcss": {
|
|
7630
6492
|
"version": "8.5.6",
|
|
7631
6493
|
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
|
|
@@ -7856,16 +6718,6 @@
|
|
|
7856
6718
|
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
7857
6719
|
}
|
|
7858
6720
|
},
|
|
7859
|
-
"node_modules/process": {
|
|
7860
|
-
"version": "0.11.10",
|
|
7861
|
-
"resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
|
|
7862
|
-
"integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
|
|
7863
|
-
"dev": true,
|
|
7864
|
-
"license": "MIT",
|
|
7865
|
-
"engines": {
|
|
7866
|
-
"node": ">= 0.6.0"
|
|
7867
|
-
}
|
|
7868
|
-
},
|
|
7869
6721
|
"node_modules/process-nextick-args": {
|
|
7870
6722
|
"version": "2.0.1",
|
|
7871
6723
|
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
|
|
@@ -7986,23 +6838,12 @@
|
|
|
7986
6838
|
"integrity": "sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==",
|
|
7987
6839
|
"dev": true,
|
|
7988
6840
|
"license": "MIT",
|
|
6841
|
+
"optional": true,
|
|
6842
|
+
"peer": true,
|
|
7989
6843
|
"engines": {
|
|
7990
6844
|
"node": ">=0.10.0"
|
|
7991
6845
|
}
|
|
7992
6846
|
},
|
|
7993
|
-
"node_modules/react-dom": {
|
|
7994
|
-
"version": "19.1.0",
|
|
7995
|
-
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.1.0.tgz",
|
|
7996
|
-
"integrity": "sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==",
|
|
7997
|
-
"dev": true,
|
|
7998
|
-
"license": "MIT",
|
|
7999
|
-
"dependencies": {
|
|
8000
|
-
"scheduler": "^0.26.0"
|
|
8001
|
-
},
|
|
8002
|
-
"peerDependencies": {
|
|
8003
|
-
"react": "^19.1.0"
|
|
8004
|
-
}
|
|
8005
|
-
},
|
|
8006
6847
|
"node_modules/react-is": {
|
|
8007
6848
|
"version": "17.0.2",
|
|
8008
6849
|
"resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
|
|
@@ -8257,24 +7098,6 @@
|
|
|
8257
7098
|
],
|
|
8258
7099
|
"license": "MIT"
|
|
8259
7100
|
},
|
|
8260
|
-
"node_modules/safe-regex-test": {
|
|
8261
|
-
"version": "1.1.0",
|
|
8262
|
-
"resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz",
|
|
8263
|
-
"integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==",
|
|
8264
|
-
"dev": true,
|
|
8265
|
-
"license": "MIT",
|
|
8266
|
-
"dependencies": {
|
|
8267
|
-
"call-bound": "^1.0.2",
|
|
8268
|
-
"es-errors": "^1.3.0",
|
|
8269
|
-
"is-regex": "^1.2.1"
|
|
8270
|
-
},
|
|
8271
|
-
"engines": {
|
|
8272
|
-
"node": ">= 0.4"
|
|
8273
|
-
},
|
|
8274
|
-
"funding": {
|
|
8275
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
8276
|
-
}
|
|
8277
|
-
},
|
|
8278
7101
|
"node_modules/safer-buffer": {
|
|
8279
7102
|
"version": "2.1.2",
|
|
8280
7103
|
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
|
@@ -8282,13 +7105,6 @@
|
|
|
8282
7105
|
"dev": true,
|
|
8283
7106
|
"license": "MIT"
|
|
8284
7107
|
},
|
|
8285
|
-
"node_modules/scheduler": {
|
|
8286
|
-
"version": "0.26.0",
|
|
8287
|
-
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.26.0.tgz",
|
|
8288
|
-
"integrity": "sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==",
|
|
8289
|
-
"dev": true,
|
|
8290
|
-
"license": "MIT"
|
|
8291
|
-
},
|
|
8292
7108
|
"node_modules/schema-utils": {
|
|
8293
7109
|
"version": "4.3.2",
|
|
8294
7110
|
"resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz",
|
|
@@ -8544,24 +7360,6 @@
|
|
|
8544
7360
|
"node": ">= 0.8.0"
|
|
8545
7361
|
}
|
|
8546
7362
|
},
|
|
8547
|
-
"node_modules/set-function-length": {
|
|
8548
|
-
"version": "1.2.2",
|
|
8549
|
-
"resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz",
|
|
8550
|
-
"integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
|
|
8551
|
-
"dev": true,
|
|
8552
|
-
"license": "MIT",
|
|
8553
|
-
"dependencies": {
|
|
8554
|
-
"define-data-property": "^1.1.4",
|
|
8555
|
-
"es-errors": "^1.3.0",
|
|
8556
|
-
"function-bind": "^1.1.2",
|
|
8557
|
-
"get-intrinsic": "^1.2.4",
|
|
8558
|
-
"gopd": "^1.0.1",
|
|
8559
|
-
"has-property-descriptors": "^1.0.2"
|
|
8560
|
-
},
|
|
8561
|
-
"engines": {
|
|
8562
|
-
"node": ">= 0.4"
|
|
8563
|
-
}
|
|
8564
|
-
},
|
|
8565
7363
|
"node_modules/setprototypeof": {
|
|
8566
7364
|
"version": "1.2.0",
|
|
8567
7365
|
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
|
|
@@ -9419,16 +8217,6 @@
|
|
|
9419
8217
|
"typescript": ">=4.8.4"
|
|
9420
8218
|
}
|
|
9421
8219
|
},
|
|
9422
|
-
"node_modules/ts-dedent": {
|
|
9423
|
-
"version": "2.2.0",
|
|
9424
|
-
"resolved": "https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.2.0.tgz",
|
|
9425
|
-
"integrity": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==",
|
|
9426
|
-
"dev": true,
|
|
9427
|
-
"license": "MIT",
|
|
9428
|
-
"engines": {
|
|
9429
|
-
"node": ">=6.10"
|
|
9430
|
-
}
|
|
9431
|
-
},
|
|
9432
8220
|
"node_modules/ts-loader": {
|
|
9433
8221
|
"version": "9.5.2",
|
|
9434
8222
|
"resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-9.5.2.tgz",
|
|
@@ -9538,16 +8326,6 @@
|
|
|
9538
8326
|
"dev": true,
|
|
9539
8327
|
"license": "MIT"
|
|
9540
8328
|
},
|
|
9541
|
-
"node_modules/universalify": {
|
|
9542
|
-
"version": "2.0.1",
|
|
9543
|
-
"resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
|
|
9544
|
-
"integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
|
|
9545
|
-
"dev": true,
|
|
9546
|
-
"license": "MIT",
|
|
9547
|
-
"engines": {
|
|
9548
|
-
"node": ">= 10.0.0"
|
|
9549
|
-
}
|
|
9550
|
-
},
|
|
9551
8329
|
"node_modules/unpipe": {
|
|
9552
8330
|
"version": "1.0.0",
|
|
9553
8331
|
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
|
|
@@ -9558,20 +8336,6 @@
|
|
|
9558
8336
|
"node": ">= 0.8"
|
|
9559
8337
|
}
|
|
9560
8338
|
},
|
|
9561
|
-
"node_modules/unplugin": {
|
|
9562
|
-
"version": "1.16.1",
|
|
9563
|
-
"resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.16.1.tgz",
|
|
9564
|
-
"integrity": "sha512-4/u/j4FrCKdi17jaxuJA0jClGxB1AvU2hw/IuayPc4ay1XGaJs/rbb4v5WKwAjNifjmXK9PIFyuPiaK8azyR9w==",
|
|
9565
|
-
"dev": true,
|
|
9566
|
-
"license": "MIT",
|
|
9567
|
-
"dependencies": {
|
|
9568
|
-
"acorn": "^8.14.0",
|
|
9569
|
-
"webpack-virtual-modules": "^0.6.2"
|
|
9570
|
-
},
|
|
9571
|
-
"engines": {
|
|
9572
|
-
"node": ">=14.0.0"
|
|
9573
|
-
}
|
|
9574
|
-
},
|
|
9575
8339
|
"node_modules/update-browserslist-db": {
|
|
9576
8340
|
"version": "1.1.3",
|
|
9577
8341
|
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz",
|
|
@@ -9613,41 +8377,6 @@
|
|
|
9613
8377
|
"punycode": "^2.1.0"
|
|
9614
8378
|
}
|
|
9615
8379
|
},
|
|
9616
|
-
"node_modules/url": {
|
|
9617
|
-
"version": "0.11.4",
|
|
9618
|
-
"resolved": "https://registry.npmjs.org/url/-/url-0.11.4.tgz",
|
|
9619
|
-
"integrity": "sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==",
|
|
9620
|
-
"dev": true,
|
|
9621
|
-
"license": "MIT",
|
|
9622
|
-
"dependencies": {
|
|
9623
|
-
"punycode": "^1.4.1",
|
|
9624
|
-
"qs": "^6.12.3"
|
|
9625
|
-
},
|
|
9626
|
-
"engines": {
|
|
9627
|
-
"node": ">= 0.4"
|
|
9628
|
-
}
|
|
9629
|
-
},
|
|
9630
|
-
"node_modules/url/node_modules/punycode": {
|
|
9631
|
-
"version": "1.4.1",
|
|
9632
|
-
"resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
|
|
9633
|
-
"integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==",
|
|
9634
|
-
"dev": true,
|
|
9635
|
-
"license": "MIT"
|
|
9636
|
-
},
|
|
9637
|
-
"node_modules/util": {
|
|
9638
|
-
"version": "0.12.5",
|
|
9639
|
-
"resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz",
|
|
9640
|
-
"integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==",
|
|
9641
|
-
"dev": true,
|
|
9642
|
-
"license": "MIT",
|
|
9643
|
-
"dependencies": {
|
|
9644
|
-
"inherits": "^2.0.3",
|
|
9645
|
-
"is-arguments": "^1.0.4",
|
|
9646
|
-
"is-generator-function": "^1.0.7",
|
|
9647
|
-
"is-typed-array": "^1.1.3",
|
|
9648
|
-
"which-typed-array": "^1.1.2"
|
|
9649
|
-
}
|
|
9650
|
-
},
|
|
9651
8380
|
"node_modules/util-deprecate": {
|
|
9652
8381
|
"version": "1.0.2",
|
|
9653
8382
|
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
|
@@ -9967,18 +8696,6 @@
|
|
|
9967
8696
|
}
|
|
9968
8697
|
}
|
|
9969
8698
|
},
|
|
9970
|
-
"node_modules/webpack-hot-middleware": {
|
|
9971
|
-
"version": "2.26.1",
|
|
9972
|
-
"resolved": "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.26.1.tgz",
|
|
9973
|
-
"integrity": "sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==",
|
|
9974
|
-
"dev": true,
|
|
9975
|
-
"license": "MIT",
|
|
9976
|
-
"dependencies": {
|
|
9977
|
-
"ansi-html-community": "0.0.8",
|
|
9978
|
-
"html-entities": "^2.1.0",
|
|
9979
|
-
"strip-ansi": "^6.0.0"
|
|
9980
|
-
}
|
|
9981
|
-
},
|
|
9982
8699
|
"node_modules/webpack-merge": {
|
|
9983
8700
|
"version": "5.10.0",
|
|
9984
8701
|
"resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz",
|
|
@@ -10004,13 +8721,6 @@
|
|
|
10004
8721
|
"node": ">=10.13.0"
|
|
10005
8722
|
}
|
|
10006
8723
|
},
|
|
10007
|
-
"node_modules/webpack-virtual-modules": {
|
|
10008
|
-
"version": "0.6.2",
|
|
10009
|
-
"resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz",
|
|
10010
|
-
"integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==",
|
|
10011
|
-
"dev": true,
|
|
10012
|
-
"license": "MIT"
|
|
10013
|
-
},
|
|
10014
8724
|
"node_modules/webpack/node_modules/eslint-scope": {
|
|
10015
8725
|
"version": "5.1.1",
|
|
10016
8726
|
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
|
|
@@ -10076,28 +8786,6 @@
|
|
|
10076
8786
|
"node": ">= 8"
|
|
10077
8787
|
}
|
|
10078
8788
|
},
|
|
10079
|
-
"node_modules/which-typed-array": {
|
|
10080
|
-
"version": "1.1.19",
|
|
10081
|
-
"resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz",
|
|
10082
|
-
"integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==",
|
|
10083
|
-
"dev": true,
|
|
10084
|
-
"license": "MIT",
|
|
10085
|
-
"dependencies": {
|
|
10086
|
-
"available-typed-arrays": "^1.0.7",
|
|
10087
|
-
"call-bind": "^1.0.8",
|
|
10088
|
-
"call-bound": "^1.0.4",
|
|
10089
|
-
"for-each": "^0.3.5",
|
|
10090
|
-
"get-proto": "^1.0.1",
|
|
10091
|
-
"gopd": "^1.2.0",
|
|
10092
|
-
"has-tostringtag": "^1.0.2"
|
|
10093
|
-
},
|
|
10094
|
-
"engines": {
|
|
10095
|
-
"node": ">= 0.4"
|
|
10096
|
-
},
|
|
10097
|
-
"funding": {
|
|
10098
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
10099
|
-
}
|
|
10100
|
-
},
|
|
10101
8789
|
"node_modules/wildcard": {
|
|
10102
8790
|
"version": "2.0.1",
|
|
10103
8791
|
"resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz",
|
|
@@ -10151,16 +8839,6 @@
|
|
|
10151
8839
|
}
|
|
10152
8840
|
}
|
|
10153
8841
|
},
|
|
10154
|
-
"node_modules/yaml": {
|
|
10155
|
-
"version": "1.10.2",
|
|
10156
|
-
"resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
|
|
10157
|
-
"integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
|
|
10158
|
-
"dev": true,
|
|
10159
|
-
"license": "ISC",
|
|
10160
|
-
"engines": {
|
|
10161
|
-
"node": ">= 6"
|
|
10162
|
-
}
|
|
10163
|
-
},
|
|
10164
8842
|
"node_modules/yocto-queue": {
|
|
10165
8843
|
"version": "0.1.0",
|
|
10166
8844
|
"resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
|