data-primals-engine 1.3.4 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +797 -782
- package/client/README.md +20 -0
- package/client/package-lock.json +712 -147
- package/client/package.json +38 -37
- package/client/src/App.jsx +9 -10
- package/client/src/App.scss +7 -1
- package/client/src/Dashboard.jsx +349 -208
- package/client/src/DashboardView.jsx +569 -547
- package/client/src/DataEditor.jsx +20 -2
- package/client/src/DataLayout.jsx +24 -12
- package/client/src/DataTable.jsx +807 -760
- package/client/src/DataTable.scss +187 -90
- package/client/src/Field.jsx +1783 -1656
- package/client/src/ModelCreator.jsx +2 -2
- package/client/src/ModelCreatorField.jsx +906 -804
- package/client/src/ModelList.jsx +2 -2
- package/client/src/constants.js +16 -4
- package/client/src/translations.js +241 -3
- package/package.json +3 -3
- package/src/core.js +9 -0
- package/src/defaultModels.js +18 -10
- package/src/email.js +2 -1
- package/src/i18n.js +501 -28
- package/src/modules/data/data.core.js +5 -1
- package/src/modules/data/data.history.js +489 -489
- package/src/modules/data/data.js +75 -9
- package/src/modules/data/data.routes.js +3 -20
- package/src/modules/user.js +19 -0
- package/src/modules/workflow.js +2 -12
- package/client/public/demo/26899917-d1ba-4df4-bb33-48d09a8778da.jpg +0 -0
- package/client/public/demo/4b9894c7-12cd-466d-8fd3-a2757b09ec96.jpg +0 -0
- package/client/public/demo/7ed369ac-a1a2-4b45-b0cd-4fd5bcf5a75a.jpg +0 -0
package/client/package-lock.json
CHANGED
|
@@ -8,62 +8,63 @@
|
|
|
8
8
|
"name": "client",
|
|
9
9
|
"version": "0.0.0",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@babel/runtime": "^7.
|
|
11
|
+
"@babel/runtime": "^7.28.3",
|
|
12
12
|
"@codeium/react-code-editor": "^1.0.12",
|
|
13
|
-
"@codemirror/lang-javascript": "^6.2.
|
|
14
|
-
"@tiptap/extension-code": "^2.
|
|
15
|
-
"@tiptap/extension-code-block": "^2.
|
|
16
|
-
"@tiptap/extension-code-block-lowlight": "^2.
|
|
17
|
-
"@tiptap/extension-color": "^2.
|
|
18
|
-
"@tiptap/extension-hard-break": "^2.
|
|
13
|
+
"@codemirror/lang-javascript": "^6.2.4",
|
|
14
|
+
"@tiptap/extension-code": "^2.26.1",
|
|
15
|
+
"@tiptap/extension-code-block": "^2.26.1",
|
|
16
|
+
"@tiptap/extension-code-block-lowlight": "^2.26.1",
|
|
17
|
+
"@tiptap/extension-color": "^2.26.1",
|
|
18
|
+
"@tiptap/extension-hard-break": "^2.26.1",
|
|
19
19
|
"@tiptap/extension-image": "^2.12.0",
|
|
20
|
-
"@tiptap/extension-link": "^2.
|
|
21
|
-
"@tiptap/extension-list-item": "^2.
|
|
22
|
-
"@tiptap/extension-text-style": "^2.
|
|
23
|
-
"@tiptap/pm": "^2.
|
|
24
|
-
"@tiptap/starter-kit": "^2.
|
|
25
|
-
"@uiw/react-codemirror": "^4.
|
|
26
|
-
"chart.js": "^4.
|
|
20
|
+
"@tiptap/extension-link": "^2.26.1",
|
|
21
|
+
"@tiptap/extension-list-item": "^2.26.1",
|
|
22
|
+
"@tiptap/extension-text-style": "^2.26.1",
|
|
23
|
+
"@tiptap/pm": "^2.26.1",
|
|
24
|
+
"@tiptap/starter-kit": "^2.26.1",
|
|
25
|
+
"@uiw/react-codemirror": "^4.25.1",
|
|
26
|
+
"chart.js": "^4.5.0",
|
|
27
27
|
"chartjs-adapter-date-fns": "^3.0.0",
|
|
28
28
|
"classnames": "^2.5.1",
|
|
29
29
|
"date-fns": "^4.1.0",
|
|
30
30
|
"express-rate-limit": "^7.5.1",
|
|
31
|
+
"i18next": "^25.4.0",
|
|
31
32
|
"lowlight": "^3.3.0",
|
|
32
|
-
"react": "18.3.1",
|
|
33
|
-
"react-big-calendar": "1.15.0",
|
|
34
|
-
"react-dom": "18.3.1",
|
|
35
|
-
"react-router": "^7.
|
|
36
|
-
"react-switch": "^
|
|
33
|
+
"react": "^18.3.1",
|
|
34
|
+
"react-big-calendar": "^1.15.0",
|
|
35
|
+
"react-dom": "^18.3.1",
|
|
36
|
+
"react-router": "^7.8.1",
|
|
37
|
+
"react-switch": "^7.1.0",
|
|
37
38
|
"uniqid": "^5.4.0",
|
|
38
|
-
"yet-another-react-lightbox": "^3.
|
|
39
|
+
"yet-another-react-lightbox": "^3.25.0"
|
|
39
40
|
},
|
|
40
41
|
"devDependencies": {
|
|
41
|
-
"@eslint/js": "^9.
|
|
42
|
-
"@types/react": "18.3.1",
|
|
43
|
-
"@types/react-dom": "18.3.1",
|
|
44
|
-
"@vitejs/plugin-react": "^4.
|
|
45
|
-
"eslint": "^9.
|
|
46
|
-
"eslint-plugin-react": "^7.37.
|
|
47
|
-
"eslint-plugin-react-hooks": "^5.
|
|
48
|
-
"eslint-plugin-react-refresh": "^0.4.
|
|
49
|
-
"globals": "^15.
|
|
42
|
+
"@eslint/js": "^9.33.0",
|
|
43
|
+
"@types/react": "^18.3.1",
|
|
44
|
+
"@types/react-dom": "^18.3.1",
|
|
45
|
+
"@vitejs/plugin-react": "^4.7.0",
|
|
46
|
+
"eslint": "^9.33.0",
|
|
47
|
+
"eslint-plugin-react": "^7.37.5",
|
|
48
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
49
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
50
|
+
"globals": "^15.15.0",
|
|
50
51
|
"process": "^0.11.10",
|
|
51
|
-
"sass-embedded": "^1.
|
|
52
|
-
"vite": "^6.
|
|
52
|
+
"sass-embedded": "^1.90.0",
|
|
53
|
+
"vite": "^6.3.5"
|
|
53
54
|
},
|
|
54
55
|
"peerDependencies": {
|
|
55
|
-
"@tiptap/react": "^2.
|
|
56
|
+
"@tiptap/react": "^2.26.1",
|
|
56
57
|
"react-chartjs-2": "^5.3.0",
|
|
57
58
|
"react-code-blocks": "^0.1.6",
|
|
58
|
-
"react-cookie": "^8.0.
|
|
59
|
+
"react-cookie": "^8.0.1",
|
|
59
60
|
"react-ga": "^3.3.1",
|
|
60
61
|
"react-helmet": "^6.1.0",
|
|
61
|
-
"react-icons": "^5.0
|
|
62
|
-
"react-international-phone": "^4.
|
|
62
|
+
"react-icons": "^5.5.0",
|
|
63
|
+
"react-international-phone": "^4.6.0",
|
|
63
64
|
"react-query": "^3.39.3",
|
|
64
|
-
"react-router-dom": "^7.1
|
|
65
|
+
"react-router-dom": "^7.8.1",
|
|
65
66
|
"react-syntax-highlighter": "^15.6.1",
|
|
66
|
-
"react-tooltip": "^5.
|
|
67
|
+
"react-tooltip": "^5.29.1"
|
|
67
68
|
}
|
|
68
69
|
},
|
|
69
70
|
"node_modules/@ampproject/remapping": {
|
|
@@ -298,9 +299,10 @@
|
|
|
298
299
|
}
|
|
299
300
|
},
|
|
300
301
|
"node_modules/@babel/runtime": {
|
|
301
|
-
"version": "7.28.
|
|
302
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.
|
|
303
|
-
"integrity": "sha512-
|
|
302
|
+
"version": "7.28.3",
|
|
303
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.3.tgz",
|
|
304
|
+
"integrity": "sha512-9uIQ10o0WGdpP6GDhXcdOJPJuDgFtIDtN/9+ArJQ2NAfAmiuhTQdzkaTGR33v43GYS2UrSA0eX2pPPHoFVvpxA==",
|
|
305
|
+
"license": "MIT",
|
|
304
306
|
"engines": {
|
|
305
307
|
"node": ">=6.9.0"
|
|
306
308
|
}
|
|
@@ -1095,19 +1097,21 @@
|
|
|
1095
1097
|
}
|
|
1096
1098
|
},
|
|
1097
1099
|
"node_modules/@eslint/config-helpers": {
|
|
1098
|
-
"version": "0.3.
|
|
1099
|
-
"resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.3.
|
|
1100
|
-
"integrity": "sha512-
|
|
1100
|
+
"version": "0.3.1",
|
|
1101
|
+
"resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.3.1.tgz",
|
|
1102
|
+
"integrity": "sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==",
|
|
1101
1103
|
"dev": true,
|
|
1104
|
+
"license": "Apache-2.0",
|
|
1102
1105
|
"engines": {
|
|
1103
1106
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
1104
1107
|
}
|
|
1105
1108
|
},
|
|
1106
1109
|
"node_modules/@eslint/core": {
|
|
1107
|
-
"version": "0.15.
|
|
1108
|
-
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.
|
|
1109
|
-
"integrity": "sha512-
|
|
1110
|
+
"version": "0.15.2",
|
|
1111
|
+
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.2.tgz",
|
|
1112
|
+
"integrity": "sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==",
|
|
1110
1113
|
"dev": true,
|
|
1114
|
+
"license": "Apache-2.0",
|
|
1111
1115
|
"dependencies": {
|
|
1112
1116
|
"@types/json-schema": "^7.0.15"
|
|
1113
1117
|
},
|
|
@@ -1151,10 +1155,11 @@
|
|
|
1151
1155
|
}
|
|
1152
1156
|
},
|
|
1153
1157
|
"node_modules/@eslint/js": {
|
|
1154
|
-
"version": "9.
|
|
1155
|
-
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.
|
|
1156
|
-
"integrity": "sha512-
|
|
1158
|
+
"version": "9.33.0",
|
|
1159
|
+
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.33.0.tgz",
|
|
1160
|
+
"integrity": "sha512-5K1/mKhWaMfreBGJTwval43JJmkip0RmM+3+IuqupeSKNC/Th2Kc7ucaq5ovTSra/OOKB9c58CGSz3QMVbWt0A==",
|
|
1157
1161
|
"dev": true,
|
|
1162
|
+
"license": "MIT",
|
|
1158
1163
|
"engines": {
|
|
1159
1164
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
1160
1165
|
},
|
|
@@ -1172,12 +1177,13 @@
|
|
|
1172
1177
|
}
|
|
1173
1178
|
},
|
|
1174
1179
|
"node_modules/@eslint/plugin-kit": {
|
|
1175
|
-
"version": "0.3.
|
|
1176
|
-
"resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.
|
|
1177
|
-
"integrity": "sha512-
|
|
1180
|
+
"version": "0.3.5",
|
|
1181
|
+
"resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.5.tgz",
|
|
1182
|
+
"integrity": "sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==",
|
|
1178
1183
|
"dev": true,
|
|
1184
|
+
"license": "Apache-2.0",
|
|
1179
1185
|
"dependencies": {
|
|
1180
|
-
"@eslint/core": "^0.15.
|
|
1186
|
+
"@eslint/core": "^0.15.2",
|
|
1181
1187
|
"levn": "^0.4.1"
|
|
1182
1188
|
},
|
|
1183
1189
|
"engines": {
|
|
@@ -1367,6 +1373,316 @@
|
|
|
1367
1373
|
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
1368
1374
|
}
|
|
1369
1375
|
},
|
|
1376
|
+
"node_modules/@parcel/watcher": {
|
|
1377
|
+
"version": "2.5.1",
|
|
1378
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz",
|
|
1379
|
+
"integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==",
|
|
1380
|
+
"dev": true,
|
|
1381
|
+
"hasInstallScript": true,
|
|
1382
|
+
"license": "MIT",
|
|
1383
|
+
"optional": true,
|
|
1384
|
+
"dependencies": {
|
|
1385
|
+
"detect-libc": "^1.0.3",
|
|
1386
|
+
"is-glob": "^4.0.3",
|
|
1387
|
+
"micromatch": "^4.0.5",
|
|
1388
|
+
"node-addon-api": "^7.0.0"
|
|
1389
|
+
},
|
|
1390
|
+
"engines": {
|
|
1391
|
+
"node": ">= 10.0.0"
|
|
1392
|
+
},
|
|
1393
|
+
"funding": {
|
|
1394
|
+
"type": "opencollective",
|
|
1395
|
+
"url": "https://opencollective.com/parcel"
|
|
1396
|
+
},
|
|
1397
|
+
"optionalDependencies": {
|
|
1398
|
+
"@parcel/watcher-android-arm64": "2.5.1",
|
|
1399
|
+
"@parcel/watcher-darwin-arm64": "2.5.1",
|
|
1400
|
+
"@parcel/watcher-darwin-x64": "2.5.1",
|
|
1401
|
+
"@parcel/watcher-freebsd-x64": "2.5.1",
|
|
1402
|
+
"@parcel/watcher-linux-arm-glibc": "2.5.1",
|
|
1403
|
+
"@parcel/watcher-linux-arm-musl": "2.5.1",
|
|
1404
|
+
"@parcel/watcher-linux-arm64-glibc": "2.5.1",
|
|
1405
|
+
"@parcel/watcher-linux-arm64-musl": "2.5.1",
|
|
1406
|
+
"@parcel/watcher-linux-x64-glibc": "2.5.1",
|
|
1407
|
+
"@parcel/watcher-linux-x64-musl": "2.5.1",
|
|
1408
|
+
"@parcel/watcher-win32-arm64": "2.5.1",
|
|
1409
|
+
"@parcel/watcher-win32-ia32": "2.5.1",
|
|
1410
|
+
"@parcel/watcher-win32-x64": "2.5.1"
|
|
1411
|
+
}
|
|
1412
|
+
},
|
|
1413
|
+
"node_modules/@parcel/watcher-android-arm64": {
|
|
1414
|
+
"version": "2.5.1",
|
|
1415
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz",
|
|
1416
|
+
"integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==",
|
|
1417
|
+
"cpu": [
|
|
1418
|
+
"arm64"
|
|
1419
|
+
],
|
|
1420
|
+
"dev": true,
|
|
1421
|
+
"license": "MIT",
|
|
1422
|
+
"optional": true,
|
|
1423
|
+
"os": [
|
|
1424
|
+
"android"
|
|
1425
|
+
],
|
|
1426
|
+
"engines": {
|
|
1427
|
+
"node": ">= 10.0.0"
|
|
1428
|
+
},
|
|
1429
|
+
"funding": {
|
|
1430
|
+
"type": "opencollective",
|
|
1431
|
+
"url": "https://opencollective.com/parcel"
|
|
1432
|
+
}
|
|
1433
|
+
},
|
|
1434
|
+
"node_modules/@parcel/watcher-darwin-arm64": {
|
|
1435
|
+
"version": "2.5.1",
|
|
1436
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz",
|
|
1437
|
+
"integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==",
|
|
1438
|
+
"cpu": [
|
|
1439
|
+
"arm64"
|
|
1440
|
+
],
|
|
1441
|
+
"dev": true,
|
|
1442
|
+
"license": "MIT",
|
|
1443
|
+
"optional": true,
|
|
1444
|
+
"os": [
|
|
1445
|
+
"darwin"
|
|
1446
|
+
],
|
|
1447
|
+
"engines": {
|
|
1448
|
+
"node": ">= 10.0.0"
|
|
1449
|
+
},
|
|
1450
|
+
"funding": {
|
|
1451
|
+
"type": "opencollective",
|
|
1452
|
+
"url": "https://opencollective.com/parcel"
|
|
1453
|
+
}
|
|
1454
|
+
},
|
|
1455
|
+
"node_modules/@parcel/watcher-darwin-x64": {
|
|
1456
|
+
"version": "2.5.1",
|
|
1457
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz",
|
|
1458
|
+
"integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==",
|
|
1459
|
+
"cpu": [
|
|
1460
|
+
"x64"
|
|
1461
|
+
],
|
|
1462
|
+
"dev": true,
|
|
1463
|
+
"license": "MIT",
|
|
1464
|
+
"optional": true,
|
|
1465
|
+
"os": [
|
|
1466
|
+
"darwin"
|
|
1467
|
+
],
|
|
1468
|
+
"engines": {
|
|
1469
|
+
"node": ">= 10.0.0"
|
|
1470
|
+
},
|
|
1471
|
+
"funding": {
|
|
1472
|
+
"type": "opencollective",
|
|
1473
|
+
"url": "https://opencollective.com/parcel"
|
|
1474
|
+
}
|
|
1475
|
+
},
|
|
1476
|
+
"node_modules/@parcel/watcher-freebsd-x64": {
|
|
1477
|
+
"version": "2.5.1",
|
|
1478
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz",
|
|
1479
|
+
"integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==",
|
|
1480
|
+
"cpu": [
|
|
1481
|
+
"x64"
|
|
1482
|
+
],
|
|
1483
|
+
"dev": true,
|
|
1484
|
+
"license": "MIT",
|
|
1485
|
+
"optional": true,
|
|
1486
|
+
"os": [
|
|
1487
|
+
"freebsd"
|
|
1488
|
+
],
|
|
1489
|
+
"engines": {
|
|
1490
|
+
"node": ">= 10.0.0"
|
|
1491
|
+
},
|
|
1492
|
+
"funding": {
|
|
1493
|
+
"type": "opencollective",
|
|
1494
|
+
"url": "https://opencollective.com/parcel"
|
|
1495
|
+
}
|
|
1496
|
+
},
|
|
1497
|
+
"node_modules/@parcel/watcher-linux-arm-glibc": {
|
|
1498
|
+
"version": "2.5.1",
|
|
1499
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz",
|
|
1500
|
+
"integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==",
|
|
1501
|
+
"cpu": [
|
|
1502
|
+
"arm"
|
|
1503
|
+
],
|
|
1504
|
+
"dev": true,
|
|
1505
|
+
"license": "MIT",
|
|
1506
|
+
"optional": true,
|
|
1507
|
+
"os": [
|
|
1508
|
+
"linux"
|
|
1509
|
+
],
|
|
1510
|
+
"engines": {
|
|
1511
|
+
"node": ">= 10.0.0"
|
|
1512
|
+
},
|
|
1513
|
+
"funding": {
|
|
1514
|
+
"type": "opencollective",
|
|
1515
|
+
"url": "https://opencollective.com/parcel"
|
|
1516
|
+
}
|
|
1517
|
+
},
|
|
1518
|
+
"node_modules/@parcel/watcher-linux-arm-musl": {
|
|
1519
|
+
"version": "2.5.1",
|
|
1520
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz",
|
|
1521
|
+
"integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==",
|
|
1522
|
+
"cpu": [
|
|
1523
|
+
"arm"
|
|
1524
|
+
],
|
|
1525
|
+
"dev": true,
|
|
1526
|
+
"license": "MIT",
|
|
1527
|
+
"optional": true,
|
|
1528
|
+
"os": [
|
|
1529
|
+
"linux"
|
|
1530
|
+
],
|
|
1531
|
+
"engines": {
|
|
1532
|
+
"node": ">= 10.0.0"
|
|
1533
|
+
},
|
|
1534
|
+
"funding": {
|
|
1535
|
+
"type": "opencollective",
|
|
1536
|
+
"url": "https://opencollective.com/parcel"
|
|
1537
|
+
}
|
|
1538
|
+
},
|
|
1539
|
+
"node_modules/@parcel/watcher-linux-arm64-glibc": {
|
|
1540
|
+
"version": "2.5.1",
|
|
1541
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz",
|
|
1542
|
+
"integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==",
|
|
1543
|
+
"cpu": [
|
|
1544
|
+
"arm64"
|
|
1545
|
+
],
|
|
1546
|
+
"dev": true,
|
|
1547
|
+
"license": "MIT",
|
|
1548
|
+
"optional": true,
|
|
1549
|
+
"os": [
|
|
1550
|
+
"linux"
|
|
1551
|
+
],
|
|
1552
|
+
"engines": {
|
|
1553
|
+
"node": ">= 10.0.0"
|
|
1554
|
+
},
|
|
1555
|
+
"funding": {
|
|
1556
|
+
"type": "opencollective",
|
|
1557
|
+
"url": "https://opencollective.com/parcel"
|
|
1558
|
+
}
|
|
1559
|
+
},
|
|
1560
|
+
"node_modules/@parcel/watcher-linux-arm64-musl": {
|
|
1561
|
+
"version": "2.5.1",
|
|
1562
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz",
|
|
1563
|
+
"integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==",
|
|
1564
|
+
"cpu": [
|
|
1565
|
+
"arm64"
|
|
1566
|
+
],
|
|
1567
|
+
"dev": true,
|
|
1568
|
+
"license": "MIT",
|
|
1569
|
+
"optional": true,
|
|
1570
|
+
"os": [
|
|
1571
|
+
"linux"
|
|
1572
|
+
],
|
|
1573
|
+
"engines": {
|
|
1574
|
+
"node": ">= 10.0.0"
|
|
1575
|
+
},
|
|
1576
|
+
"funding": {
|
|
1577
|
+
"type": "opencollective",
|
|
1578
|
+
"url": "https://opencollective.com/parcel"
|
|
1579
|
+
}
|
|
1580
|
+
},
|
|
1581
|
+
"node_modules/@parcel/watcher-linux-x64-glibc": {
|
|
1582
|
+
"version": "2.5.1",
|
|
1583
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz",
|
|
1584
|
+
"integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==",
|
|
1585
|
+
"cpu": [
|
|
1586
|
+
"x64"
|
|
1587
|
+
],
|
|
1588
|
+
"dev": true,
|
|
1589
|
+
"license": "MIT",
|
|
1590
|
+
"optional": true,
|
|
1591
|
+
"os": [
|
|
1592
|
+
"linux"
|
|
1593
|
+
],
|
|
1594
|
+
"engines": {
|
|
1595
|
+
"node": ">= 10.0.0"
|
|
1596
|
+
},
|
|
1597
|
+
"funding": {
|
|
1598
|
+
"type": "opencollective",
|
|
1599
|
+
"url": "https://opencollective.com/parcel"
|
|
1600
|
+
}
|
|
1601
|
+
},
|
|
1602
|
+
"node_modules/@parcel/watcher-linux-x64-musl": {
|
|
1603
|
+
"version": "2.5.1",
|
|
1604
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz",
|
|
1605
|
+
"integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==",
|
|
1606
|
+
"cpu": [
|
|
1607
|
+
"x64"
|
|
1608
|
+
],
|
|
1609
|
+
"dev": true,
|
|
1610
|
+
"license": "MIT",
|
|
1611
|
+
"optional": true,
|
|
1612
|
+
"os": [
|
|
1613
|
+
"linux"
|
|
1614
|
+
],
|
|
1615
|
+
"engines": {
|
|
1616
|
+
"node": ">= 10.0.0"
|
|
1617
|
+
},
|
|
1618
|
+
"funding": {
|
|
1619
|
+
"type": "opencollective",
|
|
1620
|
+
"url": "https://opencollective.com/parcel"
|
|
1621
|
+
}
|
|
1622
|
+
},
|
|
1623
|
+
"node_modules/@parcel/watcher-win32-arm64": {
|
|
1624
|
+
"version": "2.5.1",
|
|
1625
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz",
|
|
1626
|
+
"integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==",
|
|
1627
|
+
"cpu": [
|
|
1628
|
+
"arm64"
|
|
1629
|
+
],
|
|
1630
|
+
"dev": true,
|
|
1631
|
+
"license": "MIT",
|
|
1632
|
+
"optional": true,
|
|
1633
|
+
"os": [
|
|
1634
|
+
"win32"
|
|
1635
|
+
],
|
|
1636
|
+
"engines": {
|
|
1637
|
+
"node": ">= 10.0.0"
|
|
1638
|
+
},
|
|
1639
|
+
"funding": {
|
|
1640
|
+
"type": "opencollective",
|
|
1641
|
+
"url": "https://opencollective.com/parcel"
|
|
1642
|
+
}
|
|
1643
|
+
},
|
|
1644
|
+
"node_modules/@parcel/watcher-win32-ia32": {
|
|
1645
|
+
"version": "2.5.1",
|
|
1646
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz",
|
|
1647
|
+
"integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==",
|
|
1648
|
+
"cpu": [
|
|
1649
|
+
"ia32"
|
|
1650
|
+
],
|
|
1651
|
+
"dev": true,
|
|
1652
|
+
"license": "MIT",
|
|
1653
|
+
"optional": true,
|
|
1654
|
+
"os": [
|
|
1655
|
+
"win32"
|
|
1656
|
+
],
|
|
1657
|
+
"engines": {
|
|
1658
|
+
"node": ">= 10.0.0"
|
|
1659
|
+
},
|
|
1660
|
+
"funding": {
|
|
1661
|
+
"type": "opencollective",
|
|
1662
|
+
"url": "https://opencollective.com/parcel"
|
|
1663
|
+
}
|
|
1664
|
+
},
|
|
1665
|
+
"node_modules/@parcel/watcher-win32-x64": {
|
|
1666
|
+
"version": "2.5.1",
|
|
1667
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz",
|
|
1668
|
+
"integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==",
|
|
1669
|
+
"cpu": [
|
|
1670
|
+
"x64"
|
|
1671
|
+
],
|
|
1672
|
+
"dev": true,
|
|
1673
|
+
"license": "MIT",
|
|
1674
|
+
"optional": true,
|
|
1675
|
+
"os": [
|
|
1676
|
+
"win32"
|
|
1677
|
+
],
|
|
1678
|
+
"engines": {
|
|
1679
|
+
"node": ">= 10.0.0"
|
|
1680
|
+
},
|
|
1681
|
+
"funding": {
|
|
1682
|
+
"type": "opencollective",
|
|
1683
|
+
"url": "https://opencollective.com/parcel"
|
|
1684
|
+
}
|
|
1685
|
+
},
|
|
1370
1686
|
"node_modules/@popperjs/core": {
|
|
1371
1687
|
"version": "2.11.8",
|
|
1372
1688
|
"resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz",
|
|
@@ -2149,7 +2465,8 @@
|
|
|
2149
2465
|
"version": "7.0.15",
|
|
2150
2466
|
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
|
|
2151
2467
|
"integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
|
|
2152
|
-
"dev": true
|
|
2468
|
+
"dev": true,
|
|
2469
|
+
"license": "MIT"
|
|
2153
2470
|
},
|
|
2154
2471
|
"node_modules/@types/linkify-it": {
|
|
2155
2472
|
"version": "5.0.0",
|
|
@@ -2216,9 +2533,10 @@
|
|
|
2216
2533
|
"integrity": "sha512-D1XC7WK8K+zZEveUPY+cf4+kgauk8N4eHr/XIHXGlGYkHLud6hK9lYfZk1ry1TNh798cZUCgb6MqGEG8DkJt6Q=="
|
|
2217
2534
|
},
|
|
2218
2535
|
"node_modules/@uiw/codemirror-extensions-basic-setup": {
|
|
2219
|
-
"version": "4.
|
|
2220
|
-
"resolved": "https://registry.npmjs.org/@uiw/codemirror-extensions-basic-setup/-/codemirror-extensions-basic-setup-4.
|
|
2221
|
-
"integrity": "sha512-
|
|
2536
|
+
"version": "4.25.1",
|
|
2537
|
+
"resolved": "https://registry.npmjs.org/@uiw/codemirror-extensions-basic-setup/-/codemirror-extensions-basic-setup-4.25.1.tgz",
|
|
2538
|
+
"integrity": "sha512-zxgA2QkvP3ZDKxTBc9UltNFTrSeFezGXcZtZj6qcsBxiMzowoEMP5mVwXcKjpzldpZVRuY+JCC+RsekEgid4vg==",
|
|
2539
|
+
"license": "MIT",
|
|
2222
2540
|
"dependencies": {
|
|
2223
2541
|
"@codemirror/autocomplete": "^6.0.0",
|
|
2224
2542
|
"@codemirror/commands": "^6.0.0",
|
|
@@ -2242,15 +2560,16 @@
|
|
|
2242
2560
|
}
|
|
2243
2561
|
},
|
|
2244
2562
|
"node_modules/@uiw/react-codemirror": {
|
|
2245
|
-
"version": "4.
|
|
2246
|
-
"resolved": "https://registry.npmjs.org/@uiw/react-codemirror/-/react-codemirror-4.
|
|
2247
|
-
"integrity": "sha512-
|
|
2563
|
+
"version": "4.25.1",
|
|
2564
|
+
"resolved": "https://registry.npmjs.org/@uiw/react-codemirror/-/react-codemirror-4.25.1.tgz",
|
|
2565
|
+
"integrity": "sha512-eESBKHndoYkaEGlKCwRO4KrnTw1HkWBxVpEeqntoWTpoFEUYxdLWUYmkPBVk4/u8YzVy9g91nFfIRpqe5LjApg==",
|
|
2566
|
+
"license": "MIT",
|
|
2248
2567
|
"dependencies": {
|
|
2249
2568
|
"@babel/runtime": "^7.18.6",
|
|
2250
2569
|
"@codemirror/commands": "^6.1.0",
|
|
2251
2570
|
"@codemirror/state": "^6.1.1",
|
|
2252
2571
|
"@codemirror/theme-one-dark": "^6.0.0",
|
|
2253
|
-
"@uiw/codemirror-extensions-basic-setup": "4.
|
|
2572
|
+
"@uiw/codemirror-extensions-basic-setup": "4.25.1",
|
|
2254
2573
|
"codemirror": "^6.0.0"
|
|
2255
2574
|
},
|
|
2256
2575
|
"funding": {
|
|
@@ -2548,6 +2867,20 @@
|
|
|
2548
2867
|
"concat-map": "0.0.1"
|
|
2549
2868
|
}
|
|
2550
2869
|
},
|
|
2870
|
+
"node_modules/braces": {
|
|
2871
|
+
"version": "3.0.3",
|
|
2872
|
+
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
|
|
2873
|
+
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
|
|
2874
|
+
"dev": true,
|
|
2875
|
+
"license": "MIT",
|
|
2876
|
+
"optional": true,
|
|
2877
|
+
"dependencies": {
|
|
2878
|
+
"fill-range": "^7.1.1"
|
|
2879
|
+
},
|
|
2880
|
+
"engines": {
|
|
2881
|
+
"node": ">=8"
|
|
2882
|
+
}
|
|
2883
|
+
},
|
|
2551
2884
|
"node_modules/broadcast-channel": {
|
|
2552
2885
|
"version": "3.7.0",
|
|
2553
2886
|
"resolved": "https://registry.npmjs.org/broadcast-channel/-/broadcast-channel-3.7.0.tgz",
|
|
@@ -2714,6 +3047,23 @@
|
|
|
2714
3047
|
"date-fns": ">=2.0.0"
|
|
2715
3048
|
}
|
|
2716
3049
|
},
|
|
3050
|
+
"node_modules/chokidar": {
|
|
3051
|
+
"version": "4.0.3",
|
|
3052
|
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
|
|
3053
|
+
"integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
|
|
3054
|
+
"dev": true,
|
|
3055
|
+
"license": "MIT",
|
|
3056
|
+
"optional": true,
|
|
3057
|
+
"dependencies": {
|
|
3058
|
+
"readdirp": "^4.0.1"
|
|
3059
|
+
},
|
|
3060
|
+
"engines": {
|
|
3061
|
+
"node": ">= 14.16.0"
|
|
3062
|
+
},
|
|
3063
|
+
"funding": {
|
|
3064
|
+
"url": "https://paulmillr.com/funding/"
|
|
3065
|
+
}
|
|
3066
|
+
},
|
|
2717
3067
|
"node_modules/classnames": {
|
|
2718
3068
|
"version": "2.5.1",
|
|
2719
3069
|
"resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz",
|
|
@@ -2993,6 +3343,20 @@
|
|
|
2993
3343
|
"node": ">=6"
|
|
2994
3344
|
}
|
|
2995
3345
|
},
|
|
3346
|
+
"node_modules/detect-libc": {
|
|
3347
|
+
"version": "1.0.3",
|
|
3348
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz",
|
|
3349
|
+
"integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==",
|
|
3350
|
+
"dev": true,
|
|
3351
|
+
"license": "Apache-2.0",
|
|
3352
|
+
"optional": true,
|
|
3353
|
+
"bin": {
|
|
3354
|
+
"detect-libc": "bin/detect-libc.js"
|
|
3355
|
+
},
|
|
3356
|
+
"engines": {
|
|
3357
|
+
"node": ">=0.10"
|
|
3358
|
+
}
|
|
3359
|
+
},
|
|
2996
3360
|
"node_modules/detect-node": {
|
|
2997
3361
|
"version": "2.1.0",
|
|
2998
3362
|
"resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz",
|
|
@@ -3322,19 +3686,20 @@
|
|
|
3322
3686
|
}
|
|
3323
3687
|
},
|
|
3324
3688
|
"node_modules/eslint": {
|
|
3325
|
-
"version": "9.
|
|
3326
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.
|
|
3327
|
-
"integrity": "sha512-
|
|
3689
|
+
"version": "9.33.0",
|
|
3690
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.33.0.tgz",
|
|
3691
|
+
"integrity": "sha512-TS9bTNIryDzStCpJN93aC5VRSW3uTx9sClUn4B87pwiCaJh220otoI0X8mJKr+VcPtniMdN8GKjlwgWGUv5ZKA==",
|
|
3328
3692
|
"dev": true,
|
|
3693
|
+
"license": "MIT",
|
|
3329
3694
|
"dependencies": {
|
|
3330
3695
|
"@eslint-community/eslint-utils": "^4.2.0",
|
|
3331
3696
|
"@eslint-community/regexpp": "^4.12.1",
|
|
3332
3697
|
"@eslint/config-array": "^0.21.0",
|
|
3333
|
-
"@eslint/config-helpers": "^0.3.
|
|
3334
|
-
"@eslint/core": "^0.15.
|
|
3698
|
+
"@eslint/config-helpers": "^0.3.1",
|
|
3699
|
+
"@eslint/core": "^0.15.2",
|
|
3335
3700
|
"@eslint/eslintrc": "^3.3.1",
|
|
3336
|
-
"@eslint/js": "9.
|
|
3337
|
-
"@eslint/plugin-kit": "^0.3.
|
|
3701
|
+
"@eslint/js": "9.33.0",
|
|
3702
|
+
"@eslint/plugin-kit": "^0.3.5",
|
|
3338
3703
|
"@humanfs/node": "^0.16.6",
|
|
3339
3704
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
3340
3705
|
"@humanwhocodes/retry": "^0.4.2",
|
|
@@ -3694,6 +4059,20 @@
|
|
|
3694
4059
|
"node": ">=16.0.0"
|
|
3695
4060
|
}
|
|
3696
4061
|
},
|
|
4062
|
+
"node_modules/fill-range": {
|
|
4063
|
+
"version": "7.1.1",
|
|
4064
|
+
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
|
|
4065
|
+
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
|
|
4066
|
+
"dev": true,
|
|
4067
|
+
"license": "MIT",
|
|
4068
|
+
"optional": true,
|
|
4069
|
+
"dependencies": {
|
|
4070
|
+
"to-regex-range": "^5.0.1"
|
|
4071
|
+
},
|
|
4072
|
+
"engines": {
|
|
4073
|
+
"node": ">=8"
|
|
4074
|
+
}
|
|
4075
|
+
},
|
|
3697
4076
|
"node_modules/finalhandler": {
|
|
3698
4077
|
"version": "2.1.0",
|
|
3699
4078
|
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.0.tgz",
|
|
@@ -4161,6 +4540,37 @@
|
|
|
4161
4540
|
"node": ">= 0.8"
|
|
4162
4541
|
}
|
|
4163
4542
|
},
|
|
4543
|
+
"node_modules/i18next": {
|
|
4544
|
+
"version": "25.4.0",
|
|
4545
|
+
"resolved": "https://registry.npmjs.org/i18next/-/i18next-25.4.0.tgz",
|
|
4546
|
+
"integrity": "sha512-UH5aiamXsO3cfrZFurCHiB6YSs3C+s+XY9UaJllMMSbmaoXILxFgqDEZu4NbfzJFjmUo3BNMa++Rjkr3ofjfLw==",
|
|
4547
|
+
"funding": [
|
|
4548
|
+
{
|
|
4549
|
+
"type": "individual",
|
|
4550
|
+
"url": "https://locize.com"
|
|
4551
|
+
},
|
|
4552
|
+
{
|
|
4553
|
+
"type": "individual",
|
|
4554
|
+
"url": "https://locize.com/i18next.html"
|
|
4555
|
+
},
|
|
4556
|
+
{
|
|
4557
|
+
"type": "individual",
|
|
4558
|
+
"url": "https://www.i18next.com/how-to/faq#i18next-is-awesome.-how-can-i-support-the-project"
|
|
4559
|
+
}
|
|
4560
|
+
],
|
|
4561
|
+
"license": "MIT",
|
|
4562
|
+
"dependencies": {
|
|
4563
|
+
"@babel/runtime": "^7.27.6"
|
|
4564
|
+
},
|
|
4565
|
+
"peerDependencies": {
|
|
4566
|
+
"typescript": "^5"
|
|
4567
|
+
},
|
|
4568
|
+
"peerDependenciesMeta": {
|
|
4569
|
+
"typescript": {
|
|
4570
|
+
"optional": true
|
|
4571
|
+
}
|
|
4572
|
+
}
|
|
4573
|
+
},
|
|
4164
4574
|
"node_modules/iconv-lite": {
|
|
4165
4575
|
"version": "0.6.3",
|
|
4166
4576
|
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
|
|
@@ -4466,6 +4876,17 @@
|
|
|
4466
4876
|
"url": "https://github.com/sponsors/ljharb"
|
|
4467
4877
|
}
|
|
4468
4878
|
},
|
|
4879
|
+
"node_modules/is-number": {
|
|
4880
|
+
"version": "7.0.0",
|
|
4881
|
+
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
|
4882
|
+
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
|
4883
|
+
"dev": true,
|
|
4884
|
+
"license": "MIT",
|
|
4885
|
+
"optional": true,
|
|
4886
|
+
"engines": {
|
|
4887
|
+
"node": ">=0.12.0"
|
|
4888
|
+
}
|
|
4889
|
+
},
|
|
4469
4890
|
"node_modules/is-number-object": {
|
|
4470
4891
|
"version": "1.1.1",
|
|
4471
4892
|
"resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz",
|
|
@@ -4900,6 +5321,35 @@
|
|
|
4900
5321
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
4901
5322
|
}
|
|
4902
5323
|
},
|
|
5324
|
+
"node_modules/micromatch": {
|
|
5325
|
+
"version": "4.0.8",
|
|
5326
|
+
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
|
|
5327
|
+
"integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
|
|
5328
|
+
"dev": true,
|
|
5329
|
+
"license": "MIT",
|
|
5330
|
+
"optional": true,
|
|
5331
|
+
"dependencies": {
|
|
5332
|
+
"braces": "^3.0.3",
|
|
5333
|
+
"picomatch": "^2.3.1"
|
|
5334
|
+
},
|
|
5335
|
+
"engines": {
|
|
5336
|
+
"node": ">=8.6"
|
|
5337
|
+
}
|
|
5338
|
+
},
|
|
5339
|
+
"node_modules/micromatch/node_modules/picomatch": {
|
|
5340
|
+
"version": "2.3.1",
|
|
5341
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
|
5342
|
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
|
5343
|
+
"dev": true,
|
|
5344
|
+
"license": "MIT",
|
|
5345
|
+
"optional": true,
|
|
5346
|
+
"engines": {
|
|
5347
|
+
"node": ">=8.6"
|
|
5348
|
+
},
|
|
5349
|
+
"funding": {
|
|
5350
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
5351
|
+
}
|
|
5352
|
+
},
|
|
4903
5353
|
"node_modules/microseconds": {
|
|
4904
5354
|
"version": "0.2.0",
|
|
4905
5355
|
"resolved": "https://registry.npmjs.org/microseconds/-/microseconds-0.2.0.tgz",
|
|
@@ -5000,6 +5450,14 @@
|
|
|
5000
5450
|
"integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
|
|
5001
5451
|
"dev": true
|
|
5002
5452
|
},
|
|
5453
|
+
"node_modules/node-addon-api": {
|
|
5454
|
+
"version": "7.1.1",
|
|
5455
|
+
"resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz",
|
|
5456
|
+
"integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
|
|
5457
|
+
"dev": true,
|
|
5458
|
+
"license": "MIT",
|
|
5459
|
+
"optional": true
|
|
5460
|
+
},
|
|
5003
5461
|
"node_modules/node-releases": {
|
|
5004
5462
|
"version": "2.0.19",
|
|
5005
5463
|
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
|
|
@@ -5876,9 +6334,10 @@
|
|
|
5876
6334
|
}
|
|
5877
6335
|
},
|
|
5878
6336
|
"node_modules/react-router": {
|
|
5879
|
-
"version": "7.
|
|
5880
|
-
"resolved": "https://registry.npmjs.org/react-router/-/react-router-7.
|
|
5881
|
-
"integrity": "sha512-
|
|
6337
|
+
"version": "7.8.1",
|
|
6338
|
+
"resolved": "https://registry.npmjs.org/react-router/-/react-router-7.8.1.tgz",
|
|
6339
|
+
"integrity": "sha512-5cy/M8DHcG51/KUIka1nfZ2QeylS4PJRs6TT8I4PF5axVsI5JUxp0hC0NZ/AEEj8Vw7xsEoD7L/6FY+zoYaOGA==",
|
|
6340
|
+
"license": "MIT",
|
|
5882
6341
|
"dependencies": {
|
|
5883
6342
|
"cookie": "^1.0.1",
|
|
5884
6343
|
"set-cookie-parser": "^2.6.0"
|
|
@@ -5897,12 +6356,13 @@
|
|
|
5897
6356
|
}
|
|
5898
6357
|
},
|
|
5899
6358
|
"node_modules/react-router-dom": {
|
|
5900
|
-
"version": "7.
|
|
5901
|
-
"resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.
|
|
5902
|
-
"integrity": "sha512-
|
|
6359
|
+
"version": "7.8.1",
|
|
6360
|
+
"resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.8.1.tgz",
|
|
6361
|
+
"integrity": "sha512-NkgBCF3sVgCiAWIlSt89GR2PLaksMpoo3HDCorpRfnCEfdtRPLiuTf+CNXvqZMI5SJLZCLpVCvcZrTdtGW64xQ==",
|
|
6362
|
+
"license": "MIT",
|
|
5903
6363
|
"peer": true,
|
|
5904
6364
|
"dependencies": {
|
|
5905
|
-
"react-router": "7.
|
|
6365
|
+
"react-router": "7.8.1"
|
|
5906
6366
|
},
|
|
5907
6367
|
"engines": {
|
|
5908
6368
|
"node": ">=20.0.0"
|
|
@@ -5930,15 +6390,16 @@
|
|
|
5930
6390
|
}
|
|
5931
6391
|
},
|
|
5932
6392
|
"node_modules/react-switch": {
|
|
5933
|
-
"version": "
|
|
5934
|
-
"resolved": "https://registry.npmjs.org/react-switch/-/react-switch-
|
|
5935
|
-
"integrity": "sha512-
|
|
6393
|
+
"version": "7.1.0",
|
|
6394
|
+
"resolved": "https://registry.npmjs.org/react-switch/-/react-switch-7.1.0.tgz",
|
|
6395
|
+
"integrity": "sha512-4xVeyImZE8QOTDw2FmhWz0iqo2psoRiS7XzdjaZBCIP8Dzo3rT0esHUjLee5WsAPSFXWWl1eVA5arp9n2C6yQA==",
|
|
6396
|
+
"license": "MIT",
|
|
5936
6397
|
"dependencies": {
|
|
5937
6398
|
"prop-types": "^15.7.2"
|
|
5938
6399
|
},
|
|
5939
6400
|
"peerDependencies": {
|
|
5940
|
-
"react": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
|
|
5941
|
-
"react-dom": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
|
|
6401
|
+
"react": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
6402
|
+
"react-dom": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
5942
6403
|
}
|
|
5943
6404
|
},
|
|
5944
6405
|
"node_modules/react-syntax-highlighter": {
|
|
@@ -5995,6 +6456,21 @@
|
|
|
5995
6456
|
"react-dom": ">=16.14.0"
|
|
5996
6457
|
}
|
|
5997
6458
|
},
|
|
6459
|
+
"node_modules/readdirp": {
|
|
6460
|
+
"version": "4.1.2",
|
|
6461
|
+
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
|
|
6462
|
+
"integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
|
|
6463
|
+
"dev": true,
|
|
6464
|
+
"license": "MIT",
|
|
6465
|
+
"optional": true,
|
|
6466
|
+
"engines": {
|
|
6467
|
+
"node": ">= 14.18.0"
|
|
6468
|
+
},
|
|
6469
|
+
"funding": {
|
|
6470
|
+
"type": "individual",
|
|
6471
|
+
"url": "https://paulmillr.com/funding/"
|
|
6472
|
+
}
|
|
6473
|
+
},
|
|
5998
6474
|
"node_modules/reflect.getprototypeof": {
|
|
5999
6475
|
"version": "1.0.10",
|
|
6000
6476
|
"resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz",
|
|
@@ -6381,11 +6857,34 @@
|
|
|
6381
6857
|
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
|
|
6382
6858
|
"peer": true
|
|
6383
6859
|
},
|
|
6860
|
+
"node_modules/sass": {
|
|
6861
|
+
"version": "1.90.0",
|
|
6862
|
+
"resolved": "https://registry.npmjs.org/sass/-/sass-1.90.0.tgz",
|
|
6863
|
+
"integrity": "sha512-9GUyuksjw70uNpb1MTYWsH9MQHOHY6kwfnkafC24+7aOMZn9+rVMBxRbLvw756mrBFbIsFg6Xw9IkR2Fnn3k+Q==",
|
|
6864
|
+
"dev": true,
|
|
6865
|
+
"license": "MIT",
|
|
6866
|
+
"optional": true,
|
|
6867
|
+
"dependencies": {
|
|
6868
|
+
"chokidar": "^4.0.0",
|
|
6869
|
+
"immutable": "^5.0.2",
|
|
6870
|
+
"source-map-js": ">=0.6.2 <2.0.0"
|
|
6871
|
+
},
|
|
6872
|
+
"bin": {
|
|
6873
|
+
"sass": "sass.js"
|
|
6874
|
+
},
|
|
6875
|
+
"engines": {
|
|
6876
|
+
"node": ">=14.0.0"
|
|
6877
|
+
},
|
|
6878
|
+
"optionalDependencies": {
|
|
6879
|
+
"@parcel/watcher": "^2.4.1"
|
|
6880
|
+
}
|
|
6881
|
+
},
|
|
6384
6882
|
"node_modules/sass-embedded": {
|
|
6385
|
-
"version": "1.
|
|
6386
|
-
"resolved": "https://registry.npmjs.org/sass-embedded/-/sass-embedded-1.
|
|
6387
|
-
"integrity": "sha512-
|
|
6883
|
+
"version": "1.90.0",
|
|
6884
|
+
"resolved": "https://registry.npmjs.org/sass-embedded/-/sass-embedded-1.90.0.tgz",
|
|
6885
|
+
"integrity": "sha512-XP1EltyLLfuU5FsGVjSz8PcT925oA3rDnJTWOEBHR42k62ZEbKTcZ4gVlFwKi0Ggzi5E8v1K2BplD8ELHwusYg==",
|
|
6388
6886
|
"dev": true,
|
|
6887
|
+
"license": "MIT",
|
|
6389
6888
|
"dependencies": {
|
|
6390
6889
|
"@bufbuild/protobuf": "^2.5.0",
|
|
6391
6890
|
"buffer-builder": "^0.2.0",
|
|
@@ -6403,32 +6902,52 @@
|
|
|
6403
6902
|
"node": ">=16.0.0"
|
|
6404
6903
|
},
|
|
6405
6904
|
"optionalDependencies": {
|
|
6406
|
-
"sass-embedded-
|
|
6407
|
-
"sass-embedded-android-
|
|
6408
|
-
"sass-embedded-android-
|
|
6409
|
-
"sass-embedded-android-
|
|
6410
|
-
"sass-embedded-
|
|
6411
|
-
"sass-embedded-darwin-
|
|
6412
|
-
"sass-embedded-
|
|
6413
|
-
"sass-embedded-linux-
|
|
6414
|
-
"sass-embedded-linux-
|
|
6415
|
-
"sass-embedded-linux-musl-
|
|
6416
|
-
"sass-embedded-linux-musl-
|
|
6417
|
-
"sass-embedded-linux-musl-
|
|
6418
|
-
"sass-embedded-linux-
|
|
6419
|
-
"sass-embedded-linux-
|
|
6420
|
-
"sass-embedded-
|
|
6421
|
-
"sass-embedded-
|
|
6905
|
+
"sass-embedded-all-unknown": "1.90.0",
|
|
6906
|
+
"sass-embedded-android-arm": "1.90.0",
|
|
6907
|
+
"sass-embedded-android-arm64": "1.90.0",
|
|
6908
|
+
"sass-embedded-android-riscv64": "1.90.0",
|
|
6909
|
+
"sass-embedded-android-x64": "1.90.0",
|
|
6910
|
+
"sass-embedded-darwin-arm64": "1.90.0",
|
|
6911
|
+
"sass-embedded-darwin-x64": "1.90.0",
|
|
6912
|
+
"sass-embedded-linux-arm": "1.90.0",
|
|
6913
|
+
"sass-embedded-linux-arm64": "1.90.0",
|
|
6914
|
+
"sass-embedded-linux-musl-arm": "1.90.0",
|
|
6915
|
+
"sass-embedded-linux-musl-arm64": "1.90.0",
|
|
6916
|
+
"sass-embedded-linux-musl-riscv64": "1.90.0",
|
|
6917
|
+
"sass-embedded-linux-musl-x64": "1.90.0",
|
|
6918
|
+
"sass-embedded-linux-riscv64": "1.90.0",
|
|
6919
|
+
"sass-embedded-linux-x64": "1.90.0",
|
|
6920
|
+
"sass-embedded-unknown-all": "1.90.0",
|
|
6921
|
+
"sass-embedded-win32-arm64": "1.90.0",
|
|
6922
|
+
"sass-embedded-win32-x64": "1.90.0"
|
|
6923
|
+
}
|
|
6924
|
+
},
|
|
6925
|
+
"node_modules/sass-embedded-all-unknown": {
|
|
6926
|
+
"version": "1.90.0",
|
|
6927
|
+
"resolved": "https://registry.npmjs.org/sass-embedded-all-unknown/-/sass-embedded-all-unknown-1.90.0.tgz",
|
|
6928
|
+
"integrity": "sha512-/n7jTQvI+hftDDrHzK19G4pxfDzOhtjuQO1K54ui1pT2S0sWfWDjCYUbQgtWQ6FO7g5qWS0hgmrWdc7fmS3rgA==",
|
|
6929
|
+
"cpu": [
|
|
6930
|
+
"!arm",
|
|
6931
|
+
"!arm64",
|
|
6932
|
+
"!riscv64",
|
|
6933
|
+
"!x64"
|
|
6934
|
+
],
|
|
6935
|
+
"dev": true,
|
|
6936
|
+
"license": "MIT",
|
|
6937
|
+
"optional": true,
|
|
6938
|
+
"dependencies": {
|
|
6939
|
+
"sass": "1.90.0"
|
|
6422
6940
|
}
|
|
6423
6941
|
},
|
|
6424
6942
|
"node_modules/sass-embedded-android-arm": {
|
|
6425
|
-
"version": "1.
|
|
6426
|
-
"resolved": "https://registry.npmjs.org/sass-embedded-android-arm/-/sass-embedded-android-arm-1.
|
|
6427
|
-
"integrity": "sha512-
|
|
6943
|
+
"version": "1.90.0",
|
|
6944
|
+
"resolved": "https://registry.npmjs.org/sass-embedded-android-arm/-/sass-embedded-android-arm-1.90.0.tgz",
|
|
6945
|
+
"integrity": "sha512-usF6kVJQWa1CMgPH1nCT1y8KEmAT2fzB00dDIPBYHq8U5VZLCihi2bJRP5U9NlcwP1TlKGKCjwsbIdSjDKfecg==",
|
|
6428
6946
|
"cpu": [
|
|
6429
6947
|
"arm"
|
|
6430
6948
|
],
|
|
6431
6949
|
"dev": true,
|
|
6950
|
+
"license": "MIT",
|
|
6432
6951
|
"optional": true,
|
|
6433
6952
|
"os": [
|
|
6434
6953
|
"android"
|
|
@@ -6438,13 +6957,14 @@
|
|
|
6438
6957
|
}
|
|
6439
6958
|
},
|
|
6440
6959
|
"node_modules/sass-embedded-android-arm64": {
|
|
6441
|
-
"version": "1.
|
|
6442
|
-
"resolved": "https://registry.npmjs.org/sass-embedded-android-arm64/-/sass-embedded-android-arm64-1.
|
|
6443
|
-
"integrity": "sha512
|
|
6960
|
+
"version": "1.90.0",
|
|
6961
|
+
"resolved": "https://registry.npmjs.org/sass-embedded-android-arm64/-/sass-embedded-android-arm64-1.90.0.tgz",
|
|
6962
|
+
"integrity": "sha512-bkTlewzWksa6Sj4Zs1CWiutnvUbsO3xuYh2QBRknXsOtuMlfTPoXnwhCnyE4lSvUxw2qxSbv+NdQev9qMfsBgA==",
|
|
6444
6963
|
"cpu": [
|
|
6445
6964
|
"arm64"
|
|
6446
6965
|
],
|
|
6447
6966
|
"dev": true,
|
|
6967
|
+
"license": "MIT",
|
|
6448
6968
|
"optional": true,
|
|
6449
6969
|
"os": [
|
|
6450
6970
|
"android"
|
|
@@ -6454,13 +6974,14 @@
|
|
|
6454
6974
|
}
|
|
6455
6975
|
},
|
|
6456
6976
|
"node_modules/sass-embedded-android-riscv64": {
|
|
6457
|
-
"version": "1.
|
|
6458
|
-
"resolved": "https://registry.npmjs.org/sass-embedded-android-riscv64/-/sass-embedded-android-riscv64-1.
|
|
6459
|
-
"integrity": "sha512-
|
|
6977
|
+
"version": "1.90.0",
|
|
6978
|
+
"resolved": "https://registry.npmjs.org/sass-embedded-android-riscv64/-/sass-embedded-android-riscv64-1.90.0.tgz",
|
|
6979
|
+
"integrity": "sha512-bpqCIOaX+0Lou/BNJ4iJIKbWbVaYXFdg26C3gG6gxxKZRzp/6OYCxHrIQDwhKz6YC8Q5rwNPMpfDVYbWPcgroA==",
|
|
6460
6980
|
"cpu": [
|
|
6461
6981
|
"riscv64"
|
|
6462
6982
|
],
|
|
6463
6983
|
"dev": true,
|
|
6984
|
+
"license": "MIT",
|
|
6464
6985
|
"optional": true,
|
|
6465
6986
|
"os": [
|
|
6466
6987
|
"android"
|
|
@@ -6470,13 +6991,14 @@
|
|
|
6470
6991
|
}
|
|
6471
6992
|
},
|
|
6472
6993
|
"node_modules/sass-embedded-android-x64": {
|
|
6473
|
-
"version": "1.
|
|
6474
|
-
"resolved": "https://registry.npmjs.org/sass-embedded-android-x64/-/sass-embedded-android-x64-1.
|
|
6475
|
-
"integrity": "sha512-
|
|
6994
|
+
"version": "1.90.0",
|
|
6995
|
+
"resolved": "https://registry.npmjs.org/sass-embedded-android-x64/-/sass-embedded-android-x64-1.90.0.tgz",
|
|
6996
|
+
"integrity": "sha512-GNxVKnCMd/p2icZ+Q4mhvNk19NrLXq1C4guiqjrycHYQLEnxRkjbW1QXYiL+XyDn4e+Bcq0knzG0I9pMuNZxkg==",
|
|
6476
6997
|
"cpu": [
|
|
6477
6998
|
"x64"
|
|
6478
6999
|
],
|
|
6479
7000
|
"dev": true,
|
|
7001
|
+
"license": "MIT",
|
|
6480
7002
|
"optional": true,
|
|
6481
7003
|
"os": [
|
|
6482
7004
|
"android"
|
|
@@ -6486,13 +7008,14 @@
|
|
|
6486
7008
|
}
|
|
6487
7009
|
},
|
|
6488
7010
|
"node_modules/sass-embedded-darwin-arm64": {
|
|
6489
|
-
"version": "1.
|
|
6490
|
-
"resolved": "https://registry.npmjs.org/sass-embedded-darwin-arm64/-/sass-embedded-darwin-arm64-1.
|
|
6491
|
-
"integrity": "sha512-
|
|
7011
|
+
"version": "1.90.0",
|
|
7012
|
+
"resolved": "https://registry.npmjs.org/sass-embedded-darwin-arm64/-/sass-embedded-darwin-arm64-1.90.0.tgz",
|
|
7013
|
+
"integrity": "sha512-qr4KBMJfBA+lzXiWnP00qzpLzHQzGd1OSK3VHcUFjZ8l7VOYf2R7Tc3fcTLhpaNPMJtTK0jrk8rFqBvsiZExnA==",
|
|
6492
7014
|
"cpu": [
|
|
6493
7015
|
"arm64"
|
|
6494
7016
|
],
|
|
6495
7017
|
"dev": true,
|
|
7018
|
+
"license": "MIT",
|
|
6496
7019
|
"optional": true,
|
|
6497
7020
|
"os": [
|
|
6498
7021
|
"darwin"
|
|
@@ -6502,13 +7025,14 @@
|
|
|
6502
7025
|
}
|
|
6503
7026
|
},
|
|
6504
7027
|
"node_modules/sass-embedded-darwin-x64": {
|
|
6505
|
-
"version": "1.
|
|
6506
|
-
"resolved": "https://registry.npmjs.org/sass-embedded-darwin-x64/-/sass-embedded-darwin-x64-1.
|
|
6507
|
-
"integrity": "sha512-
|
|
7028
|
+
"version": "1.90.0",
|
|
7029
|
+
"resolved": "https://registry.npmjs.org/sass-embedded-darwin-x64/-/sass-embedded-darwin-x64-1.90.0.tgz",
|
|
7030
|
+
"integrity": "sha512-z2nr1nNqtWDLVRwTbHtL7zriK90U7O/Gb15UaCSMYeAz9Y+wog5s/sDEKm0+GsVdzzkaCaMZRWGN4jTilnUwmQ==",
|
|
6508
7031
|
"cpu": [
|
|
6509
7032
|
"x64"
|
|
6510
7033
|
],
|
|
6511
7034
|
"dev": true,
|
|
7035
|
+
"license": "MIT",
|
|
6512
7036
|
"optional": true,
|
|
6513
7037
|
"os": [
|
|
6514
7038
|
"darwin"
|
|
@@ -6518,13 +7042,14 @@
|
|
|
6518
7042
|
}
|
|
6519
7043
|
},
|
|
6520
7044
|
"node_modules/sass-embedded-linux-arm": {
|
|
6521
|
-
"version": "1.
|
|
6522
|
-
"resolved": "https://registry.npmjs.org/sass-embedded-linux-arm/-/sass-embedded-linux-arm-1.
|
|
6523
|
-
"integrity": "sha512-
|
|
7045
|
+
"version": "1.90.0",
|
|
7046
|
+
"resolved": "https://registry.npmjs.org/sass-embedded-linux-arm/-/sass-embedded-linux-arm-1.90.0.tgz",
|
|
7047
|
+
"integrity": "sha512-FeBxI5Q2HvM3CCadcEcQgvWbDPVs2YEF0PZ87fbAVTCG8dV+iNnQreSz7GRJroknpvbRhm5t2gedvcgmTnPb2Q==",
|
|
6524
7048
|
"cpu": [
|
|
6525
7049
|
"arm"
|
|
6526
7050
|
],
|
|
6527
7051
|
"dev": true,
|
|
7052
|
+
"license": "MIT",
|
|
6528
7053
|
"optional": true,
|
|
6529
7054
|
"os": [
|
|
6530
7055
|
"linux"
|
|
@@ -6534,13 +7059,14 @@
|
|
|
6534
7059
|
}
|
|
6535
7060
|
},
|
|
6536
7061
|
"node_modules/sass-embedded-linux-arm64": {
|
|
6537
|
-
"version": "1.
|
|
6538
|
-
"resolved": "https://registry.npmjs.org/sass-embedded-linux-arm64/-/sass-embedded-linux-arm64-1.
|
|
6539
|
-
"integrity": "sha512-
|
|
7062
|
+
"version": "1.90.0",
|
|
7063
|
+
"resolved": "https://registry.npmjs.org/sass-embedded-linux-arm64/-/sass-embedded-linux-arm64-1.90.0.tgz",
|
|
7064
|
+
"integrity": "sha512-SPMcGZuP71Fj8btCGtlBnv8h8DAbJn8EQfLzXs9oo6NGFFLVjNGiFpqGfgtUV6DLWCuaRyEFeViO7wZow/vKGQ==",
|
|
6540
7065
|
"cpu": [
|
|
6541
7066
|
"arm64"
|
|
6542
7067
|
],
|
|
6543
7068
|
"dev": true,
|
|
7069
|
+
"license": "MIT",
|
|
6544
7070
|
"optional": true,
|
|
6545
7071
|
"os": [
|
|
6546
7072
|
"linux"
|
|
@@ -6550,13 +7076,14 @@
|
|
|
6550
7076
|
}
|
|
6551
7077
|
},
|
|
6552
7078
|
"node_modules/sass-embedded-linux-musl-arm": {
|
|
6553
|
-
"version": "1.
|
|
6554
|
-
"resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-arm/-/sass-embedded-linux-musl-arm-1.
|
|
6555
|
-
"integrity": "sha512-
|
|
7079
|
+
"version": "1.90.0",
|
|
7080
|
+
"resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-arm/-/sass-embedded-linux-musl-arm-1.90.0.tgz",
|
|
7081
|
+
"integrity": "sha512-EB2z0fUXdUdvSoddf4DzdZQkD/xyreD72gwAi8YScgUvR4HMXI7bLcK/n78Rft6OnqvV8090hjC8FsLDo3x5xQ==",
|
|
6556
7082
|
"cpu": [
|
|
6557
7083
|
"arm"
|
|
6558
7084
|
],
|
|
6559
7085
|
"dev": true,
|
|
7086
|
+
"license": "MIT",
|
|
6560
7087
|
"optional": true,
|
|
6561
7088
|
"os": [
|
|
6562
7089
|
"linux"
|
|
@@ -6566,13 +7093,14 @@
|
|
|
6566
7093
|
}
|
|
6567
7094
|
},
|
|
6568
7095
|
"node_modules/sass-embedded-linux-musl-arm64": {
|
|
6569
|
-
"version": "1.
|
|
6570
|
-
"resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-arm64/-/sass-embedded-linux-musl-arm64-1.
|
|
6571
|
-
"integrity": "sha512-
|
|
7096
|
+
"version": "1.90.0",
|
|
7097
|
+
"resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-arm64/-/sass-embedded-linux-musl-arm64-1.90.0.tgz",
|
|
7098
|
+
"integrity": "sha512-xLH7+PFq763MoEm3vI7hQk5E+nStiLWbijHEYW/tEtCbcQIphgzSkDItEezxXew3dU4EJ1jqrBUySPdoXFLqWA==",
|
|
6572
7099
|
"cpu": [
|
|
6573
7100
|
"arm64"
|
|
6574
7101
|
],
|
|
6575
7102
|
"dev": true,
|
|
7103
|
+
"license": "MIT",
|
|
6576
7104
|
"optional": true,
|
|
6577
7105
|
"os": [
|
|
6578
7106
|
"linux"
|
|
@@ -6582,13 +7110,14 @@
|
|
|
6582
7110
|
}
|
|
6583
7111
|
},
|
|
6584
7112
|
"node_modules/sass-embedded-linux-musl-riscv64": {
|
|
6585
|
-
"version": "1.
|
|
6586
|
-
"resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-riscv64/-/sass-embedded-linux-musl-riscv64-1.
|
|
6587
|
-
"integrity": "sha512-
|
|
7113
|
+
"version": "1.90.0",
|
|
7114
|
+
"resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-riscv64/-/sass-embedded-linux-musl-riscv64-1.90.0.tgz",
|
|
7115
|
+
"integrity": "sha512-L21UkOgnSrD+ERF+jo1IWneGv40t0ap9+3cI+wZWYhQS5MkxponhT9QaNU57JEDJwB9mOl01LVw14opz4SN+VQ==",
|
|
6588
7116
|
"cpu": [
|
|
6589
7117
|
"riscv64"
|
|
6590
7118
|
],
|
|
6591
7119
|
"dev": true,
|
|
7120
|
+
"license": "MIT",
|
|
6592
7121
|
"optional": true,
|
|
6593
7122
|
"os": [
|
|
6594
7123
|
"linux"
|
|
@@ -6598,13 +7127,14 @@
|
|
|
6598
7127
|
}
|
|
6599
7128
|
},
|
|
6600
7129
|
"node_modules/sass-embedded-linux-musl-x64": {
|
|
6601
|
-
"version": "1.
|
|
6602
|
-
"resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-x64/-/sass-embedded-linux-musl-x64-1.
|
|
6603
|
-
"integrity": "sha512-
|
|
7130
|
+
"version": "1.90.0",
|
|
7131
|
+
"resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-x64/-/sass-embedded-linux-musl-x64-1.90.0.tgz",
|
|
7132
|
+
"integrity": "sha512-NeAycQlsdhFdnIeSmRmScYUyCd+uE+x15NLFunbF8M0PgCKurrUhaxgGKSuBbaK56FpxarKOHCqcOrWbemIGzQ==",
|
|
6604
7133
|
"cpu": [
|
|
6605
7134
|
"x64"
|
|
6606
7135
|
],
|
|
6607
7136
|
"dev": true,
|
|
7137
|
+
"license": "MIT",
|
|
6608
7138
|
"optional": true,
|
|
6609
7139
|
"os": [
|
|
6610
7140
|
"linux"
|
|
@@ -6614,13 +7144,14 @@
|
|
|
6614
7144
|
}
|
|
6615
7145
|
},
|
|
6616
7146
|
"node_modules/sass-embedded-linux-riscv64": {
|
|
6617
|
-
"version": "1.
|
|
6618
|
-
"resolved": "https://registry.npmjs.org/sass-embedded-linux-riscv64/-/sass-embedded-linux-riscv64-1.
|
|
6619
|
-
"integrity": "sha512-
|
|
7147
|
+
"version": "1.90.0",
|
|
7148
|
+
"resolved": "https://registry.npmjs.org/sass-embedded-linux-riscv64/-/sass-embedded-linux-riscv64-1.90.0.tgz",
|
|
7149
|
+
"integrity": "sha512-lJopaQhW8S+kaQ61vMqq3c+bOurcf9RdZf2EmzQYpc2y1vT5cWfRNrRkbAgO/23IQxsk/fq3UIUnsjnyQmi6MA==",
|
|
6620
7150
|
"cpu": [
|
|
6621
7151
|
"riscv64"
|
|
6622
7152
|
],
|
|
6623
7153
|
"dev": true,
|
|
7154
|
+
"license": "MIT",
|
|
6624
7155
|
"optional": true,
|
|
6625
7156
|
"os": [
|
|
6626
7157
|
"linux"
|
|
@@ -6630,13 +7161,14 @@
|
|
|
6630
7161
|
}
|
|
6631
7162
|
},
|
|
6632
7163
|
"node_modules/sass-embedded-linux-x64": {
|
|
6633
|
-
"version": "1.
|
|
6634
|
-
"resolved": "https://registry.npmjs.org/sass-embedded-linux-x64/-/sass-embedded-linux-x64-1.
|
|
6635
|
-
"integrity": "sha512-
|
|
7164
|
+
"version": "1.90.0",
|
|
7165
|
+
"resolved": "https://registry.npmjs.org/sass-embedded-linux-x64/-/sass-embedded-linux-x64-1.90.0.tgz",
|
|
7166
|
+
"integrity": "sha512-Cc061gBfMPwH9rN7neQaH36cvOQC+dFMSGIeX5qUOhrEL4Ng51iqBV6aI4RIB1jCFGth6eDydVRN1VdV9qom8A==",
|
|
6636
7167
|
"cpu": [
|
|
6637
7168
|
"x64"
|
|
6638
7169
|
],
|
|
6639
7170
|
"dev": true,
|
|
7171
|
+
"license": "MIT",
|
|
6640
7172
|
"optional": true,
|
|
6641
7173
|
"os": [
|
|
6642
7174
|
"linux"
|
|
@@ -6645,14 +7177,32 @@
|
|
|
6645
7177
|
"node": ">=14.0.0"
|
|
6646
7178
|
}
|
|
6647
7179
|
},
|
|
7180
|
+
"node_modules/sass-embedded-unknown-all": {
|
|
7181
|
+
"version": "1.90.0",
|
|
7182
|
+
"resolved": "https://registry.npmjs.org/sass-embedded-unknown-all/-/sass-embedded-unknown-all-1.90.0.tgz",
|
|
7183
|
+
"integrity": "sha512-DBGzHVCJDqtjTHZFohush9YTxd4ZxhIygIRTNRXnA0359woF9Z8AS7/YxfzwkqrTX5durSJa6ZamGFYVLoRphQ==",
|
|
7184
|
+
"dev": true,
|
|
7185
|
+
"license": "MIT",
|
|
7186
|
+
"optional": true,
|
|
7187
|
+
"os": [
|
|
7188
|
+
"!android",
|
|
7189
|
+
"!darwin",
|
|
7190
|
+
"!linux",
|
|
7191
|
+
"!win32"
|
|
7192
|
+
],
|
|
7193
|
+
"dependencies": {
|
|
7194
|
+
"sass": "1.90.0"
|
|
7195
|
+
}
|
|
7196
|
+
},
|
|
6648
7197
|
"node_modules/sass-embedded-win32-arm64": {
|
|
6649
|
-
"version": "1.
|
|
6650
|
-
"resolved": "https://registry.npmjs.org/sass-embedded-win32-arm64/-/sass-embedded-win32-arm64-1.
|
|
6651
|
-
"integrity": "sha512-
|
|
7198
|
+
"version": "1.90.0",
|
|
7199
|
+
"resolved": "https://registry.npmjs.org/sass-embedded-win32-arm64/-/sass-embedded-win32-arm64-1.90.0.tgz",
|
|
7200
|
+
"integrity": "sha512-c3/vL/CATnaW3x/6kcNbCROEOUU7zvJpIURp7M9664GJj08/gLPRWKNruw0OkAPQ3C5TTQz7+/fQWEpRA6qmvA==",
|
|
6652
7201
|
"cpu": [
|
|
6653
7202
|
"arm64"
|
|
6654
7203
|
],
|
|
6655
7204
|
"dev": true,
|
|
7205
|
+
"license": "MIT",
|
|
6656
7206
|
"optional": true,
|
|
6657
7207
|
"os": [
|
|
6658
7208
|
"win32"
|
|
@@ -6662,13 +7212,14 @@
|
|
|
6662
7212
|
}
|
|
6663
7213
|
},
|
|
6664
7214
|
"node_modules/sass-embedded-win32-x64": {
|
|
6665
|
-
"version": "1.
|
|
6666
|
-
"resolved": "https://registry.npmjs.org/sass-embedded-win32-x64/-/sass-embedded-win32-x64-1.
|
|
6667
|
-
"integrity": "sha512-
|
|
7215
|
+
"version": "1.90.0",
|
|
7216
|
+
"resolved": "https://registry.npmjs.org/sass-embedded-win32-x64/-/sass-embedded-win32-x64-1.90.0.tgz",
|
|
7217
|
+
"integrity": "sha512-PFwdW7AYtCkwi3NfWFeexvIZEJ0nuShp8Bjjc3px756+18yYwBWa78F4TGdIQmJfpYKBhgkVjFOctwq+NCHntA==",
|
|
6668
7218
|
"cpu": [
|
|
6669
7219
|
"x64"
|
|
6670
7220
|
],
|
|
6671
7221
|
"dev": true,
|
|
7222
|
+
"license": "MIT",
|
|
6672
7223
|
"optional": true,
|
|
6673
7224
|
"os": [
|
|
6674
7225
|
"win32"
|
|
@@ -7113,6 +7664,20 @@
|
|
|
7113
7664
|
"@popperjs/core": "^2.9.0"
|
|
7114
7665
|
}
|
|
7115
7666
|
},
|
|
7667
|
+
"node_modules/to-regex-range": {
|
|
7668
|
+
"version": "5.0.1",
|
|
7669
|
+
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
|
7670
|
+
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
|
7671
|
+
"dev": true,
|
|
7672
|
+
"license": "MIT",
|
|
7673
|
+
"optional": true,
|
|
7674
|
+
"dependencies": {
|
|
7675
|
+
"is-number": "^7.0.0"
|
|
7676
|
+
},
|
|
7677
|
+
"engines": {
|
|
7678
|
+
"node": ">=8.0"
|
|
7679
|
+
}
|
|
7680
|
+
},
|
|
7116
7681
|
"node_modules/toidentifier": {
|
|
7117
7682
|
"version": "1.0.1",
|
|
7118
7683
|
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
|