pushwork 1.0.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 +460 -0
- package/dist/browser/browser-sync-engine.d.ts +64 -0
- package/dist/browser/browser-sync-engine.d.ts.map +1 -0
- package/dist/browser/browser-sync-engine.js +303 -0
- package/dist/browser/browser-sync-engine.js.map +1 -0
- package/dist/browser/filesystem-adapter.d.ts +84 -0
- package/dist/browser/filesystem-adapter.d.ts.map +1 -0
- package/dist/browser/filesystem-adapter.js +413 -0
- package/dist/browser/filesystem-adapter.js.map +1 -0
- package/dist/browser/index.d.ts +36 -0
- package/dist/browser/index.d.ts.map +1 -0
- package/dist/browser/index.js +90 -0
- package/dist/browser/index.js.map +1 -0
- package/dist/browser/types.d.ts +70 -0
- package/dist/browser/types.d.ts.map +1 -0
- package/dist/browser/types.js +6 -0
- package/dist/browser/types.js.map +1 -0
- package/dist/cli/commands.d.ts +71 -0
- package/dist/cli/commands.d.ts.map +1 -0
- package/dist/cli/commands.js +794 -0
- package/dist/cli/commands.js.map +1 -0
- package/dist/cli/index.d.ts +2 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +19 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +199 -0
- package/dist/cli.js.map +1 -0
- package/dist/config/index.d.ts +71 -0
- package/dist/config/index.d.ts.map +1 -0
- package/dist/config/index.js +314 -0
- package/dist/config/index.js.map +1 -0
- package/dist/core/change-detection.d.ts +78 -0
- package/dist/core/change-detection.d.ts.map +1 -0
- package/dist/core/change-detection.js +370 -0
- package/dist/core/change-detection.js.map +1 -0
- package/dist/core/index.d.ts +5 -0
- package/dist/core/index.d.ts.map +1 -0
- package/dist/core/index.js +22 -0
- package/dist/core/index.js.map +1 -0
- package/dist/core/isomorphic-snapshot.d.ts +58 -0
- package/dist/core/isomorphic-snapshot.d.ts.map +1 -0
- package/dist/core/isomorphic-snapshot.js +204 -0
- package/dist/core/isomorphic-snapshot.js.map +1 -0
- package/dist/core/move-detection.d.ts +72 -0
- package/dist/core/move-detection.d.ts.map +1 -0
- package/dist/core/move-detection.js +200 -0
- package/dist/core/move-detection.js.map +1 -0
- package/dist/core/snapshot.d.ts +109 -0
- package/dist/core/snapshot.d.ts.map +1 -0
- package/dist/core/snapshot.js +263 -0
- package/dist/core/snapshot.js.map +1 -0
- package/dist/core/sync-engine.d.ts +110 -0
- package/dist/core/sync-engine.d.ts.map +1 -0
- package/dist/core/sync-engine.js +817 -0
- package/dist/core/sync-engine.js.map +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +27 -0
- package/dist/index.js.map +1 -0
- package/dist/platform/browser-filesystem.d.ts +26 -0
- package/dist/platform/browser-filesystem.d.ts.map +1 -0
- package/dist/platform/browser-filesystem.js +91 -0
- package/dist/platform/browser-filesystem.js.map +1 -0
- package/dist/platform/filesystem.d.ts +29 -0
- package/dist/platform/filesystem.d.ts.map +1 -0
- package/dist/platform/filesystem.js +65 -0
- package/dist/platform/filesystem.js.map +1 -0
- package/dist/platform/node-filesystem.d.ts +21 -0
- package/dist/platform/node-filesystem.d.ts.map +1 -0
- package/dist/platform/node-filesystem.js +93 -0
- package/dist/platform/node-filesystem.js.map +1 -0
- package/dist/types/config.d.ts +119 -0
- package/dist/types/config.d.ts.map +1 -0
- package/dist/types/config.js +3 -0
- package/dist/types/config.js.map +1 -0
- package/dist/types/documents.d.ts +70 -0
- package/dist/types/documents.d.ts.map +1 -0
- package/dist/types/documents.js +23 -0
- package/dist/types/documents.js.map +1 -0
- package/dist/types/index.d.ts +4 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +23 -0
- package/dist/types/index.js.map +1 -0
- package/dist/types/snapshot.d.ts +81 -0
- package/dist/types/snapshot.d.ts.map +1 -0
- package/dist/types/snapshot.js +17 -0
- package/dist/types/snapshot.js.map +1 -0
- package/dist/utils/content-similarity.d.ts +53 -0
- package/dist/utils/content-similarity.d.ts.map +1 -0
- package/dist/utils/content-similarity.js +155 -0
- package/dist/utils/content-similarity.js.map +1 -0
- package/dist/utils/content.d.ts +5 -0
- package/dist/utils/content.d.ts.map +1 -0
- package/dist/utils/content.js +30 -0
- package/dist/utils/content.js.map +1 -0
- package/dist/utils/fs-browser.d.ts +57 -0
- package/dist/utils/fs-browser.d.ts.map +1 -0
- package/dist/utils/fs-browser.js +311 -0
- package/dist/utils/fs-browser.js.map +1 -0
- package/dist/utils/fs-node.d.ts +53 -0
- package/dist/utils/fs-node.d.ts.map +1 -0
- package/dist/utils/fs-node.js +220 -0
- package/dist/utils/fs-node.js.map +1 -0
- package/dist/utils/fs.d.ts +62 -0
- package/dist/utils/fs.d.ts.map +1 -0
- package/dist/utils/fs.js +293 -0
- package/dist/utils/fs.js.map +1 -0
- package/dist/utils/index.d.ts +4 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/index.js +23 -0
- package/dist/utils/index.js.map +1 -0
- package/dist/utils/isomorphic.d.ts +29 -0
- package/dist/utils/isomorphic.d.ts.map +1 -0
- package/dist/utils/isomorphic.js +139 -0
- package/dist/utils/isomorphic.js.map +1 -0
- package/dist/utils/mime-types.d.ts +13 -0
- package/dist/utils/mime-types.d.ts.map +1 -0
- package/dist/utils/mime-types.js +240 -0
- package/dist/utils/mime-types.js.map +1 -0
- package/dist/utils/network-sync.d.ts +12 -0
- package/dist/utils/network-sync.d.ts.map +1 -0
- package/dist/utils/network-sync.js +149 -0
- package/dist/utils/network-sync.js.map +1 -0
- package/dist/utils/pure.d.ts +25 -0
- package/dist/utils/pure.d.ts.map +1 -0
- package/dist/utils/pure.js +112 -0
- package/dist/utils/pure.js.map +1 -0
- package/dist/utils/repo-factory.d.ts +11 -0
- package/dist/utils/repo-factory.d.ts.map +1 -0
- package/dist/utils/repo-factory.js +77 -0
- package/dist/utils/repo-factory.js.map +1 -0
- package/package.json +83 -0
- package/src/cli/commands.ts +1053 -0
- package/src/cli/index.ts +2 -0
- package/src/cli.ts +287 -0
- package/src/config/index.ts +334 -0
- package/src/core/change-detection.ts +484 -0
- package/src/core/index.ts +5 -0
- package/src/core/move-detection.ts +269 -0
- package/src/core/snapshot.ts +285 -0
- package/src/core/sync-engine.ts +1167 -0
- package/src/index.ts +14 -0
- package/src/types/config.ts +130 -0
- package/src/types/documents.ts +72 -0
- package/src/types/index.ts +8 -0
- package/src/types/snapshot.ts +88 -0
- package/src/utils/content-similarity.ts +194 -0
- package/src/utils/content.ts +28 -0
- package/src/utils/fs.ts +289 -0
- package/src/utils/index.ts +8 -0
- package/src/utils/mime-types.ts +236 -0
- package/src/utils/network-sync.ts +153 -0
- package/src/utils/repo-factory.ts +58 -0
- package/test/README-TESTING-GAPS.md +174 -0
- package/test/integration/README.md +328 -0
- package/test/integration/clone-test.sh +310 -0
- package/test/integration/conflict-resolution-test.sh +309 -0
- package/test/integration/deletion-behavior-test.sh +487 -0
- package/test/integration/deletion-sync-test-simple.sh +193 -0
- package/test/integration/deletion-sync-test.sh +297 -0
- package/test/integration/exclude-patterns.test.ts +152 -0
- package/test/integration/full-integration-test.sh +363 -0
- package/test/integration/sync-deletion.test.ts +339 -0
- package/test/integration/sync-flow.test.ts +309 -0
- package/test/run-tests.sh +225 -0
- package/test/unit/content-similarity.test.ts +236 -0
- package/test/unit/deletion-behavior.test.ts +260 -0
- package/test/unit/enhanced-mime-detection.test.ts +266 -0
- package/test/unit/snapshot.test.ts +431 -0
- package/test/unit/sync-timing.test.ts +178 -0
- package/test/unit/utils.test.ts +368 -0
- package/tools/browser-sync/README.md +116 -0
- package/tools/browser-sync/package.json +44 -0
- package/tools/browser-sync/patchwork.json +1 -0
- package/tools/browser-sync/pnpm-lock.yaml +4202 -0
- package/tools/browser-sync/src/components/BrowserSyncTool.tsx +599 -0
- package/tools/browser-sync/src/index.ts +20 -0
- package/tools/browser-sync/src/polyfills.ts +31 -0
- package/tools/browser-sync/src/styles.css +290 -0
- package/tools/browser-sync/src/types.ts +27 -0
- package/tools/browser-sync/vite.config.ts +25 -0
- package/tsconfig.json +22 -0
|
@@ -0,0 +1,4202 @@
|
|
|
1
|
+
lockfileVersion: '9.0'
|
|
2
|
+
|
|
3
|
+
settings:
|
|
4
|
+
autoInstallPeers: true
|
|
5
|
+
excludeLinksFromLockfile: false
|
|
6
|
+
|
|
7
|
+
importers:
|
|
8
|
+
|
|
9
|
+
.:
|
|
10
|
+
dependencies:
|
|
11
|
+
'@automerge/automerge-repo':
|
|
12
|
+
specifier: 2.0.0-alpha.23
|
|
13
|
+
version: 2.0.0-alpha.23
|
|
14
|
+
'@automerge/automerge-repo-react-hooks':
|
|
15
|
+
specifier: 2.0.0-alpha.23
|
|
16
|
+
version: 2.0.0-alpha.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
17
|
+
'@patchwork/sdk':
|
|
18
|
+
specifier: file:../../../patchwork/sdk
|
|
19
|
+
version: file:../../../patchwork/sdk(@types/react@18.3.23)
|
|
20
|
+
lucide-react:
|
|
21
|
+
specifier: ^0.460.0
|
|
22
|
+
version: 0.460.0(react@18.3.1)
|
|
23
|
+
pushwork:
|
|
24
|
+
specifier: file:../../
|
|
25
|
+
version: file:../..
|
|
26
|
+
react:
|
|
27
|
+
specifier: ^18.3.1
|
|
28
|
+
version: 18.3.1
|
|
29
|
+
react-dom:
|
|
30
|
+
specifier: ^18.3.1
|
|
31
|
+
version: 18.3.1(react@18.3.1)
|
|
32
|
+
devDependencies:
|
|
33
|
+
'@types/react':
|
|
34
|
+
specifier: ^18.3.3
|
|
35
|
+
version: 18.3.23
|
|
36
|
+
'@vitejs/plugin-react':
|
|
37
|
+
specifier: ^4.3.1
|
|
38
|
+
version: 4.7.0(vite@5.4.19)
|
|
39
|
+
nodemon:
|
|
40
|
+
specifier: ^3.1.9
|
|
41
|
+
version: 3.1.10
|
|
42
|
+
typescript:
|
|
43
|
+
specifier: ^5.2.0
|
|
44
|
+
version: 5.9.2
|
|
45
|
+
vite:
|
|
46
|
+
specifier: ^5.3.4
|
|
47
|
+
version: 5.4.19
|
|
48
|
+
vite-plugin-css-injected-by-js:
|
|
49
|
+
specifier: ^3.5.2
|
|
50
|
+
version: 3.5.2(vite@5.4.19)
|
|
51
|
+
vite-plugin-top-level-await:
|
|
52
|
+
specifier: ^1.4.2
|
|
53
|
+
version: 1.6.0(rollup@4.46.2)(vite@5.4.19)
|
|
54
|
+
vite-plugin-wasm:
|
|
55
|
+
specifier: ^3.3.0
|
|
56
|
+
version: 3.5.0(vite@5.4.19)
|
|
57
|
+
|
|
58
|
+
packages:
|
|
59
|
+
|
|
60
|
+
'@ampproject/remapping@2.3.0':
|
|
61
|
+
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
|
|
62
|
+
engines: {node: '>=6.0.0'}
|
|
63
|
+
|
|
64
|
+
'@automerge/automerge-codemirror@0.1.0':
|
|
65
|
+
resolution: {integrity: sha512-9mQ7aecSlwYOGndAjLbgNk0uOJeKZdxmVNAgllf0SvsBXfeKcbf+NnvhJmRdNYY7CR4AtAw7W++Ew7t1PYs9RQ==}
|
|
66
|
+
|
|
67
|
+
'@automerge/automerge-repo-network-websocket@2.2.0':
|
|
68
|
+
resolution: {integrity: sha512-/WQrEVHEzLYlowDasXu/a34F3vTuLx+XmhLN3JKvPGl8GUs1nPn0ePl1nGXtfMgDsqwo8UgeM5T//oqYtKeQxQ==}
|
|
69
|
+
|
|
70
|
+
'@automerge/automerge-repo-react-hooks@2.0.0-alpha.23':
|
|
71
|
+
resolution: {integrity: sha512-9OOJoRoTJaU8XJ7HF/FEr8tZ/luSh1er64UPXtegn0NnS3Qv/sA/7vTRbicc/LvINT4yy0h3RQoFZXcpduapYA==}
|
|
72
|
+
peerDependencies:
|
|
73
|
+
react: '>18.3.0'
|
|
74
|
+
react-dom: '>18.3.0'
|
|
75
|
+
|
|
76
|
+
'@automerge/automerge-repo-react-hooks@2.2.0':
|
|
77
|
+
resolution: {integrity: sha512-zHP44jXSCmV1DyyKdTKgv8nz7yrdCT7VFXs/QrF3YRhE/3czhhvbXo2zahGvOoM+jryH0eJxHTrJ7jMEtt/Ung==}
|
|
78
|
+
peerDependencies:
|
|
79
|
+
react: ^18.0.0 || ^19.0.0
|
|
80
|
+
react-dom: ^18.0.0 || ^19.0.0
|
|
81
|
+
|
|
82
|
+
'@automerge/automerge-repo-storage-indexeddb@2.2.0':
|
|
83
|
+
resolution: {integrity: sha512-fob5ITgZs36m9ZqCflGsHYjrHUUC1HWCGe0LejLokAfXAk66ia3Pjbpe8IRz99H/Maeny5GpqwQv4/ykAzpMaA==}
|
|
84
|
+
|
|
85
|
+
'@automerge/automerge-repo-storage-nodefs@2.2.0':
|
|
86
|
+
resolution: {integrity: sha512-lhE/qFboqLJgWPDkSc1JvRLhHc7NnLVBnBh2i2+P51vp6t8hu7q4Zt17018sDzFf5KpzJDOhN+cvOsfCJzBzKQ==}
|
|
87
|
+
|
|
88
|
+
'@automerge/automerge-repo@2.0.0-alpha.23':
|
|
89
|
+
resolution: {integrity: sha512-clFswHeGemDUj4slUkZDM7grZAVn5bFq+/IHyboY/2kjYU9qdHwATZm8h/DPO+4ceGyNODS4b2qdNp4YlFlfEg==}
|
|
90
|
+
|
|
91
|
+
'@automerge/automerge-repo@2.2.0':
|
|
92
|
+
resolution: {integrity: sha512-/4cAxnUDPykqdSMJJiJvPlR2VY0JHJnvEoM7fO8qVXwQors34S0VkJEScXRJZExcVhWGhFTwCTWvUbb6hhWQIQ==}
|
|
93
|
+
|
|
94
|
+
'@automerge/automerge@2.2.9':
|
|
95
|
+
resolution: {integrity: sha512-6HM52Ops79hAQBWMg/t0MNfGOdEiXyenQjO9F1hKZq0RWDsMLpPa1SzRy/C4/4UyX67sTHuA5CwBpH34SpfZlA==}
|
|
96
|
+
|
|
97
|
+
'@automerge/automerge@3.0.0':
|
|
98
|
+
resolution: {integrity: sha512-vp/LrAzOyS4J+YmEKRjnCjCUqN6itzz9nKvPEcSLJuapZXfPmY72TYg0F05DVnLCvGe+sLuVAoVntJT6K0qutQ==}
|
|
99
|
+
|
|
100
|
+
'@automerge/automerge@3.1.1':
|
|
101
|
+
resolution: {integrity: sha512-x7tZiMBLk4/SKYimVEVl1/wPntT9buGvLOWCey9ZcH8JUsB0dgm49C0S7Ojzgvflcs2hc/YjiXRPcFeFkinIgw==}
|
|
102
|
+
|
|
103
|
+
'@babel/code-frame@7.27.1':
|
|
104
|
+
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
|
|
105
|
+
engines: {node: '>=6.9.0'}
|
|
106
|
+
|
|
107
|
+
'@babel/compat-data@7.28.0':
|
|
108
|
+
resolution: {integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==}
|
|
109
|
+
engines: {node: '>=6.9.0'}
|
|
110
|
+
|
|
111
|
+
'@babel/core@7.28.3':
|
|
112
|
+
resolution: {integrity: sha512-yDBHV9kQNcr2/sUr9jghVyz9C3Y5G2zUM2H2lo+9mKv4sFgbA8s8Z9t8D1jiTkGoO/NoIfKMyKWr4s6CN23ZwQ==}
|
|
113
|
+
engines: {node: '>=6.9.0'}
|
|
114
|
+
|
|
115
|
+
'@babel/generator@7.28.3':
|
|
116
|
+
resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==}
|
|
117
|
+
engines: {node: '>=6.9.0'}
|
|
118
|
+
|
|
119
|
+
'@babel/helper-compilation-targets@7.27.2':
|
|
120
|
+
resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
|
|
121
|
+
engines: {node: '>=6.9.0'}
|
|
122
|
+
|
|
123
|
+
'@babel/helper-globals@7.28.0':
|
|
124
|
+
resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
|
|
125
|
+
engines: {node: '>=6.9.0'}
|
|
126
|
+
|
|
127
|
+
'@babel/helper-module-imports@7.27.1':
|
|
128
|
+
resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
|
|
129
|
+
engines: {node: '>=6.9.0'}
|
|
130
|
+
|
|
131
|
+
'@babel/helper-module-transforms@7.28.3':
|
|
132
|
+
resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
|
|
133
|
+
engines: {node: '>=6.9.0'}
|
|
134
|
+
peerDependencies:
|
|
135
|
+
'@babel/core': ^7.0.0
|
|
136
|
+
|
|
137
|
+
'@babel/helper-plugin-utils@7.27.1':
|
|
138
|
+
resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
|
|
139
|
+
engines: {node: '>=6.9.0'}
|
|
140
|
+
|
|
141
|
+
'@babel/helper-string-parser@7.27.1':
|
|
142
|
+
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
|
|
143
|
+
engines: {node: '>=6.9.0'}
|
|
144
|
+
|
|
145
|
+
'@babel/helper-validator-identifier@7.27.1':
|
|
146
|
+
resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
|
|
147
|
+
engines: {node: '>=6.9.0'}
|
|
148
|
+
|
|
149
|
+
'@babel/helper-validator-option@7.27.1':
|
|
150
|
+
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
|
|
151
|
+
engines: {node: '>=6.9.0'}
|
|
152
|
+
|
|
153
|
+
'@babel/helpers@7.28.3':
|
|
154
|
+
resolution: {integrity: sha512-PTNtvUQihsAsDHMOP5pfobP8C6CM4JWXmP8DrEIt46c3r2bf87Ua1zoqevsMo9g+tWDwgWrFP5EIxuBx5RudAw==}
|
|
155
|
+
engines: {node: '>=6.9.0'}
|
|
156
|
+
|
|
157
|
+
'@babel/parser@7.28.3':
|
|
158
|
+
resolution: {integrity: sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==}
|
|
159
|
+
engines: {node: '>=6.0.0'}
|
|
160
|
+
hasBin: true
|
|
161
|
+
|
|
162
|
+
'@babel/plugin-transform-react-jsx-self@7.27.1':
|
|
163
|
+
resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==}
|
|
164
|
+
engines: {node: '>=6.9.0'}
|
|
165
|
+
peerDependencies:
|
|
166
|
+
'@babel/core': ^7.0.0-0
|
|
167
|
+
|
|
168
|
+
'@babel/plugin-transform-react-jsx-source@7.27.1':
|
|
169
|
+
resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==}
|
|
170
|
+
engines: {node: '>=6.9.0'}
|
|
171
|
+
peerDependencies:
|
|
172
|
+
'@babel/core': ^7.0.0-0
|
|
173
|
+
|
|
174
|
+
'@babel/runtime@7.28.3':
|
|
175
|
+
resolution: {integrity: sha512-9uIQ10o0WGdpP6GDhXcdOJPJuDgFtIDtN/9+ArJQ2NAfAmiuhTQdzkaTGR33v43GYS2UrSA0eX2pPPHoFVvpxA==}
|
|
176
|
+
engines: {node: '>=6.9.0'}
|
|
177
|
+
|
|
178
|
+
'@babel/template@7.27.2':
|
|
179
|
+
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
|
|
180
|
+
engines: {node: '>=6.9.0'}
|
|
181
|
+
|
|
182
|
+
'@babel/traverse@7.28.3':
|
|
183
|
+
resolution: {integrity: sha512-7w4kZYHneL3A6NP2nxzHvT3HCZ7puDZZjFMqDpBPECub79sTtSO5CGXDkKrTQq8ksAwfD/XI2MRFX23njdDaIQ==}
|
|
184
|
+
engines: {node: '>=6.9.0'}
|
|
185
|
+
|
|
186
|
+
'@babel/types@7.28.2':
|
|
187
|
+
resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==}
|
|
188
|
+
engines: {node: '>=6.9.0'}
|
|
189
|
+
|
|
190
|
+
'@cbor-extract/cbor-extract-darwin-arm64@2.2.0':
|
|
191
|
+
resolution: {integrity: sha512-P7swiOAdF7aSi0H+tHtHtr6zrpF3aAq/W9FXx5HektRvLTM2O89xCyXF3pk7pLc7QpaY7AoaE8UowVf9QBdh3w==}
|
|
192
|
+
cpu: [arm64]
|
|
193
|
+
os: [darwin]
|
|
194
|
+
|
|
195
|
+
'@cbor-extract/cbor-extract-darwin-x64@2.2.0':
|
|
196
|
+
resolution: {integrity: sha512-1liF6fgowph0JxBbYnAS7ZlqNYLf000Qnj4KjqPNW4GViKrEql2MgZnAsExhY9LSy8dnvA4C0qHEBgPrll0z0w==}
|
|
197
|
+
cpu: [x64]
|
|
198
|
+
os: [darwin]
|
|
199
|
+
|
|
200
|
+
'@cbor-extract/cbor-extract-linux-arm64@2.2.0':
|
|
201
|
+
resolution: {integrity: sha512-rQvhNmDuhjTVXSPFLolmQ47/ydGOFXtbR7+wgkSY0bdOxCFept1hvg59uiLPT2fVDuJFuEy16EImo5tE2x3RsQ==}
|
|
202
|
+
cpu: [arm64]
|
|
203
|
+
os: [linux]
|
|
204
|
+
|
|
205
|
+
'@cbor-extract/cbor-extract-linux-arm@2.2.0':
|
|
206
|
+
resolution: {integrity: sha512-QeBcBXk964zOytiedMPQNZr7sg0TNavZeuUCD6ON4vEOU/25+pLhNN6EDIKJ9VLTKaZ7K7EaAriyYQ1NQ05s/Q==}
|
|
207
|
+
cpu: [arm]
|
|
208
|
+
os: [linux]
|
|
209
|
+
|
|
210
|
+
'@cbor-extract/cbor-extract-linux-x64@2.2.0':
|
|
211
|
+
resolution: {integrity: sha512-cWLAWtT3kNLHSvP4RKDzSTX9o0wvQEEAj4SKvhWuOVZxiDAeQazr9A+PSiRILK1VYMLeDml89ohxCnUNQNQNCw==}
|
|
212
|
+
cpu: [x64]
|
|
213
|
+
os: [linux]
|
|
214
|
+
|
|
215
|
+
'@cbor-extract/cbor-extract-win32-x64@2.2.0':
|
|
216
|
+
resolution: {integrity: sha512-l2M+Z8DO2vbvADOBNLbbh9y5ST1RY5sqkWOg/58GkUPBYou/cuNZ68SGQ644f1CvZ8kcOxyZtw06+dxWHIoN/w==}
|
|
217
|
+
cpu: [x64]
|
|
218
|
+
os: [win32]
|
|
219
|
+
|
|
220
|
+
'@codemirror/autocomplete@6.18.6':
|
|
221
|
+
resolution: {integrity: sha512-PHHBXFomUs5DF+9tCOM/UoW6XQ4R44lLNNhRaW9PKPTU0D7lIjRg3ElxaJnTwsl/oHiR93WSXDBrekhoUGCPtg==}
|
|
222
|
+
|
|
223
|
+
'@codemirror/commands@6.8.1':
|
|
224
|
+
resolution: {integrity: sha512-KlGVYufHMQzxbdQONiLyGQDUW0itrLZwq3CcY7xpv9ZLRHqzkBSoteocBHtMCoY7/Ci4xhzSrToIeLg7FxHuaw==}
|
|
225
|
+
|
|
226
|
+
'@codemirror/lang-angular@0.1.4':
|
|
227
|
+
resolution: {integrity: sha512-oap+gsltb/fzdlTQWD6BFF4bSLKcDnlxDsLdePiJpCVNKWXSTAbiiQeYI3UmES+BLAdkmIC1WjyztC1pi/bX4g==}
|
|
228
|
+
|
|
229
|
+
'@codemirror/lang-cpp@6.0.3':
|
|
230
|
+
resolution: {integrity: sha512-URM26M3vunFFn9/sm6rzqrBzDgfWuDixp85uTY49wKudToc2jTHUrKIGGKs+QWND+YLofNNZpxcNGRynFJfvgA==}
|
|
231
|
+
|
|
232
|
+
'@codemirror/lang-css@6.3.1':
|
|
233
|
+
resolution: {integrity: sha512-kr5fwBGiGtmz6l0LSJIbno9QrifNMUusivHbnA1H6Dmqy4HZFte3UAICix1VuKo0lMPKQr2rqB+0BkKi/S3Ejg==}
|
|
234
|
+
|
|
235
|
+
'@codemirror/lang-go@6.0.1':
|
|
236
|
+
resolution: {integrity: sha512-7fNvbyNylvqCphW9HD6WFnRpcDjr+KXX/FgqXy5H5ZS0eC5edDljukm/yNgYkwTsgp2busdod50AOTIy6Jikfg==}
|
|
237
|
+
|
|
238
|
+
'@codemirror/lang-html@6.4.9':
|
|
239
|
+
resolution: {integrity: sha512-aQv37pIMSlueybId/2PVSP6NPnmurFDVmZwzc7jszd2KAF8qd4VBbvNYPXWQq90WIARjsdVkPbw29pszmHws3Q==}
|
|
240
|
+
|
|
241
|
+
'@codemirror/lang-java@6.0.2':
|
|
242
|
+
resolution: {integrity: sha512-m5Nt1mQ/cznJY7tMfQTJchmrjdjQ71IDs+55d1GAa8DGaB8JXWsVCkVT284C3RTASaY43YknrK2X3hPO/J3MOQ==}
|
|
243
|
+
|
|
244
|
+
'@codemirror/lang-javascript@6.2.4':
|
|
245
|
+
resolution: {integrity: sha512-0WVmhp1QOqZ4Rt6GlVGwKJN3KW7Xh4H2q8ZZNGZaP6lRdxXJzmjm4FqvmOojVj6khWJHIb9sp7U/72W7xQgqAA==}
|
|
246
|
+
|
|
247
|
+
'@codemirror/lang-json@6.0.2':
|
|
248
|
+
resolution: {integrity: sha512-x2OtO+AvwEHrEwR0FyyPtfDUiloG3rnVTSZV1W8UteaLL8/MajQd8DpvUb2YVzC+/T18aSDv0H9mu+xw0EStoQ==}
|
|
249
|
+
|
|
250
|
+
'@codemirror/lang-less@6.0.2':
|
|
251
|
+
resolution: {integrity: sha512-EYdQTG22V+KUUk8Qq582g7FMnCZeEHsyuOJisHRft/mQ+ZSZ2w51NupvDUHiqtsOy7It5cHLPGfHQLpMh9bqpQ==}
|
|
252
|
+
|
|
253
|
+
'@codemirror/lang-liquid@6.3.0':
|
|
254
|
+
resolution: {integrity: sha512-fY1YsUExcieXRTsCiwX/bQ9+PbCTA/Fumv7C7mTUZHoFkibfESnaXwpr2aKH6zZVwysEunsHHkaIpM/pl3xETQ==}
|
|
255
|
+
|
|
256
|
+
'@codemirror/lang-markdown@6.3.4':
|
|
257
|
+
resolution: {integrity: sha512-fBm0BO03azXnTAsxhONDYHi/qWSI+uSEIpzKM7h/bkIc9fHnFp9y7KTMXKON0teNT97pFhc1a9DQTtWBYEZ7ug==}
|
|
258
|
+
|
|
259
|
+
'@codemirror/lang-php@6.0.2':
|
|
260
|
+
resolution: {integrity: sha512-ZKy2v1n8Fc8oEXj0Th0PUMXzQJ0AIR6TaZU+PbDHExFwdu+guzOA4jmCHS1Nz4vbFezwD7LyBdDnddSJeScMCA==}
|
|
261
|
+
|
|
262
|
+
'@codemirror/lang-python@6.2.1':
|
|
263
|
+
resolution: {integrity: sha512-IRjC8RUBhn9mGR9ywecNhB51yePWCGgvHfY1lWN/Mrp3cKuHr0isDKia+9HnvhiWNnMpbGhWrkhuWOc09exRyw==}
|
|
264
|
+
|
|
265
|
+
'@codemirror/lang-rust@6.0.2':
|
|
266
|
+
resolution: {integrity: sha512-EZaGjCUegtiU7kSMvOfEZpaCReowEf3yNidYu7+vfuGTm9ow4mthAparY5hisJqOHmJowVH3Upu+eJlUji6qqA==}
|
|
267
|
+
|
|
268
|
+
'@codemirror/lang-sass@6.0.2':
|
|
269
|
+
resolution: {integrity: sha512-l/bdzIABvnTo1nzdY6U+kPAC51czYQcOErfzQ9zSm9D8GmNPD0WTW8st/CJwBTPLO8jlrbyvlSEcN20dc4iL0Q==}
|
|
270
|
+
|
|
271
|
+
'@codemirror/lang-sql@6.9.1':
|
|
272
|
+
resolution: {integrity: sha512-ecSk3gm/mlINcURMcvkCZmXgdzPSq8r/yfCtTB4vgqGGIbBC2IJIAy7GqYTy5pgBEooTVmHP2GZK6Z7h63CDGg==}
|
|
273
|
+
|
|
274
|
+
'@codemirror/lang-vue@0.1.3':
|
|
275
|
+
resolution: {integrity: sha512-QSKdtYTDRhEHCfo5zOShzxCmqKJvgGrZwDQSdbvCRJ5pRLWBS7pD/8e/tH44aVQT6FKm0t6RVNoSUWHOI5vNug==}
|
|
276
|
+
|
|
277
|
+
'@codemirror/lang-wast@6.0.2':
|
|
278
|
+
resolution: {integrity: sha512-Imi2KTpVGm7TKuUkqyJ5NRmeFWF7aMpNiwHnLQe0x9kmrxElndyH0K6H/gXtWwY6UshMRAhpENsgfpSwsgmC6Q==}
|
|
279
|
+
|
|
280
|
+
'@codemirror/lang-xml@6.1.0':
|
|
281
|
+
resolution: {integrity: sha512-3z0blhicHLfwi2UgkZYRPioSgVTo9PV5GP5ducFH6FaHy0IAJRg+ixj5gTR1gnT/glAIC8xv4w2VL1LoZfs+Jg==}
|
|
282
|
+
|
|
283
|
+
'@codemirror/lang-yaml@6.1.2':
|
|
284
|
+
resolution: {integrity: sha512-dxrfG8w5Ce/QbT7YID7mWZFKhdhsaTNOYjOkSIMt1qmC4VQnXSDSYVHHHn8k6kJUfIhtLo8t1JJgltlxWdsITw==}
|
|
285
|
+
|
|
286
|
+
'@codemirror/language-data@6.5.1':
|
|
287
|
+
resolution: {integrity: sha512-0sWxeUSNlBr6OmkqybUTImADFUP0M3P0IiSde4nc24bz/6jIYzqYSgkOSLS+CBIoW1vU8Q9KUWXscBXeoMVC9w==}
|
|
288
|
+
|
|
289
|
+
'@codemirror/language@6.11.3':
|
|
290
|
+
resolution: {integrity: sha512-9HBM2XnwDj7fnu0551HkGdrUrrqmYq/WC5iv6nbY2WdicXdGbhR/gfbZOH73Aqj4351alY1+aoG9rCNfiwS1RA==}
|
|
291
|
+
|
|
292
|
+
'@codemirror/legacy-modes@6.5.1':
|
|
293
|
+
resolution: {integrity: sha512-DJYQQ00N1/KdESpZV7jg9hafof/iBNp9h7TYo1SLMk86TWl9uDsVdho2dzd81K+v4retmK6mdC7WpuOQDytQqw==}
|
|
294
|
+
|
|
295
|
+
'@codemirror/lint@6.8.5':
|
|
296
|
+
resolution: {integrity: sha512-s3n3KisH7dx3vsoeGMxsbRAgKe4O1vbrnKBClm99PU0fWxmxsx5rR2PfqQgIt+2MMJBHbiJ5rfIdLYfB9NNvsA==}
|
|
297
|
+
|
|
298
|
+
'@codemirror/search@6.5.11':
|
|
299
|
+
resolution: {integrity: sha512-KmWepDE6jUdL6n8cAAqIpRmLPBZ5ZKnicE8oGU/s3QrAVID+0VhLFrzUucVKHG5035/BSykhExDL/Xm7dHthiA==}
|
|
300
|
+
|
|
301
|
+
'@codemirror/state@6.5.2':
|
|
302
|
+
resolution: {integrity: sha512-FVqsPqtPWKVVL3dPSxy8wEF/ymIEuVzF1PK3VbUgrxXpJUSHQWWZz4JMToquRxnkw+36LTamCZG2iua2Ptq0fA==}
|
|
303
|
+
|
|
304
|
+
'@codemirror/view@6.38.1':
|
|
305
|
+
resolution: {integrity: sha512-RmTOkE7hRU3OVREqFVITWHz6ocgBjv08GoePscAakgVQfciA3SGCEk7mb9IzwW61cKKmlTpHXG6DUE5Ubx+MGQ==}
|
|
306
|
+
|
|
307
|
+
'@esbuild/aix-ppc64@0.21.5':
|
|
308
|
+
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
|
|
309
|
+
engines: {node: '>=12'}
|
|
310
|
+
cpu: [ppc64]
|
|
311
|
+
os: [aix]
|
|
312
|
+
|
|
313
|
+
'@esbuild/android-arm64@0.21.5':
|
|
314
|
+
resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
|
|
315
|
+
engines: {node: '>=12'}
|
|
316
|
+
cpu: [arm64]
|
|
317
|
+
os: [android]
|
|
318
|
+
|
|
319
|
+
'@esbuild/android-arm@0.21.5':
|
|
320
|
+
resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
|
|
321
|
+
engines: {node: '>=12'}
|
|
322
|
+
cpu: [arm]
|
|
323
|
+
os: [android]
|
|
324
|
+
|
|
325
|
+
'@esbuild/android-x64@0.21.5':
|
|
326
|
+
resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
|
|
327
|
+
engines: {node: '>=12'}
|
|
328
|
+
cpu: [x64]
|
|
329
|
+
os: [android]
|
|
330
|
+
|
|
331
|
+
'@esbuild/darwin-arm64@0.21.5':
|
|
332
|
+
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
|
|
333
|
+
engines: {node: '>=12'}
|
|
334
|
+
cpu: [arm64]
|
|
335
|
+
os: [darwin]
|
|
336
|
+
|
|
337
|
+
'@esbuild/darwin-x64@0.21.5':
|
|
338
|
+
resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
|
|
339
|
+
engines: {node: '>=12'}
|
|
340
|
+
cpu: [x64]
|
|
341
|
+
os: [darwin]
|
|
342
|
+
|
|
343
|
+
'@esbuild/freebsd-arm64@0.21.5':
|
|
344
|
+
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
|
|
345
|
+
engines: {node: '>=12'}
|
|
346
|
+
cpu: [arm64]
|
|
347
|
+
os: [freebsd]
|
|
348
|
+
|
|
349
|
+
'@esbuild/freebsd-x64@0.21.5':
|
|
350
|
+
resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
|
|
351
|
+
engines: {node: '>=12'}
|
|
352
|
+
cpu: [x64]
|
|
353
|
+
os: [freebsd]
|
|
354
|
+
|
|
355
|
+
'@esbuild/linux-arm64@0.21.5':
|
|
356
|
+
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
|
|
357
|
+
engines: {node: '>=12'}
|
|
358
|
+
cpu: [arm64]
|
|
359
|
+
os: [linux]
|
|
360
|
+
|
|
361
|
+
'@esbuild/linux-arm@0.21.5':
|
|
362
|
+
resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
|
|
363
|
+
engines: {node: '>=12'}
|
|
364
|
+
cpu: [arm]
|
|
365
|
+
os: [linux]
|
|
366
|
+
|
|
367
|
+
'@esbuild/linux-ia32@0.21.5':
|
|
368
|
+
resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
|
|
369
|
+
engines: {node: '>=12'}
|
|
370
|
+
cpu: [ia32]
|
|
371
|
+
os: [linux]
|
|
372
|
+
|
|
373
|
+
'@esbuild/linux-loong64@0.21.5':
|
|
374
|
+
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
|
|
375
|
+
engines: {node: '>=12'}
|
|
376
|
+
cpu: [loong64]
|
|
377
|
+
os: [linux]
|
|
378
|
+
|
|
379
|
+
'@esbuild/linux-mips64el@0.21.5':
|
|
380
|
+
resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
|
|
381
|
+
engines: {node: '>=12'}
|
|
382
|
+
cpu: [mips64el]
|
|
383
|
+
os: [linux]
|
|
384
|
+
|
|
385
|
+
'@esbuild/linux-ppc64@0.21.5':
|
|
386
|
+
resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
|
|
387
|
+
engines: {node: '>=12'}
|
|
388
|
+
cpu: [ppc64]
|
|
389
|
+
os: [linux]
|
|
390
|
+
|
|
391
|
+
'@esbuild/linux-riscv64@0.21.5':
|
|
392
|
+
resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
|
|
393
|
+
engines: {node: '>=12'}
|
|
394
|
+
cpu: [riscv64]
|
|
395
|
+
os: [linux]
|
|
396
|
+
|
|
397
|
+
'@esbuild/linux-s390x@0.21.5':
|
|
398
|
+
resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
|
|
399
|
+
engines: {node: '>=12'}
|
|
400
|
+
cpu: [s390x]
|
|
401
|
+
os: [linux]
|
|
402
|
+
|
|
403
|
+
'@esbuild/linux-x64@0.21.5':
|
|
404
|
+
resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
|
|
405
|
+
engines: {node: '>=12'}
|
|
406
|
+
cpu: [x64]
|
|
407
|
+
os: [linux]
|
|
408
|
+
|
|
409
|
+
'@esbuild/netbsd-x64@0.21.5':
|
|
410
|
+
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
|
|
411
|
+
engines: {node: '>=12'}
|
|
412
|
+
cpu: [x64]
|
|
413
|
+
os: [netbsd]
|
|
414
|
+
|
|
415
|
+
'@esbuild/openbsd-x64@0.21.5':
|
|
416
|
+
resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
|
|
417
|
+
engines: {node: '>=12'}
|
|
418
|
+
cpu: [x64]
|
|
419
|
+
os: [openbsd]
|
|
420
|
+
|
|
421
|
+
'@esbuild/sunos-x64@0.21.5':
|
|
422
|
+
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
|
|
423
|
+
engines: {node: '>=12'}
|
|
424
|
+
cpu: [x64]
|
|
425
|
+
os: [sunos]
|
|
426
|
+
|
|
427
|
+
'@esbuild/win32-arm64@0.21.5':
|
|
428
|
+
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
|
|
429
|
+
engines: {node: '>=12'}
|
|
430
|
+
cpu: [arm64]
|
|
431
|
+
os: [win32]
|
|
432
|
+
|
|
433
|
+
'@esbuild/win32-ia32@0.21.5':
|
|
434
|
+
resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
|
|
435
|
+
engines: {node: '>=12'}
|
|
436
|
+
cpu: [ia32]
|
|
437
|
+
os: [win32]
|
|
438
|
+
|
|
439
|
+
'@esbuild/win32-x64@0.21.5':
|
|
440
|
+
resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
|
|
441
|
+
engines: {node: '>=12'}
|
|
442
|
+
cpu: [x64]
|
|
443
|
+
os: [win32]
|
|
444
|
+
|
|
445
|
+
'@floating-ui/core@1.7.3':
|
|
446
|
+
resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==}
|
|
447
|
+
|
|
448
|
+
'@floating-ui/dom@1.7.3':
|
|
449
|
+
resolution: {integrity: sha512-uZA413QEpNuhtb3/iIKoYMSK07keHPYeXF02Zhd6e213j+d1NamLix/mCLxBUDW/Gx52sPH2m+chlUsyaBs/Ag==}
|
|
450
|
+
|
|
451
|
+
'@floating-ui/react-dom@2.1.5':
|
|
452
|
+
resolution: {integrity: sha512-HDO/1/1oH9fjj4eLgegrlH3dklZpHtUYYFiVwMUwfGvk9jWDRWqkklA2/NFScknrcNSspbV868WjXORvreDX+Q==}
|
|
453
|
+
peerDependencies:
|
|
454
|
+
react: '>=16.8.0'
|
|
455
|
+
react-dom: '>=16.8.0'
|
|
456
|
+
|
|
457
|
+
'@floating-ui/utils@0.2.10':
|
|
458
|
+
resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
|
|
459
|
+
|
|
460
|
+
'@isaacs/cliui@8.0.2':
|
|
461
|
+
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
|
|
462
|
+
engines: {node: '>=12'}
|
|
463
|
+
|
|
464
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
465
|
+
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
|
|
466
|
+
|
|
467
|
+
'@jridgewell/resolve-uri@3.1.2':
|
|
468
|
+
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
|
469
|
+
engines: {node: '>=6.0.0'}
|
|
470
|
+
|
|
471
|
+
'@jridgewell/sourcemap-codec@1.5.5':
|
|
472
|
+
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
|
|
473
|
+
|
|
474
|
+
'@jridgewell/trace-mapping@0.3.30':
|
|
475
|
+
resolution: {integrity: sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==}
|
|
476
|
+
|
|
477
|
+
'@lezer/common@1.2.3':
|
|
478
|
+
resolution: {integrity: sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==}
|
|
479
|
+
|
|
480
|
+
'@lezer/cpp@1.1.3':
|
|
481
|
+
resolution: {integrity: sha512-ykYvuFQKGsRi6IcE+/hCSGUhb/I4WPjd3ELhEblm2wS2cOznDFzO+ubK2c+ioysOnlZ3EduV+MVQFCPzAIoY3w==}
|
|
482
|
+
|
|
483
|
+
'@lezer/css@1.3.0':
|
|
484
|
+
resolution: {integrity: sha512-pBL7hup88KbI7hXnZV3PQsn43DHy6TWyzuyk2AO9UyoXcDltvIdqWKE1dLL/45JVZ+YZkHe1WVHqO6wugZZWcw==}
|
|
485
|
+
|
|
486
|
+
'@lezer/go@1.0.1':
|
|
487
|
+
resolution: {integrity: sha512-xToRsYxwsgJNHTgNdStpcvmbVuKxTapV0dM0wey1geMMRc9aggoVyKgzYp41D2/vVOx+Ii4hmE206kvxIXBVXQ==}
|
|
488
|
+
|
|
489
|
+
'@lezer/highlight@1.2.1':
|
|
490
|
+
resolution: {integrity: sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA==}
|
|
491
|
+
|
|
492
|
+
'@lezer/html@1.3.10':
|
|
493
|
+
resolution: {integrity: sha512-dqpT8nISx/p9Do3AchvYGV3qYc4/rKr3IBZxlHmpIKam56P47RSHkSF5f13Vu9hebS1jM0HmtJIwLbWz1VIY6w==}
|
|
494
|
+
|
|
495
|
+
'@lezer/java@1.1.3':
|
|
496
|
+
resolution: {integrity: sha512-yHquUfujwg6Yu4Fd1GNHCvidIvJwi/1Xu2DaKl/pfWIA2c1oXkVvawH3NyXhCaFx4OdlYBVX5wvz2f7Aoa/4Xw==}
|
|
497
|
+
|
|
498
|
+
'@lezer/javascript@1.5.1':
|
|
499
|
+
resolution: {integrity: sha512-ATOImjeVJuvgm3JQ/bpo2Tmv55HSScE2MTPnKRMRIPx2cLhHGyX2VnqpHhtIV1tVzIjZDbcWQm+NCTF40ggZVw==}
|
|
500
|
+
|
|
501
|
+
'@lezer/json@1.0.3':
|
|
502
|
+
resolution: {integrity: sha512-BP9KzdF9Y35PDpv04r0VeSTKDeox5vVr3efE7eBbx3r4s3oNLfunchejZhjArmeieBH+nVOpgIiBJpEAv8ilqQ==}
|
|
503
|
+
|
|
504
|
+
'@lezer/lr@1.4.2':
|
|
505
|
+
resolution: {integrity: sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==}
|
|
506
|
+
|
|
507
|
+
'@lezer/markdown@1.4.3':
|
|
508
|
+
resolution: {integrity: sha512-kfw+2uMrQ/wy/+ONfrH83OkdFNM0ye5Xq96cLlaCy7h5UT9FO54DU4oRoIc0CSBh5NWmWuiIJA7NGLMJbQ+Oxg==}
|
|
509
|
+
|
|
510
|
+
'@lezer/php@1.0.4':
|
|
511
|
+
resolution: {integrity: sha512-D2dJ0t8Z28/G1guztRczMFvPDUqzeMLSQbdWQmaiHV7urc8NlEOnjYk9UrZ531OcLiRxD4Ihcbv7AsDpNKDRaQ==}
|
|
512
|
+
|
|
513
|
+
'@lezer/python@1.1.18':
|
|
514
|
+
resolution: {integrity: sha512-31FiUrU7z9+d/ElGQLJFXl+dKOdx0jALlP3KEOsGTex8mvj+SoE1FgItcHWK/axkxCHGUSpqIHt6JAWfWu9Rhg==}
|
|
515
|
+
|
|
516
|
+
'@lezer/rust@1.0.2':
|
|
517
|
+
resolution: {integrity: sha512-Lz5sIPBdF2FUXcWeCu1//ojFAZqzTQNRga0aYv6dYXqJqPfMdCAI0NzajWUd4Xijj1IKJLtjoXRPMvTKWBcqKg==}
|
|
518
|
+
|
|
519
|
+
'@lezer/sass@1.1.0':
|
|
520
|
+
resolution: {integrity: sha512-3mMGdCTUZ/84ArHOuXWQr37pnf7f+Nw9ycPUeKX+wu19b7pSMcZGLbaXwvD2APMBDOGxPmpK/O6S1v1EvLoqgQ==}
|
|
521
|
+
|
|
522
|
+
'@lezer/xml@1.0.6':
|
|
523
|
+
resolution: {integrity: sha512-CdDwirL0OEaStFue/66ZmFSeppuL6Dwjlk8qk153mSQwiSH/Dlri4GNymrNWnUmPl2Um7QfV1FO9KFUyX3Twww==}
|
|
524
|
+
|
|
525
|
+
'@lezer/yaml@1.0.3':
|
|
526
|
+
resolution: {integrity: sha512-GuBLekbw9jDBDhGur82nuwkxKQ+a3W5H0GfaAthDXcAu+XdpS43VlnxA9E9hllkpSP5ellRDKjLLj7Lu9Wr6xA==}
|
|
527
|
+
|
|
528
|
+
'@marijn/find-cluster-break@1.0.2':
|
|
529
|
+
resolution: {integrity: sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==}
|
|
530
|
+
|
|
531
|
+
'@noble/hashes@1.8.0':
|
|
532
|
+
resolution: {integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==}
|
|
533
|
+
engines: {node: ^14.21.3 || >=16}
|
|
534
|
+
|
|
535
|
+
'@patchwork/sdk@file:../../../patchwork/sdk':
|
|
536
|
+
resolution: {directory: ../../../patchwork/sdk, type: directory}
|
|
537
|
+
|
|
538
|
+
'@pkgjs/parseargs@0.11.0':
|
|
539
|
+
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
|
|
540
|
+
engines: {node: '>=14'}
|
|
541
|
+
|
|
542
|
+
'@radix-ui/number@1.1.1':
|
|
543
|
+
resolution: {integrity: sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==}
|
|
544
|
+
|
|
545
|
+
'@radix-ui/primitive@1.0.0':
|
|
546
|
+
resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==}
|
|
547
|
+
|
|
548
|
+
'@radix-ui/primitive@1.1.3':
|
|
549
|
+
resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==}
|
|
550
|
+
|
|
551
|
+
'@radix-ui/react-arrow@1.1.7':
|
|
552
|
+
resolution: {integrity: sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==}
|
|
553
|
+
peerDependencies:
|
|
554
|
+
'@types/react': '*'
|
|
555
|
+
'@types/react-dom': '*'
|
|
556
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
557
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
558
|
+
peerDependenciesMeta:
|
|
559
|
+
'@types/react':
|
|
560
|
+
optional: true
|
|
561
|
+
'@types/react-dom':
|
|
562
|
+
optional: true
|
|
563
|
+
|
|
564
|
+
'@radix-ui/react-avatar@1.1.10':
|
|
565
|
+
resolution: {integrity: sha512-V8piFfWapM5OmNCXTzVQY+E1rDa53zY+MQ4Y7356v4fFz6vqCyUtIz2rUD44ZEdwg78/jKmMJHj07+C/Z/rcog==}
|
|
566
|
+
peerDependencies:
|
|
567
|
+
'@types/react': '*'
|
|
568
|
+
'@types/react-dom': '*'
|
|
569
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
570
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
571
|
+
peerDependenciesMeta:
|
|
572
|
+
'@types/react':
|
|
573
|
+
optional: true
|
|
574
|
+
'@types/react-dom':
|
|
575
|
+
optional: true
|
|
576
|
+
|
|
577
|
+
'@radix-ui/react-checkbox@1.3.3':
|
|
578
|
+
resolution: {integrity: sha512-wBbpv+NQftHDdG86Qc0pIyXk5IR3tM8Vd0nWLKDcX8nNn4nXFOFwsKuqw2okA/1D/mpaAkmuyndrPJTYDNZtFw==}
|
|
579
|
+
peerDependencies:
|
|
580
|
+
'@types/react': '*'
|
|
581
|
+
'@types/react-dom': '*'
|
|
582
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
583
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
584
|
+
peerDependenciesMeta:
|
|
585
|
+
'@types/react':
|
|
586
|
+
optional: true
|
|
587
|
+
'@types/react-dom':
|
|
588
|
+
optional: true
|
|
589
|
+
|
|
590
|
+
'@radix-ui/react-collection@1.1.7':
|
|
591
|
+
resolution: {integrity: sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==}
|
|
592
|
+
peerDependencies:
|
|
593
|
+
'@types/react': '*'
|
|
594
|
+
'@types/react-dom': '*'
|
|
595
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
596
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
597
|
+
peerDependenciesMeta:
|
|
598
|
+
'@types/react':
|
|
599
|
+
optional: true
|
|
600
|
+
'@types/react-dom':
|
|
601
|
+
optional: true
|
|
602
|
+
|
|
603
|
+
'@radix-ui/react-compose-refs@1.0.0':
|
|
604
|
+
resolution: {integrity: sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==}
|
|
605
|
+
peerDependencies:
|
|
606
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
607
|
+
|
|
608
|
+
'@radix-ui/react-compose-refs@1.1.2':
|
|
609
|
+
resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==}
|
|
610
|
+
peerDependencies:
|
|
611
|
+
'@types/react': '*'
|
|
612
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
613
|
+
peerDependenciesMeta:
|
|
614
|
+
'@types/react':
|
|
615
|
+
optional: true
|
|
616
|
+
|
|
617
|
+
'@radix-ui/react-context-menu@2.2.16':
|
|
618
|
+
resolution: {integrity: sha512-O8morBEW+HsVG28gYDZPTrT9UUovQUlJue5YO836tiTJhuIWBm/zQHc7j388sHWtdH/xUZurK9olD2+pcqx5ww==}
|
|
619
|
+
peerDependencies:
|
|
620
|
+
'@types/react': '*'
|
|
621
|
+
'@types/react-dom': '*'
|
|
622
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
623
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
624
|
+
peerDependenciesMeta:
|
|
625
|
+
'@types/react':
|
|
626
|
+
optional: true
|
|
627
|
+
'@types/react-dom':
|
|
628
|
+
optional: true
|
|
629
|
+
|
|
630
|
+
'@radix-ui/react-context@1.0.0':
|
|
631
|
+
resolution: {integrity: sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg==}
|
|
632
|
+
peerDependencies:
|
|
633
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
634
|
+
|
|
635
|
+
'@radix-ui/react-context@1.1.2':
|
|
636
|
+
resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==}
|
|
637
|
+
peerDependencies:
|
|
638
|
+
'@types/react': '*'
|
|
639
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
640
|
+
peerDependenciesMeta:
|
|
641
|
+
'@types/react':
|
|
642
|
+
optional: true
|
|
643
|
+
|
|
644
|
+
'@radix-ui/react-dialog@1.0.0':
|
|
645
|
+
resolution: {integrity: sha512-Yn9YU+QlHYLWwV1XfKiqnGVpWYWk6MeBVM6x/bcoyPvxgjQGoeT35482viLPctTMWoMw0PoHgqfSox7Ig+957Q==}
|
|
646
|
+
peerDependencies:
|
|
647
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
648
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
649
|
+
|
|
650
|
+
'@radix-ui/react-dialog@1.1.15':
|
|
651
|
+
resolution: {integrity: sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==}
|
|
652
|
+
peerDependencies:
|
|
653
|
+
'@types/react': '*'
|
|
654
|
+
'@types/react-dom': '*'
|
|
655
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
656
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
657
|
+
peerDependenciesMeta:
|
|
658
|
+
'@types/react':
|
|
659
|
+
optional: true
|
|
660
|
+
'@types/react-dom':
|
|
661
|
+
optional: true
|
|
662
|
+
|
|
663
|
+
'@radix-ui/react-direction@1.1.1':
|
|
664
|
+
resolution: {integrity: sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==}
|
|
665
|
+
peerDependencies:
|
|
666
|
+
'@types/react': '*'
|
|
667
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
668
|
+
peerDependenciesMeta:
|
|
669
|
+
'@types/react':
|
|
670
|
+
optional: true
|
|
671
|
+
|
|
672
|
+
'@radix-ui/react-dismissable-layer@1.0.0':
|
|
673
|
+
resolution: {integrity: sha512-n7kDRfx+LB1zLueRDvZ1Pd0bxdJWDUZNQ/GWoxDn2prnuJKRdxsjulejX/ePkOsLi2tTm6P24mDqlMSgQpsT6g==}
|
|
674
|
+
peerDependencies:
|
|
675
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
676
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
677
|
+
|
|
678
|
+
'@radix-ui/react-dismissable-layer@1.1.11':
|
|
679
|
+
resolution: {integrity: sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==}
|
|
680
|
+
peerDependencies:
|
|
681
|
+
'@types/react': '*'
|
|
682
|
+
'@types/react-dom': '*'
|
|
683
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
684
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
685
|
+
peerDependenciesMeta:
|
|
686
|
+
'@types/react':
|
|
687
|
+
optional: true
|
|
688
|
+
'@types/react-dom':
|
|
689
|
+
optional: true
|
|
690
|
+
|
|
691
|
+
'@radix-ui/react-dropdown-menu@2.1.16':
|
|
692
|
+
resolution: {integrity: sha512-1PLGQEynI/3OX/ftV54COn+3Sud/Mn8vALg2rWnBLnRaGtJDduNW/22XjlGgPdpcIbiQxjKtb7BkcjP00nqfJw==}
|
|
693
|
+
peerDependencies:
|
|
694
|
+
'@types/react': '*'
|
|
695
|
+
'@types/react-dom': '*'
|
|
696
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
697
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
698
|
+
peerDependenciesMeta:
|
|
699
|
+
'@types/react':
|
|
700
|
+
optional: true
|
|
701
|
+
'@types/react-dom':
|
|
702
|
+
optional: true
|
|
703
|
+
|
|
704
|
+
'@radix-ui/react-focus-guards@1.0.0':
|
|
705
|
+
resolution: {integrity: sha512-UagjDk4ijOAnGu4WMUPj9ahi7/zJJqNZ9ZAiGPp7waUWJO0O1aWXi/udPphI0IUjvrhBsZJGSN66dR2dsueLWQ==}
|
|
706
|
+
peerDependencies:
|
|
707
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
708
|
+
|
|
709
|
+
'@radix-ui/react-focus-guards@1.1.3':
|
|
710
|
+
resolution: {integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==}
|
|
711
|
+
peerDependencies:
|
|
712
|
+
'@types/react': '*'
|
|
713
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
714
|
+
peerDependenciesMeta:
|
|
715
|
+
'@types/react':
|
|
716
|
+
optional: true
|
|
717
|
+
|
|
718
|
+
'@radix-ui/react-focus-scope@1.0.0':
|
|
719
|
+
resolution: {integrity: sha512-C4SWtsULLGf/2L4oGeIHlvWQx7Rf+7cX/vKOAD2dXW0A1b5QXwi3wWeaEgW+wn+SEVrraMUk05vLU9fZZz5HbQ==}
|
|
720
|
+
peerDependencies:
|
|
721
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
722
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
723
|
+
|
|
724
|
+
'@radix-ui/react-focus-scope@1.1.7':
|
|
725
|
+
resolution: {integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==}
|
|
726
|
+
peerDependencies:
|
|
727
|
+
'@types/react': '*'
|
|
728
|
+
'@types/react-dom': '*'
|
|
729
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
730
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
731
|
+
peerDependenciesMeta:
|
|
732
|
+
'@types/react':
|
|
733
|
+
optional: true
|
|
734
|
+
'@types/react-dom':
|
|
735
|
+
optional: true
|
|
736
|
+
|
|
737
|
+
'@radix-ui/react-id@1.0.0':
|
|
738
|
+
resolution: {integrity: sha512-Q6iAB/U7Tq3NTolBBQbHTgclPmGWE3OlktGGqrClPozSw4vkQ1DfQAOtzgRPecKsMdJINE05iaoDUG8tRzCBjw==}
|
|
739
|
+
peerDependencies:
|
|
740
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
741
|
+
|
|
742
|
+
'@radix-ui/react-id@1.1.1':
|
|
743
|
+
resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==}
|
|
744
|
+
peerDependencies:
|
|
745
|
+
'@types/react': '*'
|
|
746
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
747
|
+
peerDependenciesMeta:
|
|
748
|
+
'@types/react':
|
|
749
|
+
optional: true
|
|
750
|
+
|
|
751
|
+
'@radix-ui/react-label@2.1.7':
|
|
752
|
+
resolution: {integrity: sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ==}
|
|
753
|
+
peerDependencies:
|
|
754
|
+
'@types/react': '*'
|
|
755
|
+
'@types/react-dom': '*'
|
|
756
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
757
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
758
|
+
peerDependenciesMeta:
|
|
759
|
+
'@types/react':
|
|
760
|
+
optional: true
|
|
761
|
+
'@types/react-dom':
|
|
762
|
+
optional: true
|
|
763
|
+
|
|
764
|
+
'@radix-ui/react-menu@2.1.16':
|
|
765
|
+
resolution: {integrity: sha512-72F2T+PLlphrqLcAotYPp0uJMr5SjP5SL01wfEspJbru5Zs5vQaSHb4VB3ZMJPimgHHCHG7gMOeOB9H3Hdmtxg==}
|
|
766
|
+
peerDependencies:
|
|
767
|
+
'@types/react': '*'
|
|
768
|
+
'@types/react-dom': '*'
|
|
769
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
770
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
771
|
+
peerDependenciesMeta:
|
|
772
|
+
'@types/react':
|
|
773
|
+
optional: true
|
|
774
|
+
'@types/react-dom':
|
|
775
|
+
optional: true
|
|
776
|
+
|
|
777
|
+
'@radix-ui/react-popover@1.1.15':
|
|
778
|
+
resolution: {integrity: sha512-kr0X2+6Yy/vJzLYJUPCZEc8SfQcf+1COFoAqauJm74umQhta9M7lNJHP7QQS3vkvcGLQUbWpMzwrXYwrYztHKA==}
|
|
779
|
+
peerDependencies:
|
|
780
|
+
'@types/react': '*'
|
|
781
|
+
'@types/react-dom': '*'
|
|
782
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
783
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
784
|
+
peerDependenciesMeta:
|
|
785
|
+
'@types/react':
|
|
786
|
+
optional: true
|
|
787
|
+
'@types/react-dom':
|
|
788
|
+
optional: true
|
|
789
|
+
|
|
790
|
+
'@radix-ui/react-popper@1.2.8':
|
|
791
|
+
resolution: {integrity: sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==}
|
|
792
|
+
peerDependencies:
|
|
793
|
+
'@types/react': '*'
|
|
794
|
+
'@types/react-dom': '*'
|
|
795
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
796
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
797
|
+
peerDependenciesMeta:
|
|
798
|
+
'@types/react':
|
|
799
|
+
optional: true
|
|
800
|
+
'@types/react-dom':
|
|
801
|
+
optional: true
|
|
802
|
+
|
|
803
|
+
'@radix-ui/react-portal@1.0.0':
|
|
804
|
+
resolution: {integrity: sha512-a8qyFO/Xb99d8wQdu4o7qnigNjTPG123uADNecz0eX4usnQEj7o+cG4ZX4zkqq98NYekT7UoEQIjxBNWIFuqTA==}
|
|
805
|
+
peerDependencies:
|
|
806
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
807
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
808
|
+
|
|
809
|
+
'@radix-ui/react-portal@1.1.9':
|
|
810
|
+
resolution: {integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==}
|
|
811
|
+
peerDependencies:
|
|
812
|
+
'@types/react': '*'
|
|
813
|
+
'@types/react-dom': '*'
|
|
814
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
815
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
816
|
+
peerDependenciesMeta:
|
|
817
|
+
'@types/react':
|
|
818
|
+
optional: true
|
|
819
|
+
'@types/react-dom':
|
|
820
|
+
optional: true
|
|
821
|
+
|
|
822
|
+
'@radix-ui/react-presence@1.0.0':
|
|
823
|
+
resolution: {integrity: sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w==}
|
|
824
|
+
peerDependencies:
|
|
825
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
826
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
827
|
+
|
|
828
|
+
'@radix-ui/react-presence@1.1.5':
|
|
829
|
+
resolution: {integrity: sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==}
|
|
830
|
+
peerDependencies:
|
|
831
|
+
'@types/react': '*'
|
|
832
|
+
'@types/react-dom': '*'
|
|
833
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
834
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
835
|
+
peerDependenciesMeta:
|
|
836
|
+
'@types/react':
|
|
837
|
+
optional: true
|
|
838
|
+
'@types/react-dom':
|
|
839
|
+
optional: true
|
|
840
|
+
|
|
841
|
+
'@radix-ui/react-primitive@1.0.0':
|
|
842
|
+
resolution: {integrity: sha512-EyXe6mnRlHZ8b6f4ilTDrXmkLShICIuOTTj0GX4w1rp+wSxf3+TD05u1UOITC8VsJ2a9nwHvdXtOXEOl0Cw/zQ==}
|
|
843
|
+
peerDependencies:
|
|
844
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
845
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
846
|
+
|
|
847
|
+
'@radix-ui/react-primitive@2.1.3':
|
|
848
|
+
resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==}
|
|
849
|
+
peerDependencies:
|
|
850
|
+
'@types/react': '*'
|
|
851
|
+
'@types/react-dom': '*'
|
|
852
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
853
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
854
|
+
peerDependenciesMeta:
|
|
855
|
+
'@types/react':
|
|
856
|
+
optional: true
|
|
857
|
+
'@types/react-dom':
|
|
858
|
+
optional: true
|
|
859
|
+
|
|
860
|
+
'@radix-ui/react-progress@1.1.7':
|
|
861
|
+
resolution: {integrity: sha512-vPdg/tF6YC/ynuBIJlk1mm7Le0VgW6ub6J2UWnTQ7/D23KXcPI1qy+0vBkgKgd38RCMJavBXpB83HPNFMTb0Fg==}
|
|
862
|
+
peerDependencies:
|
|
863
|
+
'@types/react': '*'
|
|
864
|
+
'@types/react-dom': '*'
|
|
865
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
866
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
867
|
+
peerDependenciesMeta:
|
|
868
|
+
'@types/react':
|
|
869
|
+
optional: true
|
|
870
|
+
'@types/react-dom':
|
|
871
|
+
optional: true
|
|
872
|
+
|
|
873
|
+
'@radix-ui/react-roving-focus@1.1.11':
|
|
874
|
+
resolution: {integrity: sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA==}
|
|
875
|
+
peerDependencies:
|
|
876
|
+
'@types/react': '*'
|
|
877
|
+
'@types/react-dom': '*'
|
|
878
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
879
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
880
|
+
peerDependenciesMeta:
|
|
881
|
+
'@types/react':
|
|
882
|
+
optional: true
|
|
883
|
+
'@types/react-dom':
|
|
884
|
+
optional: true
|
|
885
|
+
|
|
886
|
+
'@radix-ui/react-select@2.2.6':
|
|
887
|
+
resolution: {integrity: sha512-I30RydO+bnn2PQztvo25tswPH+wFBjehVGtmagkU78yMdwTwVf12wnAOF+AeP8S2N8xD+5UPbGhkUfPyvT+mwQ==}
|
|
888
|
+
peerDependencies:
|
|
889
|
+
'@types/react': '*'
|
|
890
|
+
'@types/react-dom': '*'
|
|
891
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
892
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
893
|
+
peerDependenciesMeta:
|
|
894
|
+
'@types/react':
|
|
895
|
+
optional: true
|
|
896
|
+
'@types/react-dom':
|
|
897
|
+
optional: true
|
|
898
|
+
|
|
899
|
+
'@radix-ui/react-slider@1.3.6':
|
|
900
|
+
resolution: {integrity: sha512-JPYb1GuM1bxfjMRlNLE+BcmBC8onfCi60Blk7OBqi2MLTFdS+8401U4uFjnwkOr49BLmXxLC6JHkvAsx5OJvHw==}
|
|
901
|
+
peerDependencies:
|
|
902
|
+
'@types/react': '*'
|
|
903
|
+
'@types/react-dom': '*'
|
|
904
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
905
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
906
|
+
peerDependenciesMeta:
|
|
907
|
+
'@types/react':
|
|
908
|
+
optional: true
|
|
909
|
+
'@types/react-dom':
|
|
910
|
+
optional: true
|
|
911
|
+
|
|
912
|
+
'@radix-ui/react-slot@1.0.0':
|
|
913
|
+
resolution: {integrity: sha512-3mrKauI/tWXo1Ll+gN5dHcxDPdm/Df1ufcDLCecn+pnCIVcdWE7CujXo8QaXOWRJyZyQWWbpB8eFwHzWXlv5mQ==}
|
|
914
|
+
peerDependencies:
|
|
915
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
916
|
+
|
|
917
|
+
'@radix-ui/react-slot@1.2.3':
|
|
918
|
+
resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==}
|
|
919
|
+
peerDependencies:
|
|
920
|
+
'@types/react': '*'
|
|
921
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
922
|
+
peerDependenciesMeta:
|
|
923
|
+
'@types/react':
|
|
924
|
+
optional: true
|
|
925
|
+
|
|
926
|
+
'@radix-ui/react-switch@1.2.6':
|
|
927
|
+
resolution: {integrity: sha512-bByzr1+ep1zk4VubeEVViV592vu2lHE2BZY5OnzehZqOOgogN80+mNtCqPkhn2gklJqOpxWgPoYTSnhBCqpOXQ==}
|
|
928
|
+
peerDependencies:
|
|
929
|
+
'@types/react': '*'
|
|
930
|
+
'@types/react-dom': '*'
|
|
931
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
932
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
933
|
+
peerDependenciesMeta:
|
|
934
|
+
'@types/react':
|
|
935
|
+
optional: true
|
|
936
|
+
'@types/react-dom':
|
|
937
|
+
optional: true
|
|
938
|
+
|
|
939
|
+
'@radix-ui/react-tabs@1.1.13':
|
|
940
|
+
resolution: {integrity: sha512-7xdcatg7/U+7+Udyoj2zodtI9H/IIopqo+YOIcZOq1nJwXWBZ9p8xiu5llXlekDbZkca79a/fozEYQXIA4sW6A==}
|
|
941
|
+
peerDependencies:
|
|
942
|
+
'@types/react': '*'
|
|
943
|
+
'@types/react-dom': '*'
|
|
944
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
945
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
946
|
+
peerDependenciesMeta:
|
|
947
|
+
'@types/react':
|
|
948
|
+
optional: true
|
|
949
|
+
'@types/react-dom':
|
|
950
|
+
optional: true
|
|
951
|
+
|
|
952
|
+
'@radix-ui/react-toast@1.2.15':
|
|
953
|
+
resolution: {integrity: sha512-3OSz3TacUWy4WtOXV38DggwxoqJK4+eDkNMl5Z/MJZaoUPaP4/9lf81xXMe1I2ReTAptverZUpbPY4wWwWyL5g==}
|
|
954
|
+
peerDependencies:
|
|
955
|
+
'@types/react': '*'
|
|
956
|
+
'@types/react-dom': '*'
|
|
957
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
958
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
959
|
+
peerDependenciesMeta:
|
|
960
|
+
'@types/react':
|
|
961
|
+
optional: true
|
|
962
|
+
'@types/react-dom':
|
|
963
|
+
optional: true
|
|
964
|
+
|
|
965
|
+
'@radix-ui/react-tooltip@1.2.8':
|
|
966
|
+
resolution: {integrity: sha512-tY7sVt1yL9ozIxvmbtN5qtmH2krXcBCfjEiCgKGLqunJHvgvZG2Pcl2oQ3kbcZARb1BGEHdkLzcYGO8ynVlieg==}
|
|
967
|
+
peerDependencies:
|
|
968
|
+
'@types/react': '*'
|
|
969
|
+
'@types/react-dom': '*'
|
|
970
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
971
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
972
|
+
peerDependenciesMeta:
|
|
973
|
+
'@types/react':
|
|
974
|
+
optional: true
|
|
975
|
+
'@types/react-dom':
|
|
976
|
+
optional: true
|
|
977
|
+
|
|
978
|
+
'@radix-ui/react-use-callback-ref@1.0.0':
|
|
979
|
+
resolution: {integrity: sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg==}
|
|
980
|
+
peerDependencies:
|
|
981
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
982
|
+
|
|
983
|
+
'@radix-ui/react-use-callback-ref@1.1.1':
|
|
984
|
+
resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==}
|
|
985
|
+
peerDependencies:
|
|
986
|
+
'@types/react': '*'
|
|
987
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
988
|
+
peerDependenciesMeta:
|
|
989
|
+
'@types/react':
|
|
990
|
+
optional: true
|
|
991
|
+
|
|
992
|
+
'@radix-ui/react-use-controllable-state@1.0.0':
|
|
993
|
+
resolution: {integrity: sha512-FohDoZvk3mEXh9AWAVyRTYR4Sq7/gavuofglmiXB2g1aKyboUD4YtgWxKj8O5n+Uak52gXQ4wKz5IFST4vtJHg==}
|
|
994
|
+
peerDependencies:
|
|
995
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
996
|
+
|
|
997
|
+
'@radix-ui/react-use-controllable-state@1.2.2':
|
|
998
|
+
resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==}
|
|
999
|
+
peerDependencies:
|
|
1000
|
+
'@types/react': '*'
|
|
1001
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1002
|
+
peerDependenciesMeta:
|
|
1003
|
+
'@types/react':
|
|
1004
|
+
optional: true
|
|
1005
|
+
|
|
1006
|
+
'@radix-ui/react-use-effect-event@0.0.2':
|
|
1007
|
+
resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==}
|
|
1008
|
+
peerDependencies:
|
|
1009
|
+
'@types/react': '*'
|
|
1010
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1011
|
+
peerDependenciesMeta:
|
|
1012
|
+
'@types/react':
|
|
1013
|
+
optional: true
|
|
1014
|
+
|
|
1015
|
+
'@radix-ui/react-use-escape-keydown@1.0.0':
|
|
1016
|
+
resolution: {integrity: sha512-JwfBCUIfhXRxKExgIqGa4CQsiMemo1Xt0W/B4ei3fpzpvPENKpMKQ8mZSB6Acj3ebrAEgi2xiQvcI1PAAodvyg==}
|
|
1017
|
+
peerDependencies:
|
|
1018
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1019
|
+
|
|
1020
|
+
'@radix-ui/react-use-escape-keydown@1.1.1':
|
|
1021
|
+
resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==}
|
|
1022
|
+
peerDependencies:
|
|
1023
|
+
'@types/react': '*'
|
|
1024
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1025
|
+
peerDependenciesMeta:
|
|
1026
|
+
'@types/react':
|
|
1027
|
+
optional: true
|
|
1028
|
+
|
|
1029
|
+
'@radix-ui/react-use-is-hydrated@0.1.0':
|
|
1030
|
+
resolution: {integrity: sha512-U+UORVEq+cTnRIaostJv9AGdV3G6Y+zbVd+12e18jQ5A3c0xL03IhnHuiU4UV69wolOQp5GfR58NW/EgdQhwOA==}
|
|
1031
|
+
peerDependencies:
|
|
1032
|
+
'@types/react': '*'
|
|
1033
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1034
|
+
peerDependenciesMeta:
|
|
1035
|
+
'@types/react':
|
|
1036
|
+
optional: true
|
|
1037
|
+
|
|
1038
|
+
'@radix-ui/react-use-layout-effect@1.0.0':
|
|
1039
|
+
resolution: {integrity: sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ==}
|
|
1040
|
+
peerDependencies:
|
|
1041
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1042
|
+
|
|
1043
|
+
'@radix-ui/react-use-layout-effect@1.1.1':
|
|
1044
|
+
resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==}
|
|
1045
|
+
peerDependencies:
|
|
1046
|
+
'@types/react': '*'
|
|
1047
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1048
|
+
peerDependenciesMeta:
|
|
1049
|
+
'@types/react':
|
|
1050
|
+
optional: true
|
|
1051
|
+
|
|
1052
|
+
'@radix-ui/react-use-previous@1.1.1':
|
|
1053
|
+
resolution: {integrity: sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==}
|
|
1054
|
+
peerDependencies:
|
|
1055
|
+
'@types/react': '*'
|
|
1056
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1057
|
+
peerDependenciesMeta:
|
|
1058
|
+
'@types/react':
|
|
1059
|
+
optional: true
|
|
1060
|
+
|
|
1061
|
+
'@radix-ui/react-use-rect@1.1.1':
|
|
1062
|
+
resolution: {integrity: sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==}
|
|
1063
|
+
peerDependencies:
|
|
1064
|
+
'@types/react': '*'
|
|
1065
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1066
|
+
peerDependenciesMeta:
|
|
1067
|
+
'@types/react':
|
|
1068
|
+
optional: true
|
|
1069
|
+
|
|
1070
|
+
'@radix-ui/react-use-size@1.1.1':
|
|
1071
|
+
resolution: {integrity: sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==}
|
|
1072
|
+
peerDependencies:
|
|
1073
|
+
'@types/react': '*'
|
|
1074
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1075
|
+
peerDependenciesMeta:
|
|
1076
|
+
'@types/react':
|
|
1077
|
+
optional: true
|
|
1078
|
+
|
|
1079
|
+
'@radix-ui/react-visually-hidden@1.2.3':
|
|
1080
|
+
resolution: {integrity: sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==}
|
|
1081
|
+
peerDependencies:
|
|
1082
|
+
'@types/react': '*'
|
|
1083
|
+
'@types/react-dom': '*'
|
|
1084
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1085
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1086
|
+
peerDependenciesMeta:
|
|
1087
|
+
'@types/react':
|
|
1088
|
+
optional: true
|
|
1089
|
+
'@types/react-dom':
|
|
1090
|
+
optional: true
|
|
1091
|
+
|
|
1092
|
+
'@radix-ui/rect@1.1.1':
|
|
1093
|
+
resolution: {integrity: sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==}
|
|
1094
|
+
|
|
1095
|
+
'@rolldown/pluginutils@1.0.0-beta.27':
|
|
1096
|
+
resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==}
|
|
1097
|
+
|
|
1098
|
+
'@rollup/plugin-virtual@3.0.2':
|
|
1099
|
+
resolution: {integrity: sha512-10monEYsBp3scM4/ND4LNH5Rxvh3e/cVeL3jWTgZ2SrQ+BmUoQcopVQvnaMcOnykb1VkxUFuDAN+0FnpTFRy2A==}
|
|
1100
|
+
engines: {node: '>=14.0.0'}
|
|
1101
|
+
peerDependencies:
|
|
1102
|
+
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
|
|
1103
|
+
peerDependenciesMeta:
|
|
1104
|
+
rollup:
|
|
1105
|
+
optional: true
|
|
1106
|
+
|
|
1107
|
+
'@rollup/rollup-android-arm-eabi@4.46.2':
|
|
1108
|
+
resolution: {integrity: sha512-Zj3Hl6sN34xJtMv7Anwb5Gu01yujyE/cLBDB2gnHTAHaWS1Z38L7kuSG+oAh0giZMqG060f/YBStXtMH6FvPMA==}
|
|
1109
|
+
cpu: [arm]
|
|
1110
|
+
os: [android]
|
|
1111
|
+
|
|
1112
|
+
'@rollup/rollup-android-arm64@4.46.2':
|
|
1113
|
+
resolution: {integrity: sha512-nTeCWY83kN64oQ5MGz3CgtPx8NSOhC5lWtsjTs+8JAJNLcP3QbLCtDDgUKQc/Ro/frpMq4SHUaHN6AMltcEoLQ==}
|
|
1114
|
+
cpu: [arm64]
|
|
1115
|
+
os: [android]
|
|
1116
|
+
|
|
1117
|
+
'@rollup/rollup-darwin-arm64@4.46.2':
|
|
1118
|
+
resolution: {integrity: sha512-HV7bW2Fb/F5KPdM/9bApunQh68YVDU8sO8BvcW9OngQVN3HHHkw99wFupuUJfGR9pYLLAjcAOA6iO+evsbBaPQ==}
|
|
1119
|
+
cpu: [arm64]
|
|
1120
|
+
os: [darwin]
|
|
1121
|
+
|
|
1122
|
+
'@rollup/rollup-darwin-x64@4.46.2':
|
|
1123
|
+
resolution: {integrity: sha512-SSj8TlYV5nJixSsm/y3QXfhspSiLYP11zpfwp6G/YDXctf3Xkdnk4woJIF5VQe0of2OjzTt8EsxnJDCdHd2xMA==}
|
|
1124
|
+
cpu: [x64]
|
|
1125
|
+
os: [darwin]
|
|
1126
|
+
|
|
1127
|
+
'@rollup/rollup-freebsd-arm64@4.46.2':
|
|
1128
|
+
resolution: {integrity: sha512-ZyrsG4TIT9xnOlLsSSi9w/X29tCbK1yegE49RYm3tu3wF1L/B6LVMqnEWyDB26d9Ecx9zrmXCiPmIabVuLmNSg==}
|
|
1129
|
+
cpu: [arm64]
|
|
1130
|
+
os: [freebsd]
|
|
1131
|
+
|
|
1132
|
+
'@rollup/rollup-freebsd-x64@4.46.2':
|
|
1133
|
+
resolution: {integrity: sha512-pCgHFoOECwVCJ5GFq8+gR8SBKnMO+xe5UEqbemxBpCKYQddRQMgomv1104RnLSg7nNvgKy05sLsY51+OVRyiVw==}
|
|
1134
|
+
cpu: [x64]
|
|
1135
|
+
os: [freebsd]
|
|
1136
|
+
|
|
1137
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.46.2':
|
|
1138
|
+
resolution: {integrity: sha512-EtP8aquZ0xQg0ETFcxUbU71MZlHaw9MChwrQzatiE8U/bvi5uv/oChExXC4mWhjiqK7azGJBqU0tt5H123SzVA==}
|
|
1139
|
+
cpu: [arm]
|
|
1140
|
+
os: [linux]
|
|
1141
|
+
|
|
1142
|
+
'@rollup/rollup-linux-arm-musleabihf@4.46.2':
|
|
1143
|
+
resolution: {integrity: sha512-qO7F7U3u1nfxYRPM8HqFtLd+raev2K137dsV08q/LRKRLEc7RsiDWihUnrINdsWQxPR9jqZ8DIIZ1zJJAm5PjQ==}
|
|
1144
|
+
cpu: [arm]
|
|
1145
|
+
os: [linux]
|
|
1146
|
+
|
|
1147
|
+
'@rollup/rollup-linux-arm64-gnu@4.46.2':
|
|
1148
|
+
resolution: {integrity: sha512-3dRaqLfcOXYsfvw5xMrxAk9Lb1f395gkoBYzSFcc/scgRFptRXL9DOaDpMiehf9CO8ZDRJW2z45b6fpU5nwjng==}
|
|
1149
|
+
cpu: [arm64]
|
|
1150
|
+
os: [linux]
|
|
1151
|
+
|
|
1152
|
+
'@rollup/rollup-linux-arm64-musl@4.46.2':
|
|
1153
|
+
resolution: {integrity: sha512-fhHFTutA7SM+IrR6lIfiHskxmpmPTJUXpWIsBXpeEwNgZzZZSg/q4i6FU4J8qOGyJ0TR+wXBwx/L7Ho9z0+uDg==}
|
|
1154
|
+
cpu: [arm64]
|
|
1155
|
+
os: [linux]
|
|
1156
|
+
|
|
1157
|
+
'@rollup/rollup-linux-loongarch64-gnu@4.46.2':
|
|
1158
|
+
resolution: {integrity: sha512-i7wfGFXu8x4+FRqPymzjD+Hyav8l95UIZ773j7J7zRYc3Xsxy2wIn4x+llpunexXe6laaO72iEjeeGyUFmjKeA==}
|
|
1159
|
+
cpu: [loong64]
|
|
1160
|
+
os: [linux]
|
|
1161
|
+
|
|
1162
|
+
'@rollup/rollup-linux-ppc64-gnu@4.46.2':
|
|
1163
|
+
resolution: {integrity: sha512-B/l0dFcHVUnqcGZWKcWBSV2PF01YUt0Rvlurci5P+neqY/yMKchGU8ullZvIv5e8Y1C6wOn+U03mrDylP5q9Yw==}
|
|
1164
|
+
cpu: [ppc64]
|
|
1165
|
+
os: [linux]
|
|
1166
|
+
|
|
1167
|
+
'@rollup/rollup-linux-riscv64-gnu@4.46.2':
|
|
1168
|
+
resolution: {integrity: sha512-32k4ENb5ygtkMwPMucAb8MtV8olkPT03oiTxJbgkJa7lJ7dZMr0GCFJlyvy+K8iq7F/iuOr41ZdUHaOiqyR3iQ==}
|
|
1169
|
+
cpu: [riscv64]
|
|
1170
|
+
os: [linux]
|
|
1171
|
+
|
|
1172
|
+
'@rollup/rollup-linux-riscv64-musl@4.46.2':
|
|
1173
|
+
resolution: {integrity: sha512-t5B2loThlFEauloaQkZg9gxV05BYeITLvLkWOkRXogP4qHXLkWSbSHKM9S6H1schf/0YGP/qNKtiISlxvfmmZw==}
|
|
1174
|
+
cpu: [riscv64]
|
|
1175
|
+
os: [linux]
|
|
1176
|
+
|
|
1177
|
+
'@rollup/rollup-linux-s390x-gnu@4.46.2':
|
|
1178
|
+
resolution: {integrity: sha512-YKjekwTEKgbB7n17gmODSmJVUIvj8CX7q5442/CK80L8nqOUbMtf8b01QkG3jOqyr1rotrAnW6B/qiHwfcuWQA==}
|
|
1179
|
+
cpu: [s390x]
|
|
1180
|
+
os: [linux]
|
|
1181
|
+
|
|
1182
|
+
'@rollup/rollup-linux-x64-gnu@4.46.2':
|
|
1183
|
+
resolution: {integrity: sha512-Jj5a9RUoe5ra+MEyERkDKLwTXVu6s3aACP51nkfnK9wJTraCC8IMe3snOfALkrjTYd2G1ViE1hICj0fZ7ALBPA==}
|
|
1184
|
+
cpu: [x64]
|
|
1185
|
+
os: [linux]
|
|
1186
|
+
|
|
1187
|
+
'@rollup/rollup-linux-x64-musl@4.46.2':
|
|
1188
|
+
resolution: {integrity: sha512-7kX69DIrBeD7yNp4A5b81izs8BqoZkCIaxQaOpumcJ1S/kmqNFjPhDu1LHeVXv0SexfHQv5cqHsxLOjETuqDuA==}
|
|
1189
|
+
cpu: [x64]
|
|
1190
|
+
os: [linux]
|
|
1191
|
+
|
|
1192
|
+
'@rollup/rollup-win32-arm64-msvc@4.46.2':
|
|
1193
|
+
resolution: {integrity: sha512-wiJWMIpeaak/jsbaq2HMh/rzZxHVW1rU6coyeNNpMwk5isiPjSTx0a4YLSlYDwBH/WBvLz+EtsNqQScZTLJy3g==}
|
|
1194
|
+
cpu: [arm64]
|
|
1195
|
+
os: [win32]
|
|
1196
|
+
|
|
1197
|
+
'@rollup/rollup-win32-ia32-msvc@4.46.2':
|
|
1198
|
+
resolution: {integrity: sha512-gBgaUDESVzMgWZhcyjfs9QFK16D8K6QZpwAaVNJxYDLHWayOta4ZMjGm/vsAEy3hvlS2GosVFlBlP9/Wb85DqQ==}
|
|
1199
|
+
cpu: [ia32]
|
|
1200
|
+
os: [win32]
|
|
1201
|
+
|
|
1202
|
+
'@rollup/rollup-win32-x64-msvc@4.46.2':
|
|
1203
|
+
resolution: {integrity: sha512-CvUo2ixeIQGtF6WvuB87XWqPQkoFAFqW+HUo/WzHwuHDvIwZCtjdWXoYCcr06iKGydiqTclC4jU/TNObC/xKZg==}
|
|
1204
|
+
cpu: [x64]
|
|
1205
|
+
os: [win32]
|
|
1206
|
+
|
|
1207
|
+
'@swc/core-darwin-arm64@1.13.3':
|
|
1208
|
+
resolution: {integrity: sha512-ux0Ws4pSpBTqbDS9GlVP354MekB1DwYlbxXU3VhnDr4GBcCOimpocx62x7cFJkSpEBF8bmX8+/TTCGKh4PbyXw==}
|
|
1209
|
+
engines: {node: '>=10'}
|
|
1210
|
+
cpu: [arm64]
|
|
1211
|
+
os: [darwin]
|
|
1212
|
+
|
|
1213
|
+
'@swc/core-darwin-x64@1.13.3':
|
|
1214
|
+
resolution: {integrity: sha512-p0X6yhxmNUOMZrbeZ3ZNsPige8lSlSe1llllXvpCLkKKxN/k5vZt1sULoq6Nj4eQ7KeHQVm81/+AwKZyf/e0TA==}
|
|
1215
|
+
engines: {node: '>=10'}
|
|
1216
|
+
cpu: [x64]
|
|
1217
|
+
os: [darwin]
|
|
1218
|
+
|
|
1219
|
+
'@swc/core-linux-arm-gnueabihf@1.13.3':
|
|
1220
|
+
resolution: {integrity: sha512-OmDoiexL2fVWvQTCtoh0xHMyEkZweQAlh4dRyvl8ugqIPEVARSYtaj55TBMUJIP44mSUOJ5tytjzhn2KFxFcBA==}
|
|
1221
|
+
engines: {node: '>=10'}
|
|
1222
|
+
cpu: [arm]
|
|
1223
|
+
os: [linux]
|
|
1224
|
+
|
|
1225
|
+
'@swc/core-linux-arm64-gnu@1.13.3':
|
|
1226
|
+
resolution: {integrity: sha512-STfKku3QfnuUj6k3g9ld4vwhtgCGYIFQmsGPPgT9MK/dI3Lwnpe5Gs5t1inoUIoGNP8sIOLlBB4HV4MmBjQuhw==}
|
|
1227
|
+
engines: {node: '>=10'}
|
|
1228
|
+
cpu: [arm64]
|
|
1229
|
+
os: [linux]
|
|
1230
|
+
|
|
1231
|
+
'@swc/core-linux-arm64-musl@1.13.3':
|
|
1232
|
+
resolution: {integrity: sha512-bc+CXYlFc1t8pv9yZJGus372ldzOVscBl7encUBlU1m/Sig0+NDJLz6cXXRcFyl6ABNOApWeR4Yl7iUWx6C8og==}
|
|
1233
|
+
engines: {node: '>=10'}
|
|
1234
|
+
cpu: [arm64]
|
|
1235
|
+
os: [linux]
|
|
1236
|
+
|
|
1237
|
+
'@swc/core-linux-x64-gnu@1.13.3':
|
|
1238
|
+
resolution: {integrity: sha512-dFXoa0TEhohrKcxn/54YKs1iwNeW6tUkHJgXW33H381SvjKFUV53WR231jh1sWVJETjA3vsAwxKwR23s7UCmUA==}
|
|
1239
|
+
engines: {node: '>=10'}
|
|
1240
|
+
cpu: [x64]
|
|
1241
|
+
os: [linux]
|
|
1242
|
+
|
|
1243
|
+
'@swc/core-linux-x64-musl@1.13.3':
|
|
1244
|
+
resolution: {integrity: sha512-ieyjisLB+ldexiE/yD8uomaZuZIbTc8tjquYln9Quh5ykOBY7LpJJYBWvWtm1g3pHv6AXlBI8Jay7Fffb6aLfA==}
|
|
1245
|
+
engines: {node: '>=10'}
|
|
1246
|
+
cpu: [x64]
|
|
1247
|
+
os: [linux]
|
|
1248
|
+
|
|
1249
|
+
'@swc/core-win32-arm64-msvc@1.13.3':
|
|
1250
|
+
resolution: {integrity: sha512-elTQpnaX5vESSbhCEgcwXjpMsnUbqqHfEpB7ewpkAsLzKEXZaK67ihSRYAuAx6ewRQTo7DS5iTT6X5aQD3MzMw==}
|
|
1251
|
+
engines: {node: '>=10'}
|
|
1252
|
+
cpu: [arm64]
|
|
1253
|
+
os: [win32]
|
|
1254
|
+
|
|
1255
|
+
'@swc/core-win32-ia32-msvc@1.13.3':
|
|
1256
|
+
resolution: {integrity: sha512-nvehQVEOdI1BleJpuUgPLrclJ0TzbEMc+MarXDmmiRFwEUGqj+pnfkTSb7RZyS1puU74IXdK/YhTirHurtbI9w==}
|
|
1257
|
+
engines: {node: '>=10'}
|
|
1258
|
+
cpu: [ia32]
|
|
1259
|
+
os: [win32]
|
|
1260
|
+
|
|
1261
|
+
'@swc/core-win32-x64-msvc@1.13.3':
|
|
1262
|
+
resolution: {integrity: sha512-A+JSKGkRbPLVV2Kwx8TaDAV0yXIXm/gc8m98hSkVDGlPBBmydgzNdWy3X7HTUBM7IDk7YlWE7w2+RUGjdgpTmg==}
|
|
1263
|
+
engines: {node: '>=10'}
|
|
1264
|
+
cpu: [x64]
|
|
1265
|
+
os: [win32]
|
|
1266
|
+
|
|
1267
|
+
'@swc/core@1.13.3':
|
|
1268
|
+
resolution: {integrity: sha512-ZaDETVWnm6FE0fc+c2UE8MHYVS3Fe91o5vkmGfgwGXFbxYvAjKSqxM/j4cRc9T7VZNSJjriXq58XkfCp3Y6f+w==}
|
|
1269
|
+
engines: {node: '>=10'}
|
|
1270
|
+
peerDependencies:
|
|
1271
|
+
'@swc/helpers': '>=0.5.17'
|
|
1272
|
+
peerDependenciesMeta:
|
|
1273
|
+
'@swc/helpers':
|
|
1274
|
+
optional: true
|
|
1275
|
+
|
|
1276
|
+
'@swc/counter@0.1.3':
|
|
1277
|
+
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
|
|
1278
|
+
|
|
1279
|
+
'@swc/types@0.1.24':
|
|
1280
|
+
resolution: {integrity: sha512-tjTMh3V4vAORHtdTprLlfoMptu1WfTZG9Rsca6yOKyNYsRr+MUXutKmliB17orgSZk5DpnDxs8GUdd/qwYxOng==}
|
|
1281
|
+
|
|
1282
|
+
'@swc/wasm@1.13.3':
|
|
1283
|
+
resolution: {integrity: sha512-ZhQfKxqFvrifksN8znSzes/oyfr8Q4mpKP0T8tYS/AaUzm/7v5OK22VlcTHR1gXHEtp16dlR8w+vYTFDCaUmnw==}
|
|
1284
|
+
|
|
1285
|
+
'@types/babel__core@7.20.5':
|
|
1286
|
+
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
|
|
1287
|
+
|
|
1288
|
+
'@types/babel__generator@7.27.0':
|
|
1289
|
+
resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
|
|
1290
|
+
|
|
1291
|
+
'@types/babel__template@7.4.4':
|
|
1292
|
+
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
|
|
1293
|
+
|
|
1294
|
+
'@types/babel__traverse@7.28.0':
|
|
1295
|
+
resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
|
|
1296
|
+
|
|
1297
|
+
'@types/estree@1.0.8':
|
|
1298
|
+
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
1299
|
+
|
|
1300
|
+
'@types/prop-types@15.7.15':
|
|
1301
|
+
resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==}
|
|
1302
|
+
|
|
1303
|
+
'@types/react@18.3.23':
|
|
1304
|
+
resolution: {integrity: sha512-/LDXMQh55EzZQ0uVAZmKKhfENivEvWz6E+EYzh+/MCjMhNsotd+ZHhBGIjFDTi6+fz0OhQQQLbTgdQIxxCsC0w==}
|
|
1305
|
+
|
|
1306
|
+
'@vitejs/plugin-react@4.7.0':
|
|
1307
|
+
resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==}
|
|
1308
|
+
engines: {node: ^14.18.0 || >=16.0.0}
|
|
1309
|
+
peerDependencies:
|
|
1310
|
+
vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
|
|
1311
|
+
|
|
1312
|
+
ansi-regex@5.0.1:
|
|
1313
|
+
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
|
|
1314
|
+
engines: {node: '>=8'}
|
|
1315
|
+
|
|
1316
|
+
ansi-regex@6.1.0:
|
|
1317
|
+
resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
|
|
1318
|
+
engines: {node: '>=12'}
|
|
1319
|
+
|
|
1320
|
+
ansi-styles@4.3.0:
|
|
1321
|
+
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
|
1322
|
+
engines: {node: '>=8'}
|
|
1323
|
+
|
|
1324
|
+
ansi-styles@6.2.1:
|
|
1325
|
+
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
|
|
1326
|
+
engines: {node: '>=12'}
|
|
1327
|
+
|
|
1328
|
+
anymatch@3.1.3:
|
|
1329
|
+
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
|
|
1330
|
+
engines: {node: '>= 8'}
|
|
1331
|
+
|
|
1332
|
+
aria-hidden@1.2.6:
|
|
1333
|
+
resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==}
|
|
1334
|
+
engines: {node: '>=10'}
|
|
1335
|
+
|
|
1336
|
+
balanced-match@1.0.2:
|
|
1337
|
+
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
|
1338
|
+
|
|
1339
|
+
base-x@4.0.1:
|
|
1340
|
+
resolution: {integrity: sha512-uAZ8x6r6S3aUM9rbHGVOIsR15U/ZSc82b3ymnCPsT45Gk1DDvhDPdIgB5MrhirZWt+5K0EEPQH985kNqZgNPFw==}
|
|
1341
|
+
|
|
1342
|
+
base64-js@1.5.1:
|
|
1343
|
+
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
|
|
1344
|
+
|
|
1345
|
+
binary-extensions@2.3.0:
|
|
1346
|
+
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
|
|
1347
|
+
engines: {node: '>=8'}
|
|
1348
|
+
|
|
1349
|
+
bl@5.1.0:
|
|
1350
|
+
resolution: {integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==}
|
|
1351
|
+
|
|
1352
|
+
brace-expansion@1.1.12:
|
|
1353
|
+
resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
|
|
1354
|
+
|
|
1355
|
+
brace-expansion@2.0.2:
|
|
1356
|
+
resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
|
|
1357
|
+
|
|
1358
|
+
braces@3.0.3:
|
|
1359
|
+
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
|
1360
|
+
engines: {node: '>=8'}
|
|
1361
|
+
|
|
1362
|
+
browser-fs-access@0.35.0:
|
|
1363
|
+
resolution: {integrity: sha512-sLoadumpRfsjprP8XzVjpQc0jK8yqHBx0PtUTGYj2fftT+P/t+uyDAQdMgGAPKD011in/O+YYGh7fIs0oG/viw==}
|
|
1364
|
+
|
|
1365
|
+
browserslist@4.25.2:
|
|
1366
|
+
resolution: {integrity: sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==}
|
|
1367
|
+
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
1368
|
+
hasBin: true
|
|
1369
|
+
|
|
1370
|
+
bs58@5.0.0:
|
|
1371
|
+
resolution: {integrity: sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==}
|
|
1372
|
+
|
|
1373
|
+
bs58check@3.0.1:
|
|
1374
|
+
resolution: {integrity: sha512-hjuuJvoWEybo7Hn/0xOrczQKKEKD63WguEjlhLExYs2wUBcebDC1jDNK17eEAD2lYfw82d5ASC1d7K3SWszjaQ==}
|
|
1375
|
+
|
|
1376
|
+
buffer@6.0.3:
|
|
1377
|
+
resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
|
|
1378
|
+
|
|
1379
|
+
caniuse-lite@1.0.30001735:
|
|
1380
|
+
resolution: {integrity: sha512-EV/laoX7Wq2J9TQlyIXRxTJqIw4sxfXS4OYgudGxBYRuTv0q7AM6yMEpU/Vo1I94thg9U6EZ2NfZx9GJq83u7w==}
|
|
1381
|
+
|
|
1382
|
+
cbor-extract@2.2.0:
|
|
1383
|
+
resolution: {integrity: sha512-Ig1zM66BjLfTXpNgKpvBePq271BPOvu8MR0Jl080yG7Jsl+wAZunfrwiwA+9ruzm/WEdIV5QF/bjDZTqyAIVHA==}
|
|
1384
|
+
hasBin: true
|
|
1385
|
+
|
|
1386
|
+
cbor-x@1.6.0:
|
|
1387
|
+
resolution: {integrity: sha512-0kareyRwHSkL6ws5VXHEf8uY1liitysCVJjlmhaLG+IXLqhSaOO+t63coaso7yjwEzWZzLy8fJo06gZDVQM9Qg==}
|
|
1388
|
+
|
|
1389
|
+
chalk@5.5.0:
|
|
1390
|
+
resolution: {integrity: sha512-1tm8DTaJhPBG3bIkVeZt1iZM9GfSX2lzOeDVZH9R9ffRHpmHvxZ/QhgQH/aDTkswQVt+YHdXAdS/In/30OjCbg==}
|
|
1391
|
+
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
|
|
1392
|
+
|
|
1393
|
+
chokidar@3.6.0:
|
|
1394
|
+
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
|
|
1395
|
+
engines: {node: '>= 8.10.0'}
|
|
1396
|
+
|
|
1397
|
+
class-variance-authority@0.7.1:
|
|
1398
|
+
resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
|
|
1399
|
+
|
|
1400
|
+
cli-cursor@4.0.0:
|
|
1401
|
+
resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==}
|
|
1402
|
+
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
|
1403
|
+
|
|
1404
|
+
cli-spinners@2.9.2:
|
|
1405
|
+
resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
|
|
1406
|
+
engines: {node: '>=6'}
|
|
1407
|
+
|
|
1408
|
+
clsx@2.1.1:
|
|
1409
|
+
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
|
|
1410
|
+
engines: {node: '>=6'}
|
|
1411
|
+
|
|
1412
|
+
cmdk@0.2.1:
|
|
1413
|
+
resolution: {integrity: sha512-U6//9lQ6JvT47+6OF6Gi8BvkxYQ8SCRRSKIJkthIMsFsLZRG0cKvTtuTaefyIKMQb8rvvXy0wGdpTNq/jPtm+g==}
|
|
1414
|
+
peerDependencies:
|
|
1415
|
+
react: ^18.0.0
|
|
1416
|
+
react-dom: ^18.0.0
|
|
1417
|
+
|
|
1418
|
+
codemirror@6.0.2:
|
|
1419
|
+
resolution: {integrity: sha512-VhydHotNW5w1UGK0Qj96BwSk/Zqbp9WbnyK2W/eVMv4QyF41INRGpjUhFJY7/uDNuudSc33a/PKr4iDqRduvHw==}
|
|
1420
|
+
|
|
1421
|
+
color-convert@2.0.1:
|
|
1422
|
+
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
|
1423
|
+
engines: {node: '>=7.0.0'}
|
|
1424
|
+
|
|
1425
|
+
color-name@1.1.4:
|
|
1426
|
+
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
|
1427
|
+
|
|
1428
|
+
commander@11.1.0:
|
|
1429
|
+
resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==}
|
|
1430
|
+
engines: {node: '>=16'}
|
|
1431
|
+
|
|
1432
|
+
concat-map@0.0.1:
|
|
1433
|
+
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
|
1434
|
+
|
|
1435
|
+
convert-source-map@2.0.0:
|
|
1436
|
+
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
|
|
1437
|
+
|
|
1438
|
+
crelt@1.0.6:
|
|
1439
|
+
resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==}
|
|
1440
|
+
|
|
1441
|
+
cross-spawn@7.0.6:
|
|
1442
|
+
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
|
|
1443
|
+
engines: {node: '>= 8'}
|
|
1444
|
+
|
|
1445
|
+
csstype@3.1.3:
|
|
1446
|
+
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
|
|
1447
|
+
|
|
1448
|
+
debug@4.4.1:
|
|
1449
|
+
resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
|
|
1450
|
+
engines: {node: '>=6.0'}
|
|
1451
|
+
peerDependencies:
|
|
1452
|
+
supports-color: '*'
|
|
1453
|
+
peerDependenciesMeta:
|
|
1454
|
+
supports-color:
|
|
1455
|
+
optional: true
|
|
1456
|
+
|
|
1457
|
+
decode-uri-component@0.4.1:
|
|
1458
|
+
resolution: {integrity: sha512-+8VxcR21HhTy8nOt6jf20w0c9CADrw1O8d+VZ/YzzCt4bJ3uBjw+D1q2osAB8RnpwwaeYBxy0HyKQxD5JBMuuQ==}
|
|
1459
|
+
engines: {node: '>=14.16'}
|
|
1460
|
+
|
|
1461
|
+
detect-libc@2.0.4:
|
|
1462
|
+
resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==}
|
|
1463
|
+
engines: {node: '>=8'}
|
|
1464
|
+
|
|
1465
|
+
detect-node-es@1.1.0:
|
|
1466
|
+
resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
|
|
1467
|
+
|
|
1468
|
+
diff@5.2.0:
|
|
1469
|
+
resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
|
|
1470
|
+
engines: {node: '>=0.3.1'}
|
|
1471
|
+
|
|
1472
|
+
eastasianwidth@0.2.0:
|
|
1473
|
+
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
|
|
1474
|
+
|
|
1475
|
+
electron-to-chromium@1.5.203:
|
|
1476
|
+
resolution: {integrity: sha512-uz4i0vLhfm6dLZWbz/iH88KNDV+ivj5+2SA+utpgjKaj9Q0iDLuwk6Idhe9BTxciHudyx6IvTvijhkPvFGUQ0g==}
|
|
1477
|
+
|
|
1478
|
+
emoji-regex@10.4.0:
|
|
1479
|
+
resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
|
|
1480
|
+
|
|
1481
|
+
emoji-regex@8.0.0:
|
|
1482
|
+
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
|
|
1483
|
+
|
|
1484
|
+
emoji-regex@9.2.2:
|
|
1485
|
+
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
|
|
1486
|
+
|
|
1487
|
+
esbuild@0.21.5:
|
|
1488
|
+
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
|
|
1489
|
+
engines: {node: '>=12'}
|
|
1490
|
+
hasBin: true
|
|
1491
|
+
|
|
1492
|
+
escalade@3.2.0:
|
|
1493
|
+
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
|
1494
|
+
engines: {node: '>=6'}
|
|
1495
|
+
|
|
1496
|
+
eventemitter3@5.0.1:
|
|
1497
|
+
resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
|
|
1498
|
+
|
|
1499
|
+
fast-diff@1.3.0:
|
|
1500
|
+
resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
|
|
1501
|
+
|
|
1502
|
+
fast-sha256@1.3.0:
|
|
1503
|
+
resolution: {integrity: sha512-n11RGP/lrWEFI/bWdygLxhI+pVeo1ZYIVwvvPkW7azl/rOy+F3HYRZ2K5zeE9mmkhQppyv9sQFx0JM9UabnpPQ==}
|
|
1504
|
+
|
|
1505
|
+
fill-range@7.1.1:
|
|
1506
|
+
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
|
|
1507
|
+
engines: {node: '>=8'}
|
|
1508
|
+
|
|
1509
|
+
filter-obj@5.1.0:
|
|
1510
|
+
resolution: {integrity: sha512-qWeTREPoT7I0bifpPUXtxkZJ1XJzxWtfoWWkdVGqa+eCr3SHW/Ocp89o8vLvbUuQnadybJpjOKu4V+RwO6sGng==}
|
|
1511
|
+
engines: {node: '>=14.16'}
|
|
1512
|
+
|
|
1513
|
+
foreground-child@3.3.1:
|
|
1514
|
+
resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
|
|
1515
|
+
engines: {node: '>=14'}
|
|
1516
|
+
|
|
1517
|
+
fsevents@2.3.3:
|
|
1518
|
+
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
1519
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
1520
|
+
os: [darwin]
|
|
1521
|
+
|
|
1522
|
+
gensync@1.0.0-beta.2:
|
|
1523
|
+
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
|
|
1524
|
+
engines: {node: '>=6.9.0'}
|
|
1525
|
+
|
|
1526
|
+
get-nonce@1.0.1:
|
|
1527
|
+
resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
|
|
1528
|
+
engines: {node: '>=6'}
|
|
1529
|
+
|
|
1530
|
+
glob-parent@5.1.2:
|
|
1531
|
+
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
|
|
1532
|
+
engines: {node: '>= 6'}
|
|
1533
|
+
|
|
1534
|
+
glob@10.4.5:
|
|
1535
|
+
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
|
|
1536
|
+
hasBin: true
|
|
1537
|
+
|
|
1538
|
+
has-flag@3.0.0:
|
|
1539
|
+
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
|
|
1540
|
+
engines: {node: '>=4'}
|
|
1541
|
+
|
|
1542
|
+
ieee754@1.2.1:
|
|
1543
|
+
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
|
|
1544
|
+
|
|
1545
|
+
ignore-by-default@1.0.1:
|
|
1546
|
+
resolution: {integrity: sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==}
|
|
1547
|
+
|
|
1548
|
+
inherits@2.0.4:
|
|
1549
|
+
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
|
1550
|
+
|
|
1551
|
+
is-binary-path@2.1.0:
|
|
1552
|
+
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
|
|
1553
|
+
engines: {node: '>=8'}
|
|
1554
|
+
|
|
1555
|
+
is-extglob@2.1.1:
|
|
1556
|
+
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
|
|
1557
|
+
engines: {node: '>=0.10.0'}
|
|
1558
|
+
|
|
1559
|
+
is-fullwidth-code-point@3.0.0:
|
|
1560
|
+
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
|
|
1561
|
+
engines: {node: '>=8'}
|
|
1562
|
+
|
|
1563
|
+
is-glob@4.0.3:
|
|
1564
|
+
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
|
1565
|
+
engines: {node: '>=0.10.0'}
|
|
1566
|
+
|
|
1567
|
+
is-interactive@2.0.0:
|
|
1568
|
+
resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==}
|
|
1569
|
+
engines: {node: '>=12'}
|
|
1570
|
+
|
|
1571
|
+
is-number@7.0.0:
|
|
1572
|
+
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
|
|
1573
|
+
engines: {node: '>=0.12.0'}
|
|
1574
|
+
|
|
1575
|
+
is-unicode-supported@1.3.0:
|
|
1576
|
+
resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==}
|
|
1577
|
+
engines: {node: '>=12'}
|
|
1578
|
+
|
|
1579
|
+
isexe@2.0.0:
|
|
1580
|
+
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
|
1581
|
+
|
|
1582
|
+
isomorphic-ws@5.0.0:
|
|
1583
|
+
resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==}
|
|
1584
|
+
peerDependencies:
|
|
1585
|
+
ws: '*'
|
|
1586
|
+
|
|
1587
|
+
jackspeak@3.4.3:
|
|
1588
|
+
resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
|
|
1589
|
+
|
|
1590
|
+
js-tokens@4.0.0:
|
|
1591
|
+
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
|
1592
|
+
|
|
1593
|
+
jsesc@3.1.0:
|
|
1594
|
+
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
|
|
1595
|
+
engines: {node: '>=6'}
|
|
1596
|
+
hasBin: true
|
|
1597
|
+
|
|
1598
|
+
json5@2.2.3:
|
|
1599
|
+
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
|
|
1600
|
+
engines: {node: '>=6'}
|
|
1601
|
+
hasBin: true
|
|
1602
|
+
|
|
1603
|
+
lodash-es@4.17.21:
|
|
1604
|
+
resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
|
|
1605
|
+
|
|
1606
|
+
log-symbols@5.1.0:
|
|
1607
|
+
resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==}
|
|
1608
|
+
engines: {node: '>=12'}
|
|
1609
|
+
|
|
1610
|
+
loose-envify@1.4.0:
|
|
1611
|
+
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
|
|
1612
|
+
hasBin: true
|
|
1613
|
+
|
|
1614
|
+
lru-cache@10.4.3:
|
|
1615
|
+
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
|
|
1616
|
+
|
|
1617
|
+
lru-cache@5.1.1:
|
|
1618
|
+
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
|
1619
|
+
|
|
1620
|
+
lucide-react@0.456.0:
|
|
1621
|
+
resolution: {integrity: sha512-DIIGJqTT5X05sbAsQ+OhA8OtJYyD4NsEMCA/HQW/Y6ToPQ7gwbtujIoeAaup4HpHzV35SQOarKAWH8LYglB6eA==}
|
|
1622
|
+
peerDependencies:
|
|
1623
|
+
react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc
|
|
1624
|
+
|
|
1625
|
+
lucide-react@0.460.0:
|
|
1626
|
+
resolution: {integrity: sha512-BVtq/DykVeIvRTJvRAgCsOwaGL8Un3Bxh8MbDxMhEWlZay3T4IpEKDEpwt5KZ0KJMHzgm6jrltxlT5eXOWXDHg==}
|
|
1627
|
+
peerDependencies:
|
|
1628
|
+
react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc
|
|
1629
|
+
|
|
1630
|
+
lucide@0.433.0:
|
|
1631
|
+
resolution: {integrity: sha512-RoyCuCYA0H1Fs0ImTjdpWCcpzvEGnKg5wLqlmAGLYLMJ0/YvjkbLSxbsFRJcZMDoWTBz1IiZ+6sHjJwuoIXURw==}
|
|
1632
|
+
|
|
1633
|
+
mime-db@1.52.0:
|
|
1634
|
+
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
|
|
1635
|
+
engines: {node: '>= 0.6'}
|
|
1636
|
+
|
|
1637
|
+
mime-types@2.1.35:
|
|
1638
|
+
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
|
|
1639
|
+
engines: {node: '>= 0.6'}
|
|
1640
|
+
|
|
1641
|
+
mimic-fn@2.1.0:
|
|
1642
|
+
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
|
|
1643
|
+
engines: {node: '>=6'}
|
|
1644
|
+
|
|
1645
|
+
minimatch@3.1.2:
|
|
1646
|
+
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
|
|
1647
|
+
|
|
1648
|
+
minimatch@9.0.5:
|
|
1649
|
+
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
|
|
1650
|
+
engines: {node: '>=16 || 14 >=14.17'}
|
|
1651
|
+
|
|
1652
|
+
minipass@7.1.2:
|
|
1653
|
+
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
|
|
1654
|
+
engines: {node: '>=16 || 14 >=14.17'}
|
|
1655
|
+
|
|
1656
|
+
ms@2.1.3:
|
|
1657
|
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
1658
|
+
|
|
1659
|
+
nanoid@3.3.11:
|
|
1660
|
+
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
|
|
1661
|
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
1662
|
+
hasBin: true
|
|
1663
|
+
|
|
1664
|
+
node-gyp-build-optional-packages@5.1.1:
|
|
1665
|
+
resolution: {integrity: sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==}
|
|
1666
|
+
hasBin: true
|
|
1667
|
+
|
|
1668
|
+
node-releases@2.0.19:
|
|
1669
|
+
resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
|
|
1670
|
+
|
|
1671
|
+
nodemon@3.1.10:
|
|
1672
|
+
resolution: {integrity: sha512-WDjw3pJ0/0jMFmyNDp3gvY2YizjLmmOUQo6DEBY+JgdvW/yQ9mEeSw6H5ythl5Ny2ytb7f9C2nIbjSxMNzbJXw==}
|
|
1673
|
+
engines: {node: '>=10'}
|
|
1674
|
+
hasBin: true
|
|
1675
|
+
|
|
1676
|
+
normalize-path@3.0.0:
|
|
1677
|
+
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
|
|
1678
|
+
engines: {node: '>=0.10.0'}
|
|
1679
|
+
|
|
1680
|
+
onetime@5.1.2:
|
|
1681
|
+
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
|
|
1682
|
+
engines: {node: '>=6'}
|
|
1683
|
+
|
|
1684
|
+
ora@7.0.1:
|
|
1685
|
+
resolution: {integrity: sha512-0TUxTiFJWv+JnjWm4o9yvuskpEJLXTcng8MJuKd+SzAzp2o+OP3HWqNhB4OdJRt1Vsd9/mR0oyaEYlOnL7XIRw==}
|
|
1686
|
+
engines: {node: '>=16'}
|
|
1687
|
+
|
|
1688
|
+
package-json-from-dist@1.0.1:
|
|
1689
|
+
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
|
|
1690
|
+
|
|
1691
|
+
path-key@3.1.1:
|
|
1692
|
+
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
|
1693
|
+
engines: {node: '>=8'}
|
|
1694
|
+
|
|
1695
|
+
path-scurry@1.11.1:
|
|
1696
|
+
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
|
|
1697
|
+
engines: {node: '>=16 || 14 >=14.18'}
|
|
1698
|
+
|
|
1699
|
+
picocolors@1.1.1:
|
|
1700
|
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
1701
|
+
|
|
1702
|
+
picomatch@2.3.1:
|
|
1703
|
+
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
|
|
1704
|
+
engines: {node: '>=8.6'}
|
|
1705
|
+
|
|
1706
|
+
postcss@8.5.6:
|
|
1707
|
+
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
|
|
1708
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
1709
|
+
|
|
1710
|
+
pstree.remy@1.1.8:
|
|
1711
|
+
resolution: {integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==}
|
|
1712
|
+
|
|
1713
|
+
pushwork@file:../..:
|
|
1714
|
+
resolution: {directory: ../.., type: directory}
|
|
1715
|
+
engines: {node: '>=18.0.0', pnpm: '>=8.0.0'}
|
|
1716
|
+
hasBin: true
|
|
1717
|
+
|
|
1718
|
+
query-string@8.2.0:
|
|
1719
|
+
resolution: {integrity: sha512-tUZIw8J0CawM5wyGBiDOAp7ObdRQh4uBor/fUR9ZjmbZVvw95OD9If4w3MQxr99rg0DJZ/9CIORcpEqU5hQG7g==}
|
|
1720
|
+
engines: {node: '>=14.16'}
|
|
1721
|
+
|
|
1722
|
+
react-dom@18.3.1:
|
|
1723
|
+
resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
|
|
1724
|
+
peerDependencies:
|
|
1725
|
+
react: ^18.3.1
|
|
1726
|
+
|
|
1727
|
+
react-merge-refs@2.1.1:
|
|
1728
|
+
resolution: {integrity: sha512-jLQXJ/URln51zskhgppGJ2ub7b2WFKGq3cl3NYKtlHoTG+dN2q7EzWrn3hN3EgPsTMvpR9tpq5ijdp7YwFZkag==}
|
|
1729
|
+
|
|
1730
|
+
react-refresh@0.17.0:
|
|
1731
|
+
resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==}
|
|
1732
|
+
engines: {node: '>=0.10.0'}
|
|
1733
|
+
|
|
1734
|
+
react-remove-scroll-bar@2.3.8:
|
|
1735
|
+
resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
|
|
1736
|
+
engines: {node: '>=10'}
|
|
1737
|
+
peerDependencies:
|
|
1738
|
+
'@types/react': '*'
|
|
1739
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
1740
|
+
peerDependenciesMeta:
|
|
1741
|
+
'@types/react':
|
|
1742
|
+
optional: true
|
|
1743
|
+
|
|
1744
|
+
react-remove-scroll@2.5.4:
|
|
1745
|
+
resolution: {integrity: sha512-xGVKJJr0SJGQVirVFAUZ2k1QLyO6m+2fy0l8Qawbp5Jgrv3DeLalrfMNBFSlmz5kriGGzsVBtGVnf4pTKIhhWA==}
|
|
1746
|
+
engines: {node: '>=10'}
|
|
1747
|
+
peerDependencies:
|
|
1748
|
+
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
1749
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
1750
|
+
peerDependenciesMeta:
|
|
1751
|
+
'@types/react':
|
|
1752
|
+
optional: true
|
|
1753
|
+
|
|
1754
|
+
react-remove-scroll@2.7.1:
|
|
1755
|
+
resolution: {integrity: sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==}
|
|
1756
|
+
engines: {node: '>=10'}
|
|
1757
|
+
peerDependencies:
|
|
1758
|
+
'@types/react': '*'
|
|
1759
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
|
|
1760
|
+
peerDependenciesMeta:
|
|
1761
|
+
'@types/react':
|
|
1762
|
+
optional: true
|
|
1763
|
+
|
|
1764
|
+
react-style-singleton@2.2.3:
|
|
1765
|
+
resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
|
|
1766
|
+
engines: {node: '>=10'}
|
|
1767
|
+
peerDependencies:
|
|
1768
|
+
'@types/react': '*'
|
|
1769
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
|
|
1770
|
+
peerDependenciesMeta:
|
|
1771
|
+
'@types/react':
|
|
1772
|
+
optional: true
|
|
1773
|
+
|
|
1774
|
+
react-usestateref@1.0.9:
|
|
1775
|
+
resolution: {integrity: sha512-t8KLsI7oje0HzfzGhxFXzuwbf1z9vhBM1ptHLUIHhYqZDKFuI5tzdhEVxSNzUkYxwF8XdpOErzHlKxvP7sTERw==}
|
|
1776
|
+
peerDependencies:
|
|
1777
|
+
react: '>16.0.0'
|
|
1778
|
+
|
|
1779
|
+
react@18.3.1:
|
|
1780
|
+
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
|
|
1781
|
+
engines: {node: '>=0.10.0'}
|
|
1782
|
+
|
|
1783
|
+
readable-stream@3.6.2:
|
|
1784
|
+
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
|
|
1785
|
+
engines: {node: '>= 6'}
|
|
1786
|
+
|
|
1787
|
+
readdirp@3.6.0:
|
|
1788
|
+
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
|
|
1789
|
+
engines: {node: '>=8.10.0'}
|
|
1790
|
+
|
|
1791
|
+
resolve.exports@2.0.3:
|
|
1792
|
+
resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==}
|
|
1793
|
+
engines: {node: '>=10'}
|
|
1794
|
+
|
|
1795
|
+
restore-cursor@4.0.0:
|
|
1796
|
+
resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==}
|
|
1797
|
+
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
|
1798
|
+
|
|
1799
|
+
rimraf@5.0.10:
|
|
1800
|
+
resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==}
|
|
1801
|
+
hasBin: true
|
|
1802
|
+
|
|
1803
|
+
rollup@4.46.2:
|
|
1804
|
+
resolution: {integrity: sha512-WMmLFI+Boh6xbop+OAGo9cQ3OgX9MIg7xOQjn+pTCwOkk+FNDAeAemXkJ3HzDJrVXleLOFVa1ipuc1AmEx1Dwg==}
|
|
1805
|
+
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
1806
|
+
hasBin: true
|
|
1807
|
+
|
|
1808
|
+
safe-buffer@5.2.1:
|
|
1809
|
+
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
|
|
1810
|
+
|
|
1811
|
+
scheduler@0.23.2:
|
|
1812
|
+
resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
|
|
1813
|
+
|
|
1814
|
+
semver@6.3.1:
|
|
1815
|
+
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
|
|
1816
|
+
hasBin: true
|
|
1817
|
+
|
|
1818
|
+
semver@7.7.2:
|
|
1819
|
+
resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
|
|
1820
|
+
engines: {node: '>=10'}
|
|
1821
|
+
hasBin: true
|
|
1822
|
+
|
|
1823
|
+
shebang-command@2.0.0:
|
|
1824
|
+
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
|
1825
|
+
engines: {node: '>=8'}
|
|
1826
|
+
|
|
1827
|
+
shebang-regex@3.0.0:
|
|
1828
|
+
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
|
1829
|
+
engines: {node: '>=8'}
|
|
1830
|
+
|
|
1831
|
+
signal-exit@3.0.7:
|
|
1832
|
+
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
|
|
1833
|
+
|
|
1834
|
+
signal-exit@4.1.0:
|
|
1835
|
+
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
|
|
1836
|
+
engines: {node: '>=14'}
|
|
1837
|
+
|
|
1838
|
+
signia-react@0.1.5:
|
|
1839
|
+
resolution: {integrity: sha512-DhHOEJNHIFq0sd4mFpMQx6U0vSb6MGrCS+iVdl1jM2Ts9iNyPc6zaWG/ko+ARS4L2cdHFpNH2l5YqoBNLwMyCw==}
|
|
1840
|
+
peerDependencies:
|
|
1841
|
+
react: ^18
|
|
1842
|
+
|
|
1843
|
+
signia@0.1.5:
|
|
1844
|
+
resolution: {integrity: sha512-ViJpywl7H1W6zRfqbu+86xpSCcuq6tpOen7I+gR8axaiyZP8txRNAoeCsL20UkuqzG/Ybtk0u4C2lawkiwPlnw==}
|
|
1845
|
+
|
|
1846
|
+
simple-update-notifier@2.0.0:
|
|
1847
|
+
resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==}
|
|
1848
|
+
engines: {node: '>=10'}
|
|
1849
|
+
|
|
1850
|
+
source-map-js@1.2.1:
|
|
1851
|
+
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
1852
|
+
engines: {node: '>=0.10.0'}
|
|
1853
|
+
|
|
1854
|
+
split-on-first@3.0.0:
|
|
1855
|
+
resolution: {integrity: sha512-qxQJTx2ryR0Dw0ITYyekNQWpz6f8dGd7vffGNflQQ3Iqj9NJ6qiZ7ELpZsJ/QBhIVAiDfXdag3+Gp8RvWa62AA==}
|
|
1856
|
+
engines: {node: '>=12'}
|
|
1857
|
+
|
|
1858
|
+
stdin-discarder@0.1.0:
|
|
1859
|
+
resolution: {integrity: sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ==}
|
|
1860
|
+
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
|
1861
|
+
|
|
1862
|
+
string-width@4.2.3:
|
|
1863
|
+
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
|
|
1864
|
+
engines: {node: '>=8'}
|
|
1865
|
+
|
|
1866
|
+
string-width@5.1.2:
|
|
1867
|
+
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
|
|
1868
|
+
engines: {node: '>=12'}
|
|
1869
|
+
|
|
1870
|
+
string-width@6.1.0:
|
|
1871
|
+
resolution: {integrity: sha512-k01swCJAgQmuADB0YIc+7TuatfNvTBVOoaUWJjTB9R4VJzR5vNWzf5t42ESVZFPS8xTySF7CAdV4t/aaIm3UnQ==}
|
|
1872
|
+
engines: {node: '>=16'}
|
|
1873
|
+
|
|
1874
|
+
string_decoder@1.3.0:
|
|
1875
|
+
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
|
|
1876
|
+
|
|
1877
|
+
strip-ansi@6.0.1:
|
|
1878
|
+
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
|
|
1879
|
+
engines: {node: '>=8'}
|
|
1880
|
+
|
|
1881
|
+
strip-ansi@7.1.0:
|
|
1882
|
+
resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
|
|
1883
|
+
engines: {node: '>=12'}
|
|
1884
|
+
|
|
1885
|
+
style-mod@4.1.2:
|
|
1886
|
+
resolution: {integrity: sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==}
|
|
1887
|
+
|
|
1888
|
+
supports-color@5.5.0:
|
|
1889
|
+
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
|
|
1890
|
+
engines: {node: '>=4'}
|
|
1891
|
+
|
|
1892
|
+
tailwind-merge@1.14.0:
|
|
1893
|
+
resolution: {integrity: sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==}
|
|
1894
|
+
|
|
1895
|
+
to-regex-range@5.0.1:
|
|
1896
|
+
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
|
1897
|
+
engines: {node: '>=8.0'}
|
|
1898
|
+
|
|
1899
|
+
touch@3.1.1:
|
|
1900
|
+
resolution: {integrity: sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==}
|
|
1901
|
+
hasBin: true
|
|
1902
|
+
|
|
1903
|
+
tslib@2.8.1:
|
|
1904
|
+
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
1905
|
+
|
|
1906
|
+
typescript@5.9.2:
|
|
1907
|
+
resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==}
|
|
1908
|
+
engines: {node: '>=14.17'}
|
|
1909
|
+
hasBin: true
|
|
1910
|
+
|
|
1911
|
+
undefsafe@2.0.5:
|
|
1912
|
+
resolution: {integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==}
|
|
1913
|
+
|
|
1914
|
+
update-browserslist-db@1.1.3:
|
|
1915
|
+
resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
|
|
1916
|
+
hasBin: true
|
|
1917
|
+
peerDependencies:
|
|
1918
|
+
browserslist: '>= 4.21.0'
|
|
1919
|
+
|
|
1920
|
+
use-callback-ref@1.3.3:
|
|
1921
|
+
resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
|
|
1922
|
+
engines: {node: '>=10'}
|
|
1923
|
+
peerDependencies:
|
|
1924
|
+
'@types/react': '*'
|
|
1925
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
|
|
1926
|
+
peerDependenciesMeta:
|
|
1927
|
+
'@types/react':
|
|
1928
|
+
optional: true
|
|
1929
|
+
|
|
1930
|
+
use-sidecar@1.1.3:
|
|
1931
|
+
resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
|
|
1932
|
+
engines: {node: '>=10'}
|
|
1933
|
+
peerDependencies:
|
|
1934
|
+
'@types/react': '*'
|
|
1935
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
|
|
1936
|
+
peerDependenciesMeta:
|
|
1937
|
+
'@types/react':
|
|
1938
|
+
optional: true
|
|
1939
|
+
|
|
1940
|
+
use-sync-external-store@1.5.0:
|
|
1941
|
+
resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==}
|
|
1942
|
+
peerDependencies:
|
|
1943
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
1944
|
+
|
|
1945
|
+
util-deprecate@1.0.2:
|
|
1946
|
+
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
|
1947
|
+
|
|
1948
|
+
uuid@10.0.0:
|
|
1949
|
+
resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
|
|
1950
|
+
hasBin: true
|
|
1951
|
+
|
|
1952
|
+
uuid@9.0.1:
|
|
1953
|
+
resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
|
|
1954
|
+
hasBin: true
|
|
1955
|
+
|
|
1956
|
+
vite-plugin-css-injected-by-js@3.5.2:
|
|
1957
|
+
resolution: {integrity: sha512-2MpU/Y+SCZyWUB6ua3HbJCrgnF0KACAsmzOQt1UvRVJCGF6S8xdA3ZUhWcWdM9ivG4I5az8PnQmwwrkC2CAQrQ==}
|
|
1958
|
+
peerDependencies:
|
|
1959
|
+
vite: '>2.0.0-0'
|
|
1960
|
+
|
|
1961
|
+
vite-plugin-top-level-await@1.6.0:
|
|
1962
|
+
resolution: {integrity: sha512-bNhUreLamTIkoulCR9aDXbTbhLk6n1YE8NJUTTxl5RYskNRtzOR0ASzSjBVRtNdjIfngDXo11qOsybGLNsrdww==}
|
|
1963
|
+
peerDependencies:
|
|
1964
|
+
vite: '>=2.8'
|
|
1965
|
+
|
|
1966
|
+
vite-plugin-wasm@3.5.0:
|
|
1967
|
+
resolution: {integrity: sha512-X5VWgCnqiQEGb+omhlBVsvTfxikKtoOgAzQ95+BZ8gQ+VfMHIjSHr0wyvXFQCa0eKQ0fKyaL0kWcEnYqBac4lQ==}
|
|
1968
|
+
peerDependencies:
|
|
1969
|
+
vite: ^2 || ^3 || ^4 || ^5 || ^6 || ^7
|
|
1970
|
+
|
|
1971
|
+
vite@5.4.19:
|
|
1972
|
+
resolution: {integrity: sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA==}
|
|
1973
|
+
engines: {node: ^18.0.0 || >=20.0.0}
|
|
1974
|
+
hasBin: true
|
|
1975
|
+
peerDependencies:
|
|
1976
|
+
'@types/node': ^18.0.0 || >=20.0.0
|
|
1977
|
+
less: '*'
|
|
1978
|
+
lightningcss: ^1.21.0
|
|
1979
|
+
sass: '*'
|
|
1980
|
+
sass-embedded: '*'
|
|
1981
|
+
stylus: '*'
|
|
1982
|
+
sugarss: '*'
|
|
1983
|
+
terser: ^5.4.0
|
|
1984
|
+
peerDependenciesMeta:
|
|
1985
|
+
'@types/node':
|
|
1986
|
+
optional: true
|
|
1987
|
+
less:
|
|
1988
|
+
optional: true
|
|
1989
|
+
lightningcss:
|
|
1990
|
+
optional: true
|
|
1991
|
+
sass:
|
|
1992
|
+
optional: true
|
|
1993
|
+
sass-embedded:
|
|
1994
|
+
optional: true
|
|
1995
|
+
stylus:
|
|
1996
|
+
optional: true
|
|
1997
|
+
sugarss:
|
|
1998
|
+
optional: true
|
|
1999
|
+
terser:
|
|
2000
|
+
optional: true
|
|
2001
|
+
|
|
2002
|
+
w3c-keyname@2.2.8:
|
|
2003
|
+
resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==}
|
|
2004
|
+
|
|
2005
|
+
which@2.0.2:
|
|
2006
|
+
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
|
2007
|
+
engines: {node: '>= 8'}
|
|
2008
|
+
hasBin: true
|
|
2009
|
+
|
|
2010
|
+
wrap-ansi@7.0.0:
|
|
2011
|
+
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
|
|
2012
|
+
engines: {node: '>=10'}
|
|
2013
|
+
|
|
2014
|
+
wrap-ansi@8.1.0:
|
|
2015
|
+
resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
|
|
2016
|
+
engines: {node: '>=12'}
|
|
2017
|
+
|
|
2018
|
+
ws@8.18.3:
|
|
2019
|
+
resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==}
|
|
2020
|
+
engines: {node: '>=10.0.0'}
|
|
2021
|
+
peerDependencies:
|
|
2022
|
+
bufferutil: ^4.0.1
|
|
2023
|
+
utf-8-validate: '>=5.0.2'
|
|
2024
|
+
peerDependenciesMeta:
|
|
2025
|
+
bufferutil:
|
|
2026
|
+
optional: true
|
|
2027
|
+
utf-8-validate:
|
|
2028
|
+
optional: true
|
|
2029
|
+
|
|
2030
|
+
xstate@5.20.2:
|
|
2031
|
+
resolution: {integrity: sha512-GZmLmc+WPKfFRxuTDAxCg0cUhS/ZnWaRD86DO8MKizeK4a050jd5k7UNnIQ2jJDWRig2/r0tmVXeezUNIhoz5Q==}
|
|
2032
|
+
|
|
2033
|
+
yallist@3.1.1:
|
|
2034
|
+
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
|
|
2035
|
+
|
|
2036
|
+
snapshots:
|
|
2037
|
+
|
|
2038
|
+
'@ampproject/remapping@2.3.0':
|
|
2039
|
+
dependencies:
|
|
2040
|
+
'@jridgewell/gen-mapping': 0.3.13
|
|
2041
|
+
'@jridgewell/trace-mapping': 0.3.30
|
|
2042
|
+
|
|
2043
|
+
'@automerge/automerge-codemirror@0.1.0':
|
|
2044
|
+
dependencies:
|
|
2045
|
+
'@automerge/automerge': 2.2.9
|
|
2046
|
+
'@codemirror/state': 6.5.2
|
|
2047
|
+
'@codemirror/view': 6.38.1
|
|
2048
|
+
codemirror: 6.0.2
|
|
2049
|
+
|
|
2050
|
+
'@automerge/automerge-repo-network-websocket@2.2.0':
|
|
2051
|
+
dependencies:
|
|
2052
|
+
'@automerge/automerge-repo': 2.2.0
|
|
2053
|
+
cbor-x: 1.6.0
|
|
2054
|
+
debug: 4.4.1(supports-color@5.5.0)
|
|
2055
|
+
eventemitter3: 5.0.1
|
|
2056
|
+
isomorphic-ws: 5.0.0(ws@8.18.3)
|
|
2057
|
+
ws: 8.18.3
|
|
2058
|
+
transitivePeerDependencies:
|
|
2059
|
+
- bufferutil
|
|
2060
|
+
- supports-color
|
|
2061
|
+
- utf-8-validate
|
|
2062
|
+
|
|
2063
|
+
'@automerge/automerge-repo-react-hooks@2.0.0-alpha.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2064
|
+
dependencies:
|
|
2065
|
+
'@automerge/automerge': 2.2.9
|
|
2066
|
+
'@automerge/automerge-repo': 2.0.0-alpha.23
|
|
2067
|
+
eventemitter3: 5.0.1
|
|
2068
|
+
react: 18.3.1
|
|
2069
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2070
|
+
react-usestateref: 1.0.9(react@18.3.1)
|
|
2071
|
+
transitivePeerDependencies:
|
|
2072
|
+
- supports-color
|
|
2073
|
+
|
|
2074
|
+
'@automerge/automerge-repo-react-hooks@2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2075
|
+
dependencies:
|
|
2076
|
+
'@automerge/automerge': 3.0.0
|
|
2077
|
+
'@automerge/automerge-repo': 2.2.0
|
|
2078
|
+
eventemitter3: 5.0.1
|
|
2079
|
+
react: 18.3.1
|
|
2080
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2081
|
+
react-usestateref: 1.0.9(react@18.3.1)
|
|
2082
|
+
transitivePeerDependencies:
|
|
2083
|
+
- supports-color
|
|
2084
|
+
|
|
2085
|
+
'@automerge/automerge-repo-storage-indexeddb@2.2.0':
|
|
2086
|
+
dependencies:
|
|
2087
|
+
'@automerge/automerge-repo': 2.2.0
|
|
2088
|
+
transitivePeerDependencies:
|
|
2089
|
+
- supports-color
|
|
2090
|
+
|
|
2091
|
+
'@automerge/automerge-repo-storage-nodefs@2.2.0':
|
|
2092
|
+
dependencies:
|
|
2093
|
+
'@automerge/automerge-repo': 2.2.0
|
|
2094
|
+
rimraf: 5.0.10
|
|
2095
|
+
transitivePeerDependencies:
|
|
2096
|
+
- supports-color
|
|
2097
|
+
|
|
2098
|
+
'@automerge/automerge-repo@2.0.0-alpha.23':
|
|
2099
|
+
dependencies:
|
|
2100
|
+
'@automerge/automerge': 2.2.9
|
|
2101
|
+
bs58check: 3.0.1
|
|
2102
|
+
cbor-x: 1.6.0
|
|
2103
|
+
debug: 4.4.1(supports-color@5.5.0)
|
|
2104
|
+
eventemitter3: 5.0.1
|
|
2105
|
+
fast-sha256: 1.3.0
|
|
2106
|
+
uuid: 9.0.1
|
|
2107
|
+
xstate: 5.20.2
|
|
2108
|
+
transitivePeerDependencies:
|
|
2109
|
+
- supports-color
|
|
2110
|
+
|
|
2111
|
+
'@automerge/automerge-repo@2.2.0':
|
|
2112
|
+
dependencies:
|
|
2113
|
+
'@automerge/automerge': 3.0.0
|
|
2114
|
+
bs58check: 3.0.1
|
|
2115
|
+
cbor-x: 1.6.0
|
|
2116
|
+
debug: 4.4.1(supports-color@5.5.0)
|
|
2117
|
+
eventemitter3: 5.0.1
|
|
2118
|
+
fast-sha256: 1.3.0
|
|
2119
|
+
uuid: 9.0.1
|
|
2120
|
+
xstate: 5.20.2
|
|
2121
|
+
transitivePeerDependencies:
|
|
2122
|
+
- supports-color
|
|
2123
|
+
|
|
2124
|
+
'@automerge/automerge@2.2.9':
|
|
2125
|
+
dependencies:
|
|
2126
|
+
uuid: 9.0.1
|
|
2127
|
+
|
|
2128
|
+
'@automerge/automerge@3.0.0': {}
|
|
2129
|
+
|
|
2130
|
+
'@automerge/automerge@3.1.1': {}
|
|
2131
|
+
|
|
2132
|
+
'@babel/code-frame@7.27.1':
|
|
2133
|
+
dependencies:
|
|
2134
|
+
'@babel/helper-validator-identifier': 7.27.1
|
|
2135
|
+
js-tokens: 4.0.0
|
|
2136
|
+
picocolors: 1.1.1
|
|
2137
|
+
|
|
2138
|
+
'@babel/compat-data@7.28.0': {}
|
|
2139
|
+
|
|
2140
|
+
'@babel/core@7.28.3':
|
|
2141
|
+
dependencies:
|
|
2142
|
+
'@ampproject/remapping': 2.3.0
|
|
2143
|
+
'@babel/code-frame': 7.27.1
|
|
2144
|
+
'@babel/generator': 7.28.3
|
|
2145
|
+
'@babel/helper-compilation-targets': 7.27.2
|
|
2146
|
+
'@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3)
|
|
2147
|
+
'@babel/helpers': 7.28.3
|
|
2148
|
+
'@babel/parser': 7.28.3
|
|
2149
|
+
'@babel/template': 7.27.2
|
|
2150
|
+
'@babel/traverse': 7.28.3
|
|
2151
|
+
'@babel/types': 7.28.2
|
|
2152
|
+
convert-source-map: 2.0.0
|
|
2153
|
+
debug: 4.4.1(supports-color@5.5.0)
|
|
2154
|
+
gensync: 1.0.0-beta.2
|
|
2155
|
+
json5: 2.2.3
|
|
2156
|
+
semver: 6.3.1
|
|
2157
|
+
transitivePeerDependencies:
|
|
2158
|
+
- supports-color
|
|
2159
|
+
|
|
2160
|
+
'@babel/generator@7.28.3':
|
|
2161
|
+
dependencies:
|
|
2162
|
+
'@babel/parser': 7.28.3
|
|
2163
|
+
'@babel/types': 7.28.2
|
|
2164
|
+
'@jridgewell/gen-mapping': 0.3.13
|
|
2165
|
+
'@jridgewell/trace-mapping': 0.3.30
|
|
2166
|
+
jsesc: 3.1.0
|
|
2167
|
+
|
|
2168
|
+
'@babel/helper-compilation-targets@7.27.2':
|
|
2169
|
+
dependencies:
|
|
2170
|
+
'@babel/compat-data': 7.28.0
|
|
2171
|
+
'@babel/helper-validator-option': 7.27.1
|
|
2172
|
+
browserslist: 4.25.2
|
|
2173
|
+
lru-cache: 5.1.1
|
|
2174
|
+
semver: 6.3.1
|
|
2175
|
+
|
|
2176
|
+
'@babel/helper-globals@7.28.0': {}
|
|
2177
|
+
|
|
2178
|
+
'@babel/helper-module-imports@7.27.1':
|
|
2179
|
+
dependencies:
|
|
2180
|
+
'@babel/traverse': 7.28.3
|
|
2181
|
+
'@babel/types': 7.28.2
|
|
2182
|
+
transitivePeerDependencies:
|
|
2183
|
+
- supports-color
|
|
2184
|
+
|
|
2185
|
+
'@babel/helper-module-transforms@7.28.3(@babel/core@7.28.3)':
|
|
2186
|
+
dependencies:
|
|
2187
|
+
'@babel/core': 7.28.3
|
|
2188
|
+
'@babel/helper-module-imports': 7.27.1
|
|
2189
|
+
'@babel/helper-validator-identifier': 7.27.1
|
|
2190
|
+
'@babel/traverse': 7.28.3
|
|
2191
|
+
transitivePeerDependencies:
|
|
2192
|
+
- supports-color
|
|
2193
|
+
|
|
2194
|
+
'@babel/helper-plugin-utils@7.27.1': {}
|
|
2195
|
+
|
|
2196
|
+
'@babel/helper-string-parser@7.27.1': {}
|
|
2197
|
+
|
|
2198
|
+
'@babel/helper-validator-identifier@7.27.1': {}
|
|
2199
|
+
|
|
2200
|
+
'@babel/helper-validator-option@7.27.1': {}
|
|
2201
|
+
|
|
2202
|
+
'@babel/helpers@7.28.3':
|
|
2203
|
+
dependencies:
|
|
2204
|
+
'@babel/template': 7.27.2
|
|
2205
|
+
'@babel/types': 7.28.2
|
|
2206
|
+
|
|
2207
|
+
'@babel/parser@7.28.3':
|
|
2208
|
+
dependencies:
|
|
2209
|
+
'@babel/types': 7.28.2
|
|
2210
|
+
|
|
2211
|
+
'@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.3)':
|
|
2212
|
+
dependencies:
|
|
2213
|
+
'@babel/core': 7.28.3
|
|
2214
|
+
'@babel/helper-plugin-utils': 7.27.1
|
|
2215
|
+
|
|
2216
|
+
'@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.3)':
|
|
2217
|
+
dependencies:
|
|
2218
|
+
'@babel/core': 7.28.3
|
|
2219
|
+
'@babel/helper-plugin-utils': 7.27.1
|
|
2220
|
+
|
|
2221
|
+
'@babel/runtime@7.28.3': {}
|
|
2222
|
+
|
|
2223
|
+
'@babel/template@7.27.2':
|
|
2224
|
+
dependencies:
|
|
2225
|
+
'@babel/code-frame': 7.27.1
|
|
2226
|
+
'@babel/parser': 7.28.3
|
|
2227
|
+
'@babel/types': 7.28.2
|
|
2228
|
+
|
|
2229
|
+
'@babel/traverse@7.28.3':
|
|
2230
|
+
dependencies:
|
|
2231
|
+
'@babel/code-frame': 7.27.1
|
|
2232
|
+
'@babel/generator': 7.28.3
|
|
2233
|
+
'@babel/helper-globals': 7.28.0
|
|
2234
|
+
'@babel/parser': 7.28.3
|
|
2235
|
+
'@babel/template': 7.27.2
|
|
2236
|
+
'@babel/types': 7.28.2
|
|
2237
|
+
debug: 4.4.1(supports-color@5.5.0)
|
|
2238
|
+
transitivePeerDependencies:
|
|
2239
|
+
- supports-color
|
|
2240
|
+
|
|
2241
|
+
'@babel/types@7.28.2':
|
|
2242
|
+
dependencies:
|
|
2243
|
+
'@babel/helper-string-parser': 7.27.1
|
|
2244
|
+
'@babel/helper-validator-identifier': 7.27.1
|
|
2245
|
+
|
|
2246
|
+
'@cbor-extract/cbor-extract-darwin-arm64@2.2.0':
|
|
2247
|
+
optional: true
|
|
2248
|
+
|
|
2249
|
+
'@cbor-extract/cbor-extract-darwin-x64@2.2.0':
|
|
2250
|
+
optional: true
|
|
2251
|
+
|
|
2252
|
+
'@cbor-extract/cbor-extract-linux-arm64@2.2.0':
|
|
2253
|
+
optional: true
|
|
2254
|
+
|
|
2255
|
+
'@cbor-extract/cbor-extract-linux-arm@2.2.0':
|
|
2256
|
+
optional: true
|
|
2257
|
+
|
|
2258
|
+
'@cbor-extract/cbor-extract-linux-x64@2.2.0':
|
|
2259
|
+
optional: true
|
|
2260
|
+
|
|
2261
|
+
'@cbor-extract/cbor-extract-win32-x64@2.2.0':
|
|
2262
|
+
optional: true
|
|
2263
|
+
|
|
2264
|
+
'@codemirror/autocomplete@6.18.6':
|
|
2265
|
+
dependencies:
|
|
2266
|
+
'@codemirror/language': 6.11.3
|
|
2267
|
+
'@codemirror/state': 6.5.2
|
|
2268
|
+
'@codemirror/view': 6.38.1
|
|
2269
|
+
'@lezer/common': 1.2.3
|
|
2270
|
+
|
|
2271
|
+
'@codemirror/commands@6.8.1':
|
|
2272
|
+
dependencies:
|
|
2273
|
+
'@codemirror/language': 6.11.3
|
|
2274
|
+
'@codemirror/state': 6.5.2
|
|
2275
|
+
'@codemirror/view': 6.38.1
|
|
2276
|
+
'@lezer/common': 1.2.3
|
|
2277
|
+
|
|
2278
|
+
'@codemirror/lang-angular@0.1.4':
|
|
2279
|
+
dependencies:
|
|
2280
|
+
'@codemirror/lang-html': 6.4.9
|
|
2281
|
+
'@codemirror/lang-javascript': 6.2.4
|
|
2282
|
+
'@codemirror/language': 6.11.3
|
|
2283
|
+
'@lezer/common': 1.2.3
|
|
2284
|
+
'@lezer/highlight': 1.2.1
|
|
2285
|
+
'@lezer/lr': 1.4.2
|
|
2286
|
+
|
|
2287
|
+
'@codemirror/lang-cpp@6.0.3':
|
|
2288
|
+
dependencies:
|
|
2289
|
+
'@codemirror/language': 6.11.3
|
|
2290
|
+
'@lezer/cpp': 1.1.3
|
|
2291
|
+
|
|
2292
|
+
'@codemirror/lang-css@6.3.1':
|
|
2293
|
+
dependencies:
|
|
2294
|
+
'@codemirror/autocomplete': 6.18.6
|
|
2295
|
+
'@codemirror/language': 6.11.3
|
|
2296
|
+
'@codemirror/state': 6.5.2
|
|
2297
|
+
'@lezer/common': 1.2.3
|
|
2298
|
+
'@lezer/css': 1.3.0
|
|
2299
|
+
|
|
2300
|
+
'@codemirror/lang-go@6.0.1':
|
|
2301
|
+
dependencies:
|
|
2302
|
+
'@codemirror/autocomplete': 6.18.6
|
|
2303
|
+
'@codemirror/language': 6.11.3
|
|
2304
|
+
'@codemirror/state': 6.5.2
|
|
2305
|
+
'@lezer/common': 1.2.3
|
|
2306
|
+
'@lezer/go': 1.0.1
|
|
2307
|
+
|
|
2308
|
+
'@codemirror/lang-html@6.4.9':
|
|
2309
|
+
dependencies:
|
|
2310
|
+
'@codemirror/autocomplete': 6.18.6
|
|
2311
|
+
'@codemirror/lang-css': 6.3.1
|
|
2312
|
+
'@codemirror/lang-javascript': 6.2.4
|
|
2313
|
+
'@codemirror/language': 6.11.3
|
|
2314
|
+
'@codemirror/state': 6.5.2
|
|
2315
|
+
'@codemirror/view': 6.38.1
|
|
2316
|
+
'@lezer/common': 1.2.3
|
|
2317
|
+
'@lezer/css': 1.3.0
|
|
2318
|
+
'@lezer/html': 1.3.10
|
|
2319
|
+
|
|
2320
|
+
'@codemirror/lang-java@6.0.2':
|
|
2321
|
+
dependencies:
|
|
2322
|
+
'@codemirror/language': 6.11.3
|
|
2323
|
+
'@lezer/java': 1.1.3
|
|
2324
|
+
|
|
2325
|
+
'@codemirror/lang-javascript@6.2.4':
|
|
2326
|
+
dependencies:
|
|
2327
|
+
'@codemirror/autocomplete': 6.18.6
|
|
2328
|
+
'@codemirror/language': 6.11.3
|
|
2329
|
+
'@codemirror/lint': 6.8.5
|
|
2330
|
+
'@codemirror/state': 6.5.2
|
|
2331
|
+
'@codemirror/view': 6.38.1
|
|
2332
|
+
'@lezer/common': 1.2.3
|
|
2333
|
+
'@lezer/javascript': 1.5.1
|
|
2334
|
+
|
|
2335
|
+
'@codemirror/lang-json@6.0.2':
|
|
2336
|
+
dependencies:
|
|
2337
|
+
'@codemirror/language': 6.11.3
|
|
2338
|
+
'@lezer/json': 1.0.3
|
|
2339
|
+
|
|
2340
|
+
'@codemirror/lang-less@6.0.2':
|
|
2341
|
+
dependencies:
|
|
2342
|
+
'@codemirror/lang-css': 6.3.1
|
|
2343
|
+
'@codemirror/language': 6.11.3
|
|
2344
|
+
'@lezer/common': 1.2.3
|
|
2345
|
+
'@lezer/highlight': 1.2.1
|
|
2346
|
+
'@lezer/lr': 1.4.2
|
|
2347
|
+
|
|
2348
|
+
'@codemirror/lang-liquid@6.3.0':
|
|
2349
|
+
dependencies:
|
|
2350
|
+
'@codemirror/autocomplete': 6.18.6
|
|
2351
|
+
'@codemirror/lang-html': 6.4.9
|
|
2352
|
+
'@codemirror/language': 6.11.3
|
|
2353
|
+
'@codemirror/state': 6.5.2
|
|
2354
|
+
'@codemirror/view': 6.38.1
|
|
2355
|
+
'@lezer/common': 1.2.3
|
|
2356
|
+
'@lezer/highlight': 1.2.1
|
|
2357
|
+
'@lezer/lr': 1.4.2
|
|
2358
|
+
|
|
2359
|
+
'@codemirror/lang-markdown@6.3.4':
|
|
2360
|
+
dependencies:
|
|
2361
|
+
'@codemirror/autocomplete': 6.18.6
|
|
2362
|
+
'@codemirror/lang-html': 6.4.9
|
|
2363
|
+
'@codemirror/language': 6.11.3
|
|
2364
|
+
'@codemirror/state': 6.5.2
|
|
2365
|
+
'@codemirror/view': 6.38.1
|
|
2366
|
+
'@lezer/common': 1.2.3
|
|
2367
|
+
'@lezer/markdown': 1.4.3
|
|
2368
|
+
|
|
2369
|
+
'@codemirror/lang-php@6.0.2':
|
|
2370
|
+
dependencies:
|
|
2371
|
+
'@codemirror/lang-html': 6.4.9
|
|
2372
|
+
'@codemirror/language': 6.11.3
|
|
2373
|
+
'@codemirror/state': 6.5.2
|
|
2374
|
+
'@lezer/common': 1.2.3
|
|
2375
|
+
'@lezer/php': 1.0.4
|
|
2376
|
+
|
|
2377
|
+
'@codemirror/lang-python@6.2.1':
|
|
2378
|
+
dependencies:
|
|
2379
|
+
'@codemirror/autocomplete': 6.18.6
|
|
2380
|
+
'@codemirror/language': 6.11.3
|
|
2381
|
+
'@codemirror/state': 6.5.2
|
|
2382
|
+
'@lezer/common': 1.2.3
|
|
2383
|
+
'@lezer/python': 1.1.18
|
|
2384
|
+
|
|
2385
|
+
'@codemirror/lang-rust@6.0.2':
|
|
2386
|
+
dependencies:
|
|
2387
|
+
'@codemirror/language': 6.11.3
|
|
2388
|
+
'@lezer/rust': 1.0.2
|
|
2389
|
+
|
|
2390
|
+
'@codemirror/lang-sass@6.0.2':
|
|
2391
|
+
dependencies:
|
|
2392
|
+
'@codemirror/lang-css': 6.3.1
|
|
2393
|
+
'@codemirror/language': 6.11.3
|
|
2394
|
+
'@codemirror/state': 6.5.2
|
|
2395
|
+
'@lezer/common': 1.2.3
|
|
2396
|
+
'@lezer/sass': 1.1.0
|
|
2397
|
+
|
|
2398
|
+
'@codemirror/lang-sql@6.9.1':
|
|
2399
|
+
dependencies:
|
|
2400
|
+
'@codemirror/autocomplete': 6.18.6
|
|
2401
|
+
'@codemirror/language': 6.11.3
|
|
2402
|
+
'@codemirror/state': 6.5.2
|
|
2403
|
+
'@lezer/common': 1.2.3
|
|
2404
|
+
'@lezer/highlight': 1.2.1
|
|
2405
|
+
'@lezer/lr': 1.4.2
|
|
2406
|
+
|
|
2407
|
+
'@codemirror/lang-vue@0.1.3':
|
|
2408
|
+
dependencies:
|
|
2409
|
+
'@codemirror/lang-html': 6.4.9
|
|
2410
|
+
'@codemirror/lang-javascript': 6.2.4
|
|
2411
|
+
'@codemirror/language': 6.11.3
|
|
2412
|
+
'@lezer/common': 1.2.3
|
|
2413
|
+
'@lezer/highlight': 1.2.1
|
|
2414
|
+
'@lezer/lr': 1.4.2
|
|
2415
|
+
|
|
2416
|
+
'@codemirror/lang-wast@6.0.2':
|
|
2417
|
+
dependencies:
|
|
2418
|
+
'@codemirror/language': 6.11.3
|
|
2419
|
+
'@lezer/common': 1.2.3
|
|
2420
|
+
'@lezer/highlight': 1.2.1
|
|
2421
|
+
'@lezer/lr': 1.4.2
|
|
2422
|
+
|
|
2423
|
+
'@codemirror/lang-xml@6.1.0':
|
|
2424
|
+
dependencies:
|
|
2425
|
+
'@codemirror/autocomplete': 6.18.6
|
|
2426
|
+
'@codemirror/language': 6.11.3
|
|
2427
|
+
'@codemirror/state': 6.5.2
|
|
2428
|
+
'@codemirror/view': 6.38.1
|
|
2429
|
+
'@lezer/common': 1.2.3
|
|
2430
|
+
'@lezer/xml': 1.0.6
|
|
2431
|
+
|
|
2432
|
+
'@codemirror/lang-yaml@6.1.2':
|
|
2433
|
+
dependencies:
|
|
2434
|
+
'@codemirror/autocomplete': 6.18.6
|
|
2435
|
+
'@codemirror/language': 6.11.3
|
|
2436
|
+
'@codemirror/state': 6.5.2
|
|
2437
|
+
'@lezer/common': 1.2.3
|
|
2438
|
+
'@lezer/highlight': 1.2.1
|
|
2439
|
+
'@lezer/lr': 1.4.2
|
|
2440
|
+
'@lezer/yaml': 1.0.3
|
|
2441
|
+
|
|
2442
|
+
'@codemirror/language-data@6.5.1':
|
|
2443
|
+
dependencies:
|
|
2444
|
+
'@codemirror/lang-angular': 0.1.4
|
|
2445
|
+
'@codemirror/lang-cpp': 6.0.3
|
|
2446
|
+
'@codemirror/lang-css': 6.3.1
|
|
2447
|
+
'@codemirror/lang-go': 6.0.1
|
|
2448
|
+
'@codemirror/lang-html': 6.4.9
|
|
2449
|
+
'@codemirror/lang-java': 6.0.2
|
|
2450
|
+
'@codemirror/lang-javascript': 6.2.4
|
|
2451
|
+
'@codemirror/lang-json': 6.0.2
|
|
2452
|
+
'@codemirror/lang-less': 6.0.2
|
|
2453
|
+
'@codemirror/lang-liquid': 6.3.0
|
|
2454
|
+
'@codemirror/lang-markdown': 6.3.4
|
|
2455
|
+
'@codemirror/lang-php': 6.0.2
|
|
2456
|
+
'@codemirror/lang-python': 6.2.1
|
|
2457
|
+
'@codemirror/lang-rust': 6.0.2
|
|
2458
|
+
'@codemirror/lang-sass': 6.0.2
|
|
2459
|
+
'@codemirror/lang-sql': 6.9.1
|
|
2460
|
+
'@codemirror/lang-vue': 0.1.3
|
|
2461
|
+
'@codemirror/lang-wast': 6.0.2
|
|
2462
|
+
'@codemirror/lang-xml': 6.1.0
|
|
2463
|
+
'@codemirror/lang-yaml': 6.1.2
|
|
2464
|
+
'@codemirror/language': 6.11.3
|
|
2465
|
+
'@codemirror/legacy-modes': 6.5.1
|
|
2466
|
+
|
|
2467
|
+
'@codemirror/language@6.11.3':
|
|
2468
|
+
dependencies:
|
|
2469
|
+
'@codemirror/state': 6.5.2
|
|
2470
|
+
'@codemirror/view': 6.38.1
|
|
2471
|
+
'@lezer/common': 1.2.3
|
|
2472
|
+
'@lezer/highlight': 1.2.1
|
|
2473
|
+
'@lezer/lr': 1.4.2
|
|
2474
|
+
style-mod: 4.1.2
|
|
2475
|
+
|
|
2476
|
+
'@codemirror/legacy-modes@6.5.1':
|
|
2477
|
+
dependencies:
|
|
2478
|
+
'@codemirror/language': 6.11.3
|
|
2479
|
+
|
|
2480
|
+
'@codemirror/lint@6.8.5':
|
|
2481
|
+
dependencies:
|
|
2482
|
+
'@codemirror/state': 6.5.2
|
|
2483
|
+
'@codemirror/view': 6.38.1
|
|
2484
|
+
crelt: 1.0.6
|
|
2485
|
+
|
|
2486
|
+
'@codemirror/search@6.5.11':
|
|
2487
|
+
dependencies:
|
|
2488
|
+
'@codemirror/state': 6.5.2
|
|
2489
|
+
'@codemirror/view': 6.38.1
|
|
2490
|
+
crelt: 1.0.6
|
|
2491
|
+
|
|
2492
|
+
'@codemirror/state@6.5.2':
|
|
2493
|
+
dependencies:
|
|
2494
|
+
'@marijn/find-cluster-break': 1.0.2
|
|
2495
|
+
|
|
2496
|
+
'@codemirror/view@6.38.1':
|
|
2497
|
+
dependencies:
|
|
2498
|
+
'@codemirror/state': 6.5.2
|
|
2499
|
+
crelt: 1.0.6
|
|
2500
|
+
style-mod: 4.1.2
|
|
2501
|
+
w3c-keyname: 2.2.8
|
|
2502
|
+
|
|
2503
|
+
'@esbuild/aix-ppc64@0.21.5':
|
|
2504
|
+
optional: true
|
|
2505
|
+
|
|
2506
|
+
'@esbuild/android-arm64@0.21.5':
|
|
2507
|
+
optional: true
|
|
2508
|
+
|
|
2509
|
+
'@esbuild/android-arm@0.21.5':
|
|
2510
|
+
optional: true
|
|
2511
|
+
|
|
2512
|
+
'@esbuild/android-x64@0.21.5':
|
|
2513
|
+
optional: true
|
|
2514
|
+
|
|
2515
|
+
'@esbuild/darwin-arm64@0.21.5':
|
|
2516
|
+
optional: true
|
|
2517
|
+
|
|
2518
|
+
'@esbuild/darwin-x64@0.21.5':
|
|
2519
|
+
optional: true
|
|
2520
|
+
|
|
2521
|
+
'@esbuild/freebsd-arm64@0.21.5':
|
|
2522
|
+
optional: true
|
|
2523
|
+
|
|
2524
|
+
'@esbuild/freebsd-x64@0.21.5':
|
|
2525
|
+
optional: true
|
|
2526
|
+
|
|
2527
|
+
'@esbuild/linux-arm64@0.21.5':
|
|
2528
|
+
optional: true
|
|
2529
|
+
|
|
2530
|
+
'@esbuild/linux-arm@0.21.5':
|
|
2531
|
+
optional: true
|
|
2532
|
+
|
|
2533
|
+
'@esbuild/linux-ia32@0.21.5':
|
|
2534
|
+
optional: true
|
|
2535
|
+
|
|
2536
|
+
'@esbuild/linux-loong64@0.21.5':
|
|
2537
|
+
optional: true
|
|
2538
|
+
|
|
2539
|
+
'@esbuild/linux-mips64el@0.21.5':
|
|
2540
|
+
optional: true
|
|
2541
|
+
|
|
2542
|
+
'@esbuild/linux-ppc64@0.21.5':
|
|
2543
|
+
optional: true
|
|
2544
|
+
|
|
2545
|
+
'@esbuild/linux-riscv64@0.21.5':
|
|
2546
|
+
optional: true
|
|
2547
|
+
|
|
2548
|
+
'@esbuild/linux-s390x@0.21.5':
|
|
2549
|
+
optional: true
|
|
2550
|
+
|
|
2551
|
+
'@esbuild/linux-x64@0.21.5':
|
|
2552
|
+
optional: true
|
|
2553
|
+
|
|
2554
|
+
'@esbuild/netbsd-x64@0.21.5':
|
|
2555
|
+
optional: true
|
|
2556
|
+
|
|
2557
|
+
'@esbuild/openbsd-x64@0.21.5':
|
|
2558
|
+
optional: true
|
|
2559
|
+
|
|
2560
|
+
'@esbuild/sunos-x64@0.21.5':
|
|
2561
|
+
optional: true
|
|
2562
|
+
|
|
2563
|
+
'@esbuild/win32-arm64@0.21.5':
|
|
2564
|
+
optional: true
|
|
2565
|
+
|
|
2566
|
+
'@esbuild/win32-ia32@0.21.5':
|
|
2567
|
+
optional: true
|
|
2568
|
+
|
|
2569
|
+
'@esbuild/win32-x64@0.21.5':
|
|
2570
|
+
optional: true
|
|
2571
|
+
|
|
2572
|
+
'@floating-ui/core@1.7.3':
|
|
2573
|
+
dependencies:
|
|
2574
|
+
'@floating-ui/utils': 0.2.10
|
|
2575
|
+
|
|
2576
|
+
'@floating-ui/dom@1.7.3':
|
|
2577
|
+
dependencies:
|
|
2578
|
+
'@floating-ui/core': 1.7.3
|
|
2579
|
+
'@floating-ui/utils': 0.2.10
|
|
2580
|
+
|
|
2581
|
+
'@floating-ui/react-dom@2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2582
|
+
dependencies:
|
|
2583
|
+
'@floating-ui/dom': 1.7.3
|
|
2584
|
+
react: 18.3.1
|
|
2585
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2586
|
+
|
|
2587
|
+
'@floating-ui/utils@0.2.10': {}
|
|
2588
|
+
|
|
2589
|
+
'@isaacs/cliui@8.0.2':
|
|
2590
|
+
dependencies:
|
|
2591
|
+
string-width: 5.1.2
|
|
2592
|
+
string-width-cjs: string-width@4.2.3
|
|
2593
|
+
strip-ansi: 7.1.0
|
|
2594
|
+
strip-ansi-cjs: strip-ansi@6.0.1
|
|
2595
|
+
wrap-ansi: 8.1.0
|
|
2596
|
+
wrap-ansi-cjs: wrap-ansi@7.0.0
|
|
2597
|
+
|
|
2598
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
2599
|
+
dependencies:
|
|
2600
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2601
|
+
'@jridgewell/trace-mapping': 0.3.30
|
|
2602
|
+
|
|
2603
|
+
'@jridgewell/resolve-uri@3.1.2': {}
|
|
2604
|
+
|
|
2605
|
+
'@jridgewell/sourcemap-codec@1.5.5': {}
|
|
2606
|
+
|
|
2607
|
+
'@jridgewell/trace-mapping@0.3.30':
|
|
2608
|
+
dependencies:
|
|
2609
|
+
'@jridgewell/resolve-uri': 3.1.2
|
|
2610
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2611
|
+
|
|
2612
|
+
'@lezer/common@1.2.3': {}
|
|
2613
|
+
|
|
2614
|
+
'@lezer/cpp@1.1.3':
|
|
2615
|
+
dependencies:
|
|
2616
|
+
'@lezer/common': 1.2.3
|
|
2617
|
+
'@lezer/highlight': 1.2.1
|
|
2618
|
+
'@lezer/lr': 1.4.2
|
|
2619
|
+
|
|
2620
|
+
'@lezer/css@1.3.0':
|
|
2621
|
+
dependencies:
|
|
2622
|
+
'@lezer/common': 1.2.3
|
|
2623
|
+
'@lezer/highlight': 1.2.1
|
|
2624
|
+
'@lezer/lr': 1.4.2
|
|
2625
|
+
|
|
2626
|
+
'@lezer/go@1.0.1':
|
|
2627
|
+
dependencies:
|
|
2628
|
+
'@lezer/common': 1.2.3
|
|
2629
|
+
'@lezer/highlight': 1.2.1
|
|
2630
|
+
'@lezer/lr': 1.4.2
|
|
2631
|
+
|
|
2632
|
+
'@lezer/highlight@1.2.1':
|
|
2633
|
+
dependencies:
|
|
2634
|
+
'@lezer/common': 1.2.3
|
|
2635
|
+
|
|
2636
|
+
'@lezer/html@1.3.10':
|
|
2637
|
+
dependencies:
|
|
2638
|
+
'@lezer/common': 1.2.3
|
|
2639
|
+
'@lezer/highlight': 1.2.1
|
|
2640
|
+
'@lezer/lr': 1.4.2
|
|
2641
|
+
|
|
2642
|
+
'@lezer/java@1.1.3':
|
|
2643
|
+
dependencies:
|
|
2644
|
+
'@lezer/common': 1.2.3
|
|
2645
|
+
'@lezer/highlight': 1.2.1
|
|
2646
|
+
'@lezer/lr': 1.4.2
|
|
2647
|
+
|
|
2648
|
+
'@lezer/javascript@1.5.1':
|
|
2649
|
+
dependencies:
|
|
2650
|
+
'@lezer/common': 1.2.3
|
|
2651
|
+
'@lezer/highlight': 1.2.1
|
|
2652
|
+
'@lezer/lr': 1.4.2
|
|
2653
|
+
|
|
2654
|
+
'@lezer/json@1.0.3':
|
|
2655
|
+
dependencies:
|
|
2656
|
+
'@lezer/common': 1.2.3
|
|
2657
|
+
'@lezer/highlight': 1.2.1
|
|
2658
|
+
'@lezer/lr': 1.4.2
|
|
2659
|
+
|
|
2660
|
+
'@lezer/lr@1.4.2':
|
|
2661
|
+
dependencies:
|
|
2662
|
+
'@lezer/common': 1.2.3
|
|
2663
|
+
|
|
2664
|
+
'@lezer/markdown@1.4.3':
|
|
2665
|
+
dependencies:
|
|
2666
|
+
'@lezer/common': 1.2.3
|
|
2667
|
+
'@lezer/highlight': 1.2.1
|
|
2668
|
+
|
|
2669
|
+
'@lezer/php@1.0.4':
|
|
2670
|
+
dependencies:
|
|
2671
|
+
'@lezer/common': 1.2.3
|
|
2672
|
+
'@lezer/highlight': 1.2.1
|
|
2673
|
+
'@lezer/lr': 1.4.2
|
|
2674
|
+
|
|
2675
|
+
'@lezer/python@1.1.18':
|
|
2676
|
+
dependencies:
|
|
2677
|
+
'@lezer/common': 1.2.3
|
|
2678
|
+
'@lezer/highlight': 1.2.1
|
|
2679
|
+
'@lezer/lr': 1.4.2
|
|
2680
|
+
|
|
2681
|
+
'@lezer/rust@1.0.2':
|
|
2682
|
+
dependencies:
|
|
2683
|
+
'@lezer/common': 1.2.3
|
|
2684
|
+
'@lezer/highlight': 1.2.1
|
|
2685
|
+
'@lezer/lr': 1.4.2
|
|
2686
|
+
|
|
2687
|
+
'@lezer/sass@1.1.0':
|
|
2688
|
+
dependencies:
|
|
2689
|
+
'@lezer/common': 1.2.3
|
|
2690
|
+
'@lezer/highlight': 1.2.1
|
|
2691
|
+
'@lezer/lr': 1.4.2
|
|
2692
|
+
|
|
2693
|
+
'@lezer/xml@1.0.6':
|
|
2694
|
+
dependencies:
|
|
2695
|
+
'@lezer/common': 1.2.3
|
|
2696
|
+
'@lezer/highlight': 1.2.1
|
|
2697
|
+
'@lezer/lr': 1.4.2
|
|
2698
|
+
|
|
2699
|
+
'@lezer/yaml@1.0.3':
|
|
2700
|
+
dependencies:
|
|
2701
|
+
'@lezer/common': 1.2.3
|
|
2702
|
+
'@lezer/highlight': 1.2.1
|
|
2703
|
+
'@lezer/lr': 1.4.2
|
|
2704
|
+
|
|
2705
|
+
'@marijn/find-cluster-break@1.0.2': {}
|
|
2706
|
+
|
|
2707
|
+
'@noble/hashes@1.8.0': {}
|
|
2708
|
+
|
|
2709
|
+
'@patchwork/sdk@file:../../../patchwork/sdk(@types/react@18.3.23)':
|
|
2710
|
+
dependencies:
|
|
2711
|
+
'@automerge/automerge': 3.0.0
|
|
2712
|
+
'@automerge/automerge-codemirror': 0.1.0
|
|
2713
|
+
'@automerge/automerge-repo': 2.2.0
|
|
2714
|
+
'@automerge/automerge-repo-react-hooks': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2715
|
+
'@codemirror/autocomplete': 6.18.6
|
|
2716
|
+
'@codemirror/commands': 6.8.1
|
|
2717
|
+
'@codemirror/lang-markdown': 6.3.4
|
|
2718
|
+
'@codemirror/language': 6.11.3
|
|
2719
|
+
'@codemirror/language-data': 6.5.1
|
|
2720
|
+
'@codemirror/search': 6.5.11
|
|
2721
|
+
'@codemirror/state': 6.5.2
|
|
2722
|
+
'@codemirror/view': 6.38.1
|
|
2723
|
+
'@lezer/highlight': 1.2.1
|
|
2724
|
+
'@radix-ui/react-avatar': 1.1.10(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2725
|
+
'@radix-ui/react-checkbox': 1.3.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2726
|
+
'@radix-ui/react-context-menu': 2.2.16(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2727
|
+
'@radix-ui/react-dialog': 1.1.15(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2728
|
+
'@radix-ui/react-dropdown-menu': 2.1.16(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2729
|
+
'@radix-ui/react-label': 2.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2730
|
+
'@radix-ui/react-popover': 1.1.15(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2731
|
+
'@radix-ui/react-progress': 1.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2732
|
+
'@radix-ui/react-select': 2.2.6(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2733
|
+
'@radix-ui/react-slider': 1.3.6(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2734
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@18.3.23)(react@18.3.1)
|
|
2735
|
+
'@radix-ui/react-switch': 1.2.6(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2736
|
+
'@radix-ui/react-tabs': 1.1.13(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2737
|
+
'@radix-ui/react-toast': 1.2.15(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2738
|
+
'@radix-ui/react-tooltip': 1.2.8(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2739
|
+
class-variance-authority: 0.7.1
|
|
2740
|
+
clsx: 2.1.1
|
|
2741
|
+
cmdk: 0.2.1(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2742
|
+
codemirror: 6.0.2
|
|
2743
|
+
diff: 5.2.0
|
|
2744
|
+
eventemitter3: 5.0.1
|
|
2745
|
+
lodash-es: 4.17.21
|
|
2746
|
+
lucide: 0.433.0
|
|
2747
|
+
lucide-react: 0.456.0(react@18.3.1)
|
|
2748
|
+
query-string: 8.2.0
|
|
2749
|
+
react: 18.3.1
|
|
2750
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2751
|
+
react-merge-refs: 2.1.1
|
|
2752
|
+
resolve.exports: 2.0.3
|
|
2753
|
+
signia: 0.1.5
|
|
2754
|
+
signia-react: 0.1.5(react@18.3.1)
|
|
2755
|
+
tailwind-merge: 1.14.0
|
|
2756
|
+
tslib: 2.8.1
|
|
2757
|
+
transitivePeerDependencies:
|
|
2758
|
+
- '@types/react'
|
|
2759
|
+
- '@types/react-dom'
|
|
2760
|
+
- supports-color
|
|
2761
|
+
|
|
2762
|
+
'@pkgjs/parseargs@0.11.0':
|
|
2763
|
+
optional: true
|
|
2764
|
+
|
|
2765
|
+
'@radix-ui/number@1.1.1': {}
|
|
2766
|
+
|
|
2767
|
+
'@radix-ui/primitive@1.0.0':
|
|
2768
|
+
dependencies:
|
|
2769
|
+
'@babel/runtime': 7.28.3
|
|
2770
|
+
|
|
2771
|
+
'@radix-ui/primitive@1.1.3': {}
|
|
2772
|
+
|
|
2773
|
+
'@radix-ui/react-arrow@1.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2774
|
+
dependencies:
|
|
2775
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2776
|
+
react: 18.3.1
|
|
2777
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2778
|
+
optionalDependencies:
|
|
2779
|
+
'@types/react': 18.3.23
|
|
2780
|
+
|
|
2781
|
+
'@radix-ui/react-avatar@1.1.10(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2782
|
+
dependencies:
|
|
2783
|
+
'@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
2784
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2785
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
2786
|
+
'@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@18.3.23)(react@18.3.1)
|
|
2787
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
2788
|
+
react: 18.3.1
|
|
2789
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2790
|
+
optionalDependencies:
|
|
2791
|
+
'@types/react': 18.3.23
|
|
2792
|
+
|
|
2793
|
+
'@radix-ui/react-checkbox@1.3.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2794
|
+
dependencies:
|
|
2795
|
+
'@radix-ui/primitive': 1.1.3
|
|
2796
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
2797
|
+
'@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
2798
|
+
'@radix-ui/react-presence': 1.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2799
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2800
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1)
|
|
2801
|
+
'@radix-ui/react-use-previous': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
2802
|
+
'@radix-ui/react-use-size': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
2803
|
+
react: 18.3.1
|
|
2804
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2805
|
+
optionalDependencies:
|
|
2806
|
+
'@types/react': 18.3.23
|
|
2807
|
+
|
|
2808
|
+
'@radix-ui/react-collection@1.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2809
|
+
dependencies:
|
|
2810
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
2811
|
+
'@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
2812
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2813
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@18.3.23)(react@18.3.1)
|
|
2814
|
+
react: 18.3.1
|
|
2815
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2816
|
+
optionalDependencies:
|
|
2817
|
+
'@types/react': 18.3.23
|
|
2818
|
+
|
|
2819
|
+
'@radix-ui/react-compose-refs@1.0.0(react@18.3.1)':
|
|
2820
|
+
dependencies:
|
|
2821
|
+
'@babel/runtime': 7.28.3
|
|
2822
|
+
react: 18.3.1
|
|
2823
|
+
|
|
2824
|
+
'@radix-ui/react-compose-refs@1.1.2(@types/react@18.3.23)(react@18.3.1)':
|
|
2825
|
+
dependencies:
|
|
2826
|
+
react: 18.3.1
|
|
2827
|
+
optionalDependencies:
|
|
2828
|
+
'@types/react': 18.3.23
|
|
2829
|
+
|
|
2830
|
+
'@radix-ui/react-context-menu@2.2.16(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2831
|
+
dependencies:
|
|
2832
|
+
'@radix-ui/primitive': 1.1.3
|
|
2833
|
+
'@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
2834
|
+
'@radix-ui/react-menu': 2.1.16(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2835
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2836
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
2837
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1)
|
|
2838
|
+
react: 18.3.1
|
|
2839
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2840
|
+
optionalDependencies:
|
|
2841
|
+
'@types/react': 18.3.23
|
|
2842
|
+
|
|
2843
|
+
'@radix-ui/react-context@1.0.0(react@18.3.1)':
|
|
2844
|
+
dependencies:
|
|
2845
|
+
'@babel/runtime': 7.28.3
|
|
2846
|
+
react: 18.3.1
|
|
2847
|
+
|
|
2848
|
+
'@radix-ui/react-context@1.1.2(@types/react@18.3.23)(react@18.3.1)':
|
|
2849
|
+
dependencies:
|
|
2850
|
+
react: 18.3.1
|
|
2851
|
+
optionalDependencies:
|
|
2852
|
+
'@types/react': 18.3.23
|
|
2853
|
+
|
|
2854
|
+
'@radix-ui/react-dialog@1.0.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2855
|
+
dependencies:
|
|
2856
|
+
'@babel/runtime': 7.28.3
|
|
2857
|
+
'@radix-ui/primitive': 1.0.0
|
|
2858
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.3.1)
|
|
2859
|
+
'@radix-ui/react-context': 1.0.0(react@18.3.1)
|
|
2860
|
+
'@radix-ui/react-dismissable-layer': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2861
|
+
'@radix-ui/react-focus-guards': 1.0.0(react@18.3.1)
|
|
2862
|
+
'@radix-ui/react-focus-scope': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2863
|
+
'@radix-ui/react-id': 1.0.0(react@18.3.1)
|
|
2864
|
+
'@radix-ui/react-portal': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2865
|
+
'@radix-ui/react-presence': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2866
|
+
'@radix-ui/react-primitive': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2867
|
+
'@radix-ui/react-slot': 1.0.0(react@18.3.1)
|
|
2868
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.3.1)
|
|
2869
|
+
aria-hidden: 1.2.6
|
|
2870
|
+
react: 18.3.1
|
|
2871
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2872
|
+
react-remove-scroll: 2.5.4(@types/react@18.3.23)(react@18.3.1)
|
|
2873
|
+
transitivePeerDependencies:
|
|
2874
|
+
- '@types/react'
|
|
2875
|
+
|
|
2876
|
+
'@radix-ui/react-dialog@1.1.15(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2877
|
+
dependencies:
|
|
2878
|
+
'@radix-ui/primitive': 1.1.3
|
|
2879
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
2880
|
+
'@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
2881
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2882
|
+
'@radix-ui/react-focus-guards': 1.1.3(@types/react@18.3.23)(react@18.3.1)
|
|
2883
|
+
'@radix-ui/react-focus-scope': 1.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2884
|
+
'@radix-ui/react-id': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
2885
|
+
'@radix-ui/react-portal': 1.1.9(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2886
|
+
'@radix-ui/react-presence': 1.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2887
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2888
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@18.3.23)(react@18.3.1)
|
|
2889
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1)
|
|
2890
|
+
aria-hidden: 1.2.6
|
|
2891
|
+
react: 18.3.1
|
|
2892
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2893
|
+
react-remove-scroll: 2.7.1(@types/react@18.3.23)(react@18.3.1)
|
|
2894
|
+
optionalDependencies:
|
|
2895
|
+
'@types/react': 18.3.23
|
|
2896
|
+
|
|
2897
|
+
'@radix-ui/react-direction@1.1.1(@types/react@18.3.23)(react@18.3.1)':
|
|
2898
|
+
dependencies:
|
|
2899
|
+
react: 18.3.1
|
|
2900
|
+
optionalDependencies:
|
|
2901
|
+
'@types/react': 18.3.23
|
|
2902
|
+
|
|
2903
|
+
'@radix-ui/react-dismissable-layer@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2904
|
+
dependencies:
|
|
2905
|
+
'@babel/runtime': 7.28.3
|
|
2906
|
+
'@radix-ui/primitive': 1.0.0
|
|
2907
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.3.1)
|
|
2908
|
+
'@radix-ui/react-primitive': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2909
|
+
'@radix-ui/react-use-callback-ref': 1.0.0(react@18.3.1)
|
|
2910
|
+
'@radix-ui/react-use-escape-keydown': 1.0.0(react@18.3.1)
|
|
2911
|
+
react: 18.3.1
|
|
2912
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2913
|
+
|
|
2914
|
+
'@radix-ui/react-dismissable-layer@1.1.11(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2915
|
+
dependencies:
|
|
2916
|
+
'@radix-ui/primitive': 1.1.3
|
|
2917
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
2918
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2919
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
2920
|
+
'@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
2921
|
+
react: 18.3.1
|
|
2922
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2923
|
+
optionalDependencies:
|
|
2924
|
+
'@types/react': 18.3.23
|
|
2925
|
+
|
|
2926
|
+
'@radix-ui/react-dropdown-menu@2.1.16(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2927
|
+
dependencies:
|
|
2928
|
+
'@radix-ui/primitive': 1.1.3
|
|
2929
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
2930
|
+
'@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
2931
|
+
'@radix-ui/react-id': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
2932
|
+
'@radix-ui/react-menu': 2.1.16(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2933
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2934
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1)
|
|
2935
|
+
react: 18.3.1
|
|
2936
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2937
|
+
optionalDependencies:
|
|
2938
|
+
'@types/react': 18.3.23
|
|
2939
|
+
|
|
2940
|
+
'@radix-ui/react-focus-guards@1.0.0(react@18.3.1)':
|
|
2941
|
+
dependencies:
|
|
2942
|
+
'@babel/runtime': 7.28.3
|
|
2943
|
+
react: 18.3.1
|
|
2944
|
+
|
|
2945
|
+
'@radix-ui/react-focus-guards@1.1.3(@types/react@18.3.23)(react@18.3.1)':
|
|
2946
|
+
dependencies:
|
|
2947
|
+
react: 18.3.1
|
|
2948
|
+
optionalDependencies:
|
|
2949
|
+
'@types/react': 18.3.23
|
|
2950
|
+
|
|
2951
|
+
'@radix-ui/react-focus-scope@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2952
|
+
dependencies:
|
|
2953
|
+
'@babel/runtime': 7.28.3
|
|
2954
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.3.1)
|
|
2955
|
+
'@radix-ui/react-primitive': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2956
|
+
'@radix-ui/react-use-callback-ref': 1.0.0(react@18.3.1)
|
|
2957
|
+
react: 18.3.1
|
|
2958
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2959
|
+
|
|
2960
|
+
'@radix-ui/react-focus-scope@1.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2961
|
+
dependencies:
|
|
2962
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
2963
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2964
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
2965
|
+
react: 18.3.1
|
|
2966
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2967
|
+
optionalDependencies:
|
|
2968
|
+
'@types/react': 18.3.23
|
|
2969
|
+
|
|
2970
|
+
'@radix-ui/react-id@1.0.0(react@18.3.1)':
|
|
2971
|
+
dependencies:
|
|
2972
|
+
'@babel/runtime': 7.28.3
|
|
2973
|
+
'@radix-ui/react-use-layout-effect': 1.0.0(react@18.3.1)
|
|
2974
|
+
react: 18.3.1
|
|
2975
|
+
|
|
2976
|
+
'@radix-ui/react-id@1.1.1(@types/react@18.3.23)(react@18.3.1)':
|
|
2977
|
+
dependencies:
|
|
2978
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
2979
|
+
react: 18.3.1
|
|
2980
|
+
optionalDependencies:
|
|
2981
|
+
'@types/react': 18.3.23
|
|
2982
|
+
|
|
2983
|
+
'@radix-ui/react-label@2.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2984
|
+
dependencies:
|
|
2985
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2986
|
+
react: 18.3.1
|
|
2987
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2988
|
+
optionalDependencies:
|
|
2989
|
+
'@types/react': 18.3.23
|
|
2990
|
+
|
|
2991
|
+
'@radix-ui/react-menu@2.1.16(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
2992
|
+
dependencies:
|
|
2993
|
+
'@radix-ui/primitive': 1.1.3
|
|
2994
|
+
'@radix-ui/react-collection': 1.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2995
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
2996
|
+
'@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
2997
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
2998
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
2999
|
+
'@radix-ui/react-focus-guards': 1.1.3(@types/react@18.3.23)(react@18.3.1)
|
|
3000
|
+
'@radix-ui/react-focus-scope': 1.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3001
|
+
'@radix-ui/react-id': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3002
|
+
'@radix-ui/react-popper': 1.2.8(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3003
|
+
'@radix-ui/react-portal': 1.1.9(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3004
|
+
'@radix-ui/react-presence': 1.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3005
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3006
|
+
'@radix-ui/react-roving-focus': 1.1.11(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3007
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@18.3.23)(react@18.3.1)
|
|
3008
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3009
|
+
aria-hidden: 1.2.6
|
|
3010
|
+
react: 18.3.1
|
|
3011
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
3012
|
+
react-remove-scroll: 2.7.1(@types/react@18.3.23)(react@18.3.1)
|
|
3013
|
+
optionalDependencies:
|
|
3014
|
+
'@types/react': 18.3.23
|
|
3015
|
+
|
|
3016
|
+
'@radix-ui/react-popover@1.1.15(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
3017
|
+
dependencies:
|
|
3018
|
+
'@radix-ui/primitive': 1.1.3
|
|
3019
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
3020
|
+
'@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
3021
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3022
|
+
'@radix-ui/react-focus-guards': 1.1.3(@types/react@18.3.23)(react@18.3.1)
|
|
3023
|
+
'@radix-ui/react-focus-scope': 1.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3024
|
+
'@radix-ui/react-id': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3025
|
+
'@radix-ui/react-popper': 1.2.8(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3026
|
+
'@radix-ui/react-portal': 1.1.9(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3027
|
+
'@radix-ui/react-presence': 1.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3028
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3029
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@18.3.23)(react@18.3.1)
|
|
3030
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1)
|
|
3031
|
+
aria-hidden: 1.2.6
|
|
3032
|
+
react: 18.3.1
|
|
3033
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
3034
|
+
react-remove-scroll: 2.7.1(@types/react@18.3.23)(react@18.3.1)
|
|
3035
|
+
optionalDependencies:
|
|
3036
|
+
'@types/react': 18.3.23
|
|
3037
|
+
|
|
3038
|
+
'@radix-ui/react-popper@1.2.8(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
3039
|
+
dependencies:
|
|
3040
|
+
'@floating-ui/react-dom': 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3041
|
+
'@radix-ui/react-arrow': 1.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3042
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
3043
|
+
'@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
3044
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3045
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3046
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3047
|
+
'@radix-ui/react-use-rect': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3048
|
+
'@radix-ui/react-use-size': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3049
|
+
'@radix-ui/rect': 1.1.1
|
|
3050
|
+
react: 18.3.1
|
|
3051
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
3052
|
+
optionalDependencies:
|
|
3053
|
+
'@types/react': 18.3.23
|
|
3054
|
+
|
|
3055
|
+
'@radix-ui/react-portal@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
3056
|
+
dependencies:
|
|
3057
|
+
'@babel/runtime': 7.28.3
|
|
3058
|
+
'@radix-ui/react-primitive': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3059
|
+
react: 18.3.1
|
|
3060
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
3061
|
+
|
|
3062
|
+
'@radix-ui/react-portal@1.1.9(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
3063
|
+
dependencies:
|
|
3064
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3065
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3066
|
+
react: 18.3.1
|
|
3067
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
3068
|
+
optionalDependencies:
|
|
3069
|
+
'@types/react': 18.3.23
|
|
3070
|
+
|
|
3071
|
+
'@radix-ui/react-presence@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
3072
|
+
dependencies:
|
|
3073
|
+
'@babel/runtime': 7.28.3
|
|
3074
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.3.1)
|
|
3075
|
+
'@radix-ui/react-use-layout-effect': 1.0.0(react@18.3.1)
|
|
3076
|
+
react: 18.3.1
|
|
3077
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
3078
|
+
|
|
3079
|
+
'@radix-ui/react-presence@1.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
3080
|
+
dependencies:
|
|
3081
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
3082
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3083
|
+
react: 18.3.1
|
|
3084
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
3085
|
+
optionalDependencies:
|
|
3086
|
+
'@types/react': 18.3.23
|
|
3087
|
+
|
|
3088
|
+
'@radix-ui/react-primitive@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
3089
|
+
dependencies:
|
|
3090
|
+
'@babel/runtime': 7.28.3
|
|
3091
|
+
'@radix-ui/react-slot': 1.0.0(react@18.3.1)
|
|
3092
|
+
react: 18.3.1
|
|
3093
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
3094
|
+
|
|
3095
|
+
'@radix-ui/react-primitive@2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
3096
|
+
dependencies:
|
|
3097
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@18.3.23)(react@18.3.1)
|
|
3098
|
+
react: 18.3.1
|
|
3099
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
3100
|
+
optionalDependencies:
|
|
3101
|
+
'@types/react': 18.3.23
|
|
3102
|
+
|
|
3103
|
+
'@radix-ui/react-progress@1.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
3104
|
+
dependencies:
|
|
3105
|
+
'@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
3106
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3107
|
+
react: 18.3.1
|
|
3108
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
3109
|
+
optionalDependencies:
|
|
3110
|
+
'@types/react': 18.3.23
|
|
3111
|
+
|
|
3112
|
+
'@radix-ui/react-roving-focus@1.1.11(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
3113
|
+
dependencies:
|
|
3114
|
+
'@radix-ui/primitive': 1.1.3
|
|
3115
|
+
'@radix-ui/react-collection': 1.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3116
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
3117
|
+
'@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
3118
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3119
|
+
'@radix-ui/react-id': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3120
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3121
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3122
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1)
|
|
3123
|
+
react: 18.3.1
|
|
3124
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
3125
|
+
optionalDependencies:
|
|
3126
|
+
'@types/react': 18.3.23
|
|
3127
|
+
|
|
3128
|
+
'@radix-ui/react-select@2.2.6(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
3129
|
+
dependencies:
|
|
3130
|
+
'@radix-ui/number': 1.1.1
|
|
3131
|
+
'@radix-ui/primitive': 1.1.3
|
|
3132
|
+
'@radix-ui/react-collection': 1.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3133
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
3134
|
+
'@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
3135
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3136
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3137
|
+
'@radix-ui/react-focus-guards': 1.1.3(@types/react@18.3.23)(react@18.3.1)
|
|
3138
|
+
'@radix-ui/react-focus-scope': 1.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3139
|
+
'@radix-ui/react-id': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3140
|
+
'@radix-ui/react-popper': 1.2.8(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3141
|
+
'@radix-ui/react-portal': 1.1.9(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3142
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3143
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@18.3.23)(react@18.3.1)
|
|
3144
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3145
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1)
|
|
3146
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3147
|
+
'@radix-ui/react-use-previous': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3148
|
+
'@radix-ui/react-visually-hidden': 1.2.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3149
|
+
aria-hidden: 1.2.6
|
|
3150
|
+
react: 18.3.1
|
|
3151
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
3152
|
+
react-remove-scroll: 2.7.1(@types/react@18.3.23)(react@18.3.1)
|
|
3153
|
+
optionalDependencies:
|
|
3154
|
+
'@types/react': 18.3.23
|
|
3155
|
+
|
|
3156
|
+
'@radix-ui/react-slider@1.3.6(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
3157
|
+
dependencies:
|
|
3158
|
+
'@radix-ui/number': 1.1.1
|
|
3159
|
+
'@radix-ui/primitive': 1.1.3
|
|
3160
|
+
'@radix-ui/react-collection': 1.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3161
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
3162
|
+
'@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
3163
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3164
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3165
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1)
|
|
3166
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3167
|
+
'@radix-ui/react-use-previous': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3168
|
+
'@radix-ui/react-use-size': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3169
|
+
react: 18.3.1
|
|
3170
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
3171
|
+
optionalDependencies:
|
|
3172
|
+
'@types/react': 18.3.23
|
|
3173
|
+
|
|
3174
|
+
'@radix-ui/react-slot@1.0.0(react@18.3.1)':
|
|
3175
|
+
dependencies:
|
|
3176
|
+
'@babel/runtime': 7.28.3
|
|
3177
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.3.1)
|
|
3178
|
+
react: 18.3.1
|
|
3179
|
+
|
|
3180
|
+
'@radix-ui/react-slot@1.2.3(@types/react@18.3.23)(react@18.3.1)':
|
|
3181
|
+
dependencies:
|
|
3182
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
3183
|
+
react: 18.3.1
|
|
3184
|
+
optionalDependencies:
|
|
3185
|
+
'@types/react': 18.3.23
|
|
3186
|
+
|
|
3187
|
+
'@radix-ui/react-switch@1.2.6(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
3188
|
+
dependencies:
|
|
3189
|
+
'@radix-ui/primitive': 1.1.3
|
|
3190
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
3191
|
+
'@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
3192
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3193
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1)
|
|
3194
|
+
'@radix-ui/react-use-previous': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3195
|
+
'@radix-ui/react-use-size': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3196
|
+
react: 18.3.1
|
|
3197
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
3198
|
+
optionalDependencies:
|
|
3199
|
+
'@types/react': 18.3.23
|
|
3200
|
+
|
|
3201
|
+
'@radix-ui/react-tabs@1.1.13(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
3202
|
+
dependencies:
|
|
3203
|
+
'@radix-ui/primitive': 1.1.3
|
|
3204
|
+
'@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
3205
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3206
|
+
'@radix-ui/react-id': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3207
|
+
'@radix-ui/react-presence': 1.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3208
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3209
|
+
'@radix-ui/react-roving-focus': 1.1.11(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3210
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1)
|
|
3211
|
+
react: 18.3.1
|
|
3212
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
3213
|
+
optionalDependencies:
|
|
3214
|
+
'@types/react': 18.3.23
|
|
3215
|
+
|
|
3216
|
+
'@radix-ui/react-toast@1.2.15(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
3217
|
+
dependencies:
|
|
3218
|
+
'@radix-ui/primitive': 1.1.3
|
|
3219
|
+
'@radix-ui/react-collection': 1.1.7(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3220
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
3221
|
+
'@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
3222
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3223
|
+
'@radix-ui/react-portal': 1.1.9(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3224
|
+
'@radix-ui/react-presence': 1.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3225
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3226
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3227
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1)
|
|
3228
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3229
|
+
'@radix-ui/react-visually-hidden': 1.2.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3230
|
+
react: 18.3.1
|
|
3231
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
3232
|
+
optionalDependencies:
|
|
3233
|
+
'@types/react': 18.3.23
|
|
3234
|
+
|
|
3235
|
+
'@radix-ui/react-tooltip@1.2.8(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
3236
|
+
dependencies:
|
|
3237
|
+
'@radix-ui/primitive': 1.1.3
|
|
3238
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
3239
|
+
'@radix-ui/react-context': 1.1.2(@types/react@18.3.23)(react@18.3.1)
|
|
3240
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3241
|
+
'@radix-ui/react-id': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3242
|
+
'@radix-ui/react-popper': 1.2.8(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3243
|
+
'@radix-ui/react-portal': 1.1.9(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3244
|
+
'@radix-ui/react-presence': 1.1.5(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3245
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3246
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@18.3.23)(react@18.3.1)
|
|
3247
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@18.3.23)(react@18.3.1)
|
|
3248
|
+
'@radix-ui/react-visually-hidden': 1.2.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3249
|
+
react: 18.3.1
|
|
3250
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
3251
|
+
optionalDependencies:
|
|
3252
|
+
'@types/react': 18.3.23
|
|
3253
|
+
|
|
3254
|
+
'@radix-ui/react-use-callback-ref@1.0.0(react@18.3.1)':
|
|
3255
|
+
dependencies:
|
|
3256
|
+
'@babel/runtime': 7.28.3
|
|
3257
|
+
react: 18.3.1
|
|
3258
|
+
|
|
3259
|
+
'@radix-ui/react-use-callback-ref@1.1.1(@types/react@18.3.23)(react@18.3.1)':
|
|
3260
|
+
dependencies:
|
|
3261
|
+
react: 18.3.1
|
|
3262
|
+
optionalDependencies:
|
|
3263
|
+
'@types/react': 18.3.23
|
|
3264
|
+
|
|
3265
|
+
'@radix-ui/react-use-controllable-state@1.0.0(react@18.3.1)':
|
|
3266
|
+
dependencies:
|
|
3267
|
+
'@babel/runtime': 7.28.3
|
|
3268
|
+
'@radix-ui/react-use-callback-ref': 1.0.0(react@18.3.1)
|
|
3269
|
+
react: 18.3.1
|
|
3270
|
+
|
|
3271
|
+
'@radix-ui/react-use-controllable-state@1.2.2(@types/react@18.3.23)(react@18.3.1)':
|
|
3272
|
+
dependencies:
|
|
3273
|
+
'@radix-ui/react-use-effect-event': 0.0.2(@types/react@18.3.23)(react@18.3.1)
|
|
3274
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3275
|
+
react: 18.3.1
|
|
3276
|
+
optionalDependencies:
|
|
3277
|
+
'@types/react': 18.3.23
|
|
3278
|
+
|
|
3279
|
+
'@radix-ui/react-use-effect-event@0.0.2(@types/react@18.3.23)(react@18.3.1)':
|
|
3280
|
+
dependencies:
|
|
3281
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3282
|
+
react: 18.3.1
|
|
3283
|
+
optionalDependencies:
|
|
3284
|
+
'@types/react': 18.3.23
|
|
3285
|
+
|
|
3286
|
+
'@radix-ui/react-use-escape-keydown@1.0.0(react@18.3.1)':
|
|
3287
|
+
dependencies:
|
|
3288
|
+
'@babel/runtime': 7.28.3
|
|
3289
|
+
'@radix-ui/react-use-callback-ref': 1.0.0(react@18.3.1)
|
|
3290
|
+
react: 18.3.1
|
|
3291
|
+
|
|
3292
|
+
'@radix-ui/react-use-escape-keydown@1.1.1(@types/react@18.3.23)(react@18.3.1)':
|
|
3293
|
+
dependencies:
|
|
3294
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3295
|
+
react: 18.3.1
|
|
3296
|
+
optionalDependencies:
|
|
3297
|
+
'@types/react': 18.3.23
|
|
3298
|
+
|
|
3299
|
+
'@radix-ui/react-use-is-hydrated@0.1.0(@types/react@18.3.23)(react@18.3.1)':
|
|
3300
|
+
dependencies:
|
|
3301
|
+
react: 18.3.1
|
|
3302
|
+
use-sync-external-store: 1.5.0(react@18.3.1)
|
|
3303
|
+
optionalDependencies:
|
|
3304
|
+
'@types/react': 18.3.23
|
|
3305
|
+
|
|
3306
|
+
'@radix-ui/react-use-layout-effect@1.0.0(react@18.3.1)':
|
|
3307
|
+
dependencies:
|
|
3308
|
+
'@babel/runtime': 7.28.3
|
|
3309
|
+
react: 18.3.1
|
|
3310
|
+
|
|
3311
|
+
'@radix-ui/react-use-layout-effect@1.1.1(@types/react@18.3.23)(react@18.3.1)':
|
|
3312
|
+
dependencies:
|
|
3313
|
+
react: 18.3.1
|
|
3314
|
+
optionalDependencies:
|
|
3315
|
+
'@types/react': 18.3.23
|
|
3316
|
+
|
|
3317
|
+
'@radix-ui/react-use-previous@1.1.1(@types/react@18.3.23)(react@18.3.1)':
|
|
3318
|
+
dependencies:
|
|
3319
|
+
react: 18.3.1
|
|
3320
|
+
optionalDependencies:
|
|
3321
|
+
'@types/react': 18.3.23
|
|
3322
|
+
|
|
3323
|
+
'@radix-ui/react-use-rect@1.1.1(@types/react@18.3.23)(react@18.3.1)':
|
|
3324
|
+
dependencies:
|
|
3325
|
+
'@radix-ui/rect': 1.1.1
|
|
3326
|
+
react: 18.3.1
|
|
3327
|
+
optionalDependencies:
|
|
3328
|
+
'@types/react': 18.3.23
|
|
3329
|
+
|
|
3330
|
+
'@radix-ui/react-use-size@1.1.1(@types/react@18.3.23)(react@18.3.1)':
|
|
3331
|
+
dependencies:
|
|
3332
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@18.3.23)(react@18.3.1)
|
|
3333
|
+
react: 18.3.1
|
|
3334
|
+
optionalDependencies:
|
|
3335
|
+
'@types/react': 18.3.23
|
|
3336
|
+
|
|
3337
|
+
'@radix-ui/react-visually-hidden@1.2.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
3338
|
+
dependencies:
|
|
3339
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3340
|
+
react: 18.3.1
|
|
3341
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
3342
|
+
optionalDependencies:
|
|
3343
|
+
'@types/react': 18.3.23
|
|
3344
|
+
|
|
3345
|
+
'@radix-ui/rect@1.1.1': {}
|
|
3346
|
+
|
|
3347
|
+
'@rolldown/pluginutils@1.0.0-beta.27': {}
|
|
3348
|
+
|
|
3349
|
+
'@rollup/plugin-virtual@3.0.2(rollup@4.46.2)':
|
|
3350
|
+
optionalDependencies:
|
|
3351
|
+
rollup: 4.46.2
|
|
3352
|
+
|
|
3353
|
+
'@rollup/rollup-android-arm-eabi@4.46.2':
|
|
3354
|
+
optional: true
|
|
3355
|
+
|
|
3356
|
+
'@rollup/rollup-android-arm64@4.46.2':
|
|
3357
|
+
optional: true
|
|
3358
|
+
|
|
3359
|
+
'@rollup/rollup-darwin-arm64@4.46.2':
|
|
3360
|
+
optional: true
|
|
3361
|
+
|
|
3362
|
+
'@rollup/rollup-darwin-x64@4.46.2':
|
|
3363
|
+
optional: true
|
|
3364
|
+
|
|
3365
|
+
'@rollup/rollup-freebsd-arm64@4.46.2':
|
|
3366
|
+
optional: true
|
|
3367
|
+
|
|
3368
|
+
'@rollup/rollup-freebsd-x64@4.46.2':
|
|
3369
|
+
optional: true
|
|
3370
|
+
|
|
3371
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.46.2':
|
|
3372
|
+
optional: true
|
|
3373
|
+
|
|
3374
|
+
'@rollup/rollup-linux-arm-musleabihf@4.46.2':
|
|
3375
|
+
optional: true
|
|
3376
|
+
|
|
3377
|
+
'@rollup/rollup-linux-arm64-gnu@4.46.2':
|
|
3378
|
+
optional: true
|
|
3379
|
+
|
|
3380
|
+
'@rollup/rollup-linux-arm64-musl@4.46.2':
|
|
3381
|
+
optional: true
|
|
3382
|
+
|
|
3383
|
+
'@rollup/rollup-linux-loongarch64-gnu@4.46.2':
|
|
3384
|
+
optional: true
|
|
3385
|
+
|
|
3386
|
+
'@rollup/rollup-linux-ppc64-gnu@4.46.2':
|
|
3387
|
+
optional: true
|
|
3388
|
+
|
|
3389
|
+
'@rollup/rollup-linux-riscv64-gnu@4.46.2':
|
|
3390
|
+
optional: true
|
|
3391
|
+
|
|
3392
|
+
'@rollup/rollup-linux-riscv64-musl@4.46.2':
|
|
3393
|
+
optional: true
|
|
3394
|
+
|
|
3395
|
+
'@rollup/rollup-linux-s390x-gnu@4.46.2':
|
|
3396
|
+
optional: true
|
|
3397
|
+
|
|
3398
|
+
'@rollup/rollup-linux-x64-gnu@4.46.2':
|
|
3399
|
+
optional: true
|
|
3400
|
+
|
|
3401
|
+
'@rollup/rollup-linux-x64-musl@4.46.2':
|
|
3402
|
+
optional: true
|
|
3403
|
+
|
|
3404
|
+
'@rollup/rollup-win32-arm64-msvc@4.46.2':
|
|
3405
|
+
optional: true
|
|
3406
|
+
|
|
3407
|
+
'@rollup/rollup-win32-ia32-msvc@4.46.2':
|
|
3408
|
+
optional: true
|
|
3409
|
+
|
|
3410
|
+
'@rollup/rollup-win32-x64-msvc@4.46.2':
|
|
3411
|
+
optional: true
|
|
3412
|
+
|
|
3413
|
+
'@swc/core-darwin-arm64@1.13.3':
|
|
3414
|
+
optional: true
|
|
3415
|
+
|
|
3416
|
+
'@swc/core-darwin-x64@1.13.3':
|
|
3417
|
+
optional: true
|
|
3418
|
+
|
|
3419
|
+
'@swc/core-linux-arm-gnueabihf@1.13.3':
|
|
3420
|
+
optional: true
|
|
3421
|
+
|
|
3422
|
+
'@swc/core-linux-arm64-gnu@1.13.3':
|
|
3423
|
+
optional: true
|
|
3424
|
+
|
|
3425
|
+
'@swc/core-linux-arm64-musl@1.13.3':
|
|
3426
|
+
optional: true
|
|
3427
|
+
|
|
3428
|
+
'@swc/core-linux-x64-gnu@1.13.3':
|
|
3429
|
+
optional: true
|
|
3430
|
+
|
|
3431
|
+
'@swc/core-linux-x64-musl@1.13.3':
|
|
3432
|
+
optional: true
|
|
3433
|
+
|
|
3434
|
+
'@swc/core-win32-arm64-msvc@1.13.3':
|
|
3435
|
+
optional: true
|
|
3436
|
+
|
|
3437
|
+
'@swc/core-win32-ia32-msvc@1.13.3':
|
|
3438
|
+
optional: true
|
|
3439
|
+
|
|
3440
|
+
'@swc/core-win32-x64-msvc@1.13.3':
|
|
3441
|
+
optional: true
|
|
3442
|
+
|
|
3443
|
+
'@swc/core@1.13.3':
|
|
3444
|
+
dependencies:
|
|
3445
|
+
'@swc/counter': 0.1.3
|
|
3446
|
+
'@swc/types': 0.1.24
|
|
3447
|
+
optionalDependencies:
|
|
3448
|
+
'@swc/core-darwin-arm64': 1.13.3
|
|
3449
|
+
'@swc/core-darwin-x64': 1.13.3
|
|
3450
|
+
'@swc/core-linux-arm-gnueabihf': 1.13.3
|
|
3451
|
+
'@swc/core-linux-arm64-gnu': 1.13.3
|
|
3452
|
+
'@swc/core-linux-arm64-musl': 1.13.3
|
|
3453
|
+
'@swc/core-linux-x64-gnu': 1.13.3
|
|
3454
|
+
'@swc/core-linux-x64-musl': 1.13.3
|
|
3455
|
+
'@swc/core-win32-arm64-msvc': 1.13.3
|
|
3456
|
+
'@swc/core-win32-ia32-msvc': 1.13.3
|
|
3457
|
+
'@swc/core-win32-x64-msvc': 1.13.3
|
|
3458
|
+
|
|
3459
|
+
'@swc/counter@0.1.3': {}
|
|
3460
|
+
|
|
3461
|
+
'@swc/types@0.1.24':
|
|
3462
|
+
dependencies:
|
|
3463
|
+
'@swc/counter': 0.1.3
|
|
3464
|
+
|
|
3465
|
+
'@swc/wasm@1.13.3': {}
|
|
3466
|
+
|
|
3467
|
+
'@types/babel__core@7.20.5':
|
|
3468
|
+
dependencies:
|
|
3469
|
+
'@babel/parser': 7.28.3
|
|
3470
|
+
'@babel/types': 7.28.2
|
|
3471
|
+
'@types/babel__generator': 7.27.0
|
|
3472
|
+
'@types/babel__template': 7.4.4
|
|
3473
|
+
'@types/babel__traverse': 7.28.0
|
|
3474
|
+
|
|
3475
|
+
'@types/babel__generator@7.27.0':
|
|
3476
|
+
dependencies:
|
|
3477
|
+
'@babel/types': 7.28.2
|
|
3478
|
+
|
|
3479
|
+
'@types/babel__template@7.4.4':
|
|
3480
|
+
dependencies:
|
|
3481
|
+
'@babel/parser': 7.28.3
|
|
3482
|
+
'@babel/types': 7.28.2
|
|
3483
|
+
|
|
3484
|
+
'@types/babel__traverse@7.28.0':
|
|
3485
|
+
dependencies:
|
|
3486
|
+
'@babel/types': 7.28.2
|
|
3487
|
+
|
|
3488
|
+
'@types/estree@1.0.8': {}
|
|
3489
|
+
|
|
3490
|
+
'@types/prop-types@15.7.15': {}
|
|
3491
|
+
|
|
3492
|
+
'@types/react@18.3.23':
|
|
3493
|
+
dependencies:
|
|
3494
|
+
'@types/prop-types': 15.7.15
|
|
3495
|
+
csstype: 3.1.3
|
|
3496
|
+
|
|
3497
|
+
'@vitejs/plugin-react@4.7.0(vite@5.4.19)':
|
|
3498
|
+
dependencies:
|
|
3499
|
+
'@babel/core': 7.28.3
|
|
3500
|
+
'@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.3)
|
|
3501
|
+
'@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.3)
|
|
3502
|
+
'@rolldown/pluginutils': 1.0.0-beta.27
|
|
3503
|
+
'@types/babel__core': 7.20.5
|
|
3504
|
+
react-refresh: 0.17.0
|
|
3505
|
+
vite: 5.4.19
|
|
3506
|
+
transitivePeerDependencies:
|
|
3507
|
+
- supports-color
|
|
3508
|
+
|
|
3509
|
+
ansi-regex@5.0.1: {}
|
|
3510
|
+
|
|
3511
|
+
ansi-regex@6.1.0: {}
|
|
3512
|
+
|
|
3513
|
+
ansi-styles@4.3.0:
|
|
3514
|
+
dependencies:
|
|
3515
|
+
color-convert: 2.0.1
|
|
3516
|
+
|
|
3517
|
+
ansi-styles@6.2.1: {}
|
|
3518
|
+
|
|
3519
|
+
anymatch@3.1.3:
|
|
3520
|
+
dependencies:
|
|
3521
|
+
normalize-path: 3.0.0
|
|
3522
|
+
picomatch: 2.3.1
|
|
3523
|
+
|
|
3524
|
+
aria-hidden@1.2.6:
|
|
3525
|
+
dependencies:
|
|
3526
|
+
tslib: 2.8.1
|
|
3527
|
+
|
|
3528
|
+
balanced-match@1.0.2: {}
|
|
3529
|
+
|
|
3530
|
+
base-x@4.0.1: {}
|
|
3531
|
+
|
|
3532
|
+
base64-js@1.5.1: {}
|
|
3533
|
+
|
|
3534
|
+
binary-extensions@2.3.0: {}
|
|
3535
|
+
|
|
3536
|
+
bl@5.1.0:
|
|
3537
|
+
dependencies:
|
|
3538
|
+
buffer: 6.0.3
|
|
3539
|
+
inherits: 2.0.4
|
|
3540
|
+
readable-stream: 3.6.2
|
|
3541
|
+
|
|
3542
|
+
brace-expansion@1.1.12:
|
|
3543
|
+
dependencies:
|
|
3544
|
+
balanced-match: 1.0.2
|
|
3545
|
+
concat-map: 0.0.1
|
|
3546
|
+
|
|
3547
|
+
brace-expansion@2.0.2:
|
|
3548
|
+
dependencies:
|
|
3549
|
+
balanced-match: 1.0.2
|
|
3550
|
+
|
|
3551
|
+
braces@3.0.3:
|
|
3552
|
+
dependencies:
|
|
3553
|
+
fill-range: 7.1.1
|
|
3554
|
+
|
|
3555
|
+
browser-fs-access@0.35.0: {}
|
|
3556
|
+
|
|
3557
|
+
browserslist@4.25.2:
|
|
3558
|
+
dependencies:
|
|
3559
|
+
caniuse-lite: 1.0.30001735
|
|
3560
|
+
electron-to-chromium: 1.5.203
|
|
3561
|
+
node-releases: 2.0.19
|
|
3562
|
+
update-browserslist-db: 1.1.3(browserslist@4.25.2)
|
|
3563
|
+
|
|
3564
|
+
bs58@5.0.0:
|
|
3565
|
+
dependencies:
|
|
3566
|
+
base-x: 4.0.1
|
|
3567
|
+
|
|
3568
|
+
bs58check@3.0.1:
|
|
3569
|
+
dependencies:
|
|
3570
|
+
'@noble/hashes': 1.8.0
|
|
3571
|
+
bs58: 5.0.0
|
|
3572
|
+
|
|
3573
|
+
buffer@6.0.3:
|
|
3574
|
+
dependencies:
|
|
3575
|
+
base64-js: 1.5.1
|
|
3576
|
+
ieee754: 1.2.1
|
|
3577
|
+
|
|
3578
|
+
caniuse-lite@1.0.30001735: {}
|
|
3579
|
+
|
|
3580
|
+
cbor-extract@2.2.0:
|
|
3581
|
+
dependencies:
|
|
3582
|
+
node-gyp-build-optional-packages: 5.1.1
|
|
3583
|
+
optionalDependencies:
|
|
3584
|
+
'@cbor-extract/cbor-extract-darwin-arm64': 2.2.0
|
|
3585
|
+
'@cbor-extract/cbor-extract-darwin-x64': 2.2.0
|
|
3586
|
+
'@cbor-extract/cbor-extract-linux-arm': 2.2.0
|
|
3587
|
+
'@cbor-extract/cbor-extract-linux-arm64': 2.2.0
|
|
3588
|
+
'@cbor-extract/cbor-extract-linux-x64': 2.2.0
|
|
3589
|
+
'@cbor-extract/cbor-extract-win32-x64': 2.2.0
|
|
3590
|
+
optional: true
|
|
3591
|
+
|
|
3592
|
+
cbor-x@1.6.0:
|
|
3593
|
+
optionalDependencies:
|
|
3594
|
+
cbor-extract: 2.2.0
|
|
3595
|
+
|
|
3596
|
+
chalk@5.5.0: {}
|
|
3597
|
+
|
|
3598
|
+
chokidar@3.6.0:
|
|
3599
|
+
dependencies:
|
|
3600
|
+
anymatch: 3.1.3
|
|
3601
|
+
braces: 3.0.3
|
|
3602
|
+
glob-parent: 5.1.2
|
|
3603
|
+
is-binary-path: 2.1.0
|
|
3604
|
+
is-glob: 4.0.3
|
|
3605
|
+
normalize-path: 3.0.0
|
|
3606
|
+
readdirp: 3.6.0
|
|
3607
|
+
optionalDependencies:
|
|
3608
|
+
fsevents: 2.3.3
|
|
3609
|
+
|
|
3610
|
+
class-variance-authority@0.7.1:
|
|
3611
|
+
dependencies:
|
|
3612
|
+
clsx: 2.1.1
|
|
3613
|
+
|
|
3614
|
+
cli-cursor@4.0.0:
|
|
3615
|
+
dependencies:
|
|
3616
|
+
restore-cursor: 4.0.0
|
|
3617
|
+
|
|
3618
|
+
cli-spinners@2.9.2: {}
|
|
3619
|
+
|
|
3620
|
+
clsx@2.1.1: {}
|
|
3621
|
+
|
|
3622
|
+
cmdk@0.2.1(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
|
|
3623
|
+
dependencies:
|
|
3624
|
+
'@radix-ui/react-dialog': 1.0.0(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
3625
|
+
react: 18.3.1
|
|
3626
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
3627
|
+
transitivePeerDependencies:
|
|
3628
|
+
- '@types/react'
|
|
3629
|
+
|
|
3630
|
+
codemirror@6.0.2:
|
|
3631
|
+
dependencies:
|
|
3632
|
+
'@codemirror/autocomplete': 6.18.6
|
|
3633
|
+
'@codemirror/commands': 6.8.1
|
|
3634
|
+
'@codemirror/language': 6.11.3
|
|
3635
|
+
'@codemirror/lint': 6.8.5
|
|
3636
|
+
'@codemirror/search': 6.5.11
|
|
3637
|
+
'@codemirror/state': 6.5.2
|
|
3638
|
+
'@codemirror/view': 6.38.1
|
|
3639
|
+
|
|
3640
|
+
color-convert@2.0.1:
|
|
3641
|
+
dependencies:
|
|
3642
|
+
color-name: 1.1.4
|
|
3643
|
+
|
|
3644
|
+
color-name@1.1.4: {}
|
|
3645
|
+
|
|
3646
|
+
commander@11.1.0: {}
|
|
3647
|
+
|
|
3648
|
+
concat-map@0.0.1: {}
|
|
3649
|
+
|
|
3650
|
+
convert-source-map@2.0.0: {}
|
|
3651
|
+
|
|
3652
|
+
crelt@1.0.6: {}
|
|
3653
|
+
|
|
3654
|
+
cross-spawn@7.0.6:
|
|
3655
|
+
dependencies:
|
|
3656
|
+
path-key: 3.1.1
|
|
3657
|
+
shebang-command: 2.0.0
|
|
3658
|
+
which: 2.0.2
|
|
3659
|
+
|
|
3660
|
+
csstype@3.1.3: {}
|
|
3661
|
+
|
|
3662
|
+
debug@4.4.1(supports-color@5.5.0):
|
|
3663
|
+
dependencies:
|
|
3664
|
+
ms: 2.1.3
|
|
3665
|
+
optionalDependencies:
|
|
3666
|
+
supports-color: 5.5.0
|
|
3667
|
+
|
|
3668
|
+
decode-uri-component@0.4.1: {}
|
|
3669
|
+
|
|
3670
|
+
detect-libc@2.0.4:
|
|
3671
|
+
optional: true
|
|
3672
|
+
|
|
3673
|
+
detect-node-es@1.1.0: {}
|
|
3674
|
+
|
|
3675
|
+
diff@5.2.0: {}
|
|
3676
|
+
|
|
3677
|
+
eastasianwidth@0.2.0: {}
|
|
3678
|
+
|
|
3679
|
+
electron-to-chromium@1.5.203: {}
|
|
3680
|
+
|
|
3681
|
+
emoji-regex@10.4.0: {}
|
|
3682
|
+
|
|
3683
|
+
emoji-regex@8.0.0: {}
|
|
3684
|
+
|
|
3685
|
+
emoji-regex@9.2.2: {}
|
|
3686
|
+
|
|
3687
|
+
esbuild@0.21.5:
|
|
3688
|
+
optionalDependencies:
|
|
3689
|
+
'@esbuild/aix-ppc64': 0.21.5
|
|
3690
|
+
'@esbuild/android-arm': 0.21.5
|
|
3691
|
+
'@esbuild/android-arm64': 0.21.5
|
|
3692
|
+
'@esbuild/android-x64': 0.21.5
|
|
3693
|
+
'@esbuild/darwin-arm64': 0.21.5
|
|
3694
|
+
'@esbuild/darwin-x64': 0.21.5
|
|
3695
|
+
'@esbuild/freebsd-arm64': 0.21.5
|
|
3696
|
+
'@esbuild/freebsd-x64': 0.21.5
|
|
3697
|
+
'@esbuild/linux-arm': 0.21.5
|
|
3698
|
+
'@esbuild/linux-arm64': 0.21.5
|
|
3699
|
+
'@esbuild/linux-ia32': 0.21.5
|
|
3700
|
+
'@esbuild/linux-loong64': 0.21.5
|
|
3701
|
+
'@esbuild/linux-mips64el': 0.21.5
|
|
3702
|
+
'@esbuild/linux-ppc64': 0.21.5
|
|
3703
|
+
'@esbuild/linux-riscv64': 0.21.5
|
|
3704
|
+
'@esbuild/linux-s390x': 0.21.5
|
|
3705
|
+
'@esbuild/linux-x64': 0.21.5
|
|
3706
|
+
'@esbuild/netbsd-x64': 0.21.5
|
|
3707
|
+
'@esbuild/openbsd-x64': 0.21.5
|
|
3708
|
+
'@esbuild/sunos-x64': 0.21.5
|
|
3709
|
+
'@esbuild/win32-arm64': 0.21.5
|
|
3710
|
+
'@esbuild/win32-ia32': 0.21.5
|
|
3711
|
+
'@esbuild/win32-x64': 0.21.5
|
|
3712
|
+
|
|
3713
|
+
escalade@3.2.0: {}
|
|
3714
|
+
|
|
3715
|
+
eventemitter3@5.0.1: {}
|
|
3716
|
+
|
|
3717
|
+
fast-diff@1.3.0: {}
|
|
3718
|
+
|
|
3719
|
+
fast-sha256@1.3.0: {}
|
|
3720
|
+
|
|
3721
|
+
fill-range@7.1.1:
|
|
3722
|
+
dependencies:
|
|
3723
|
+
to-regex-range: 5.0.1
|
|
3724
|
+
|
|
3725
|
+
filter-obj@5.1.0: {}
|
|
3726
|
+
|
|
3727
|
+
foreground-child@3.3.1:
|
|
3728
|
+
dependencies:
|
|
3729
|
+
cross-spawn: 7.0.6
|
|
3730
|
+
signal-exit: 4.1.0
|
|
3731
|
+
|
|
3732
|
+
fsevents@2.3.3:
|
|
3733
|
+
optional: true
|
|
3734
|
+
|
|
3735
|
+
gensync@1.0.0-beta.2: {}
|
|
3736
|
+
|
|
3737
|
+
get-nonce@1.0.1: {}
|
|
3738
|
+
|
|
3739
|
+
glob-parent@5.1.2:
|
|
3740
|
+
dependencies:
|
|
3741
|
+
is-glob: 4.0.3
|
|
3742
|
+
|
|
3743
|
+
glob@10.4.5:
|
|
3744
|
+
dependencies:
|
|
3745
|
+
foreground-child: 3.3.1
|
|
3746
|
+
jackspeak: 3.4.3
|
|
3747
|
+
minimatch: 9.0.5
|
|
3748
|
+
minipass: 7.1.2
|
|
3749
|
+
package-json-from-dist: 1.0.1
|
|
3750
|
+
path-scurry: 1.11.1
|
|
3751
|
+
|
|
3752
|
+
has-flag@3.0.0: {}
|
|
3753
|
+
|
|
3754
|
+
ieee754@1.2.1: {}
|
|
3755
|
+
|
|
3756
|
+
ignore-by-default@1.0.1: {}
|
|
3757
|
+
|
|
3758
|
+
inherits@2.0.4: {}
|
|
3759
|
+
|
|
3760
|
+
is-binary-path@2.1.0:
|
|
3761
|
+
dependencies:
|
|
3762
|
+
binary-extensions: 2.3.0
|
|
3763
|
+
|
|
3764
|
+
is-extglob@2.1.1: {}
|
|
3765
|
+
|
|
3766
|
+
is-fullwidth-code-point@3.0.0: {}
|
|
3767
|
+
|
|
3768
|
+
is-glob@4.0.3:
|
|
3769
|
+
dependencies:
|
|
3770
|
+
is-extglob: 2.1.1
|
|
3771
|
+
|
|
3772
|
+
is-interactive@2.0.0: {}
|
|
3773
|
+
|
|
3774
|
+
is-number@7.0.0: {}
|
|
3775
|
+
|
|
3776
|
+
is-unicode-supported@1.3.0: {}
|
|
3777
|
+
|
|
3778
|
+
isexe@2.0.0: {}
|
|
3779
|
+
|
|
3780
|
+
isomorphic-ws@5.0.0(ws@8.18.3):
|
|
3781
|
+
dependencies:
|
|
3782
|
+
ws: 8.18.3
|
|
3783
|
+
|
|
3784
|
+
jackspeak@3.4.3:
|
|
3785
|
+
dependencies:
|
|
3786
|
+
'@isaacs/cliui': 8.0.2
|
|
3787
|
+
optionalDependencies:
|
|
3788
|
+
'@pkgjs/parseargs': 0.11.0
|
|
3789
|
+
|
|
3790
|
+
js-tokens@4.0.0: {}
|
|
3791
|
+
|
|
3792
|
+
jsesc@3.1.0: {}
|
|
3793
|
+
|
|
3794
|
+
json5@2.2.3: {}
|
|
3795
|
+
|
|
3796
|
+
lodash-es@4.17.21: {}
|
|
3797
|
+
|
|
3798
|
+
log-symbols@5.1.0:
|
|
3799
|
+
dependencies:
|
|
3800
|
+
chalk: 5.5.0
|
|
3801
|
+
is-unicode-supported: 1.3.0
|
|
3802
|
+
|
|
3803
|
+
loose-envify@1.4.0:
|
|
3804
|
+
dependencies:
|
|
3805
|
+
js-tokens: 4.0.0
|
|
3806
|
+
|
|
3807
|
+
lru-cache@10.4.3: {}
|
|
3808
|
+
|
|
3809
|
+
lru-cache@5.1.1:
|
|
3810
|
+
dependencies:
|
|
3811
|
+
yallist: 3.1.1
|
|
3812
|
+
|
|
3813
|
+
lucide-react@0.456.0(react@18.3.1):
|
|
3814
|
+
dependencies:
|
|
3815
|
+
react: 18.3.1
|
|
3816
|
+
|
|
3817
|
+
lucide-react@0.460.0(react@18.3.1):
|
|
3818
|
+
dependencies:
|
|
3819
|
+
react: 18.3.1
|
|
3820
|
+
|
|
3821
|
+
lucide@0.433.0: {}
|
|
3822
|
+
|
|
3823
|
+
mime-db@1.52.0: {}
|
|
3824
|
+
|
|
3825
|
+
mime-types@2.1.35:
|
|
3826
|
+
dependencies:
|
|
3827
|
+
mime-db: 1.52.0
|
|
3828
|
+
|
|
3829
|
+
mimic-fn@2.1.0: {}
|
|
3830
|
+
|
|
3831
|
+
minimatch@3.1.2:
|
|
3832
|
+
dependencies:
|
|
3833
|
+
brace-expansion: 1.1.12
|
|
3834
|
+
|
|
3835
|
+
minimatch@9.0.5:
|
|
3836
|
+
dependencies:
|
|
3837
|
+
brace-expansion: 2.0.2
|
|
3838
|
+
|
|
3839
|
+
minipass@7.1.2: {}
|
|
3840
|
+
|
|
3841
|
+
ms@2.1.3: {}
|
|
3842
|
+
|
|
3843
|
+
nanoid@3.3.11: {}
|
|
3844
|
+
|
|
3845
|
+
node-gyp-build-optional-packages@5.1.1:
|
|
3846
|
+
dependencies:
|
|
3847
|
+
detect-libc: 2.0.4
|
|
3848
|
+
optional: true
|
|
3849
|
+
|
|
3850
|
+
node-releases@2.0.19: {}
|
|
3851
|
+
|
|
3852
|
+
nodemon@3.1.10:
|
|
3853
|
+
dependencies:
|
|
3854
|
+
chokidar: 3.6.0
|
|
3855
|
+
debug: 4.4.1(supports-color@5.5.0)
|
|
3856
|
+
ignore-by-default: 1.0.1
|
|
3857
|
+
minimatch: 3.1.2
|
|
3858
|
+
pstree.remy: 1.1.8
|
|
3859
|
+
semver: 7.7.2
|
|
3860
|
+
simple-update-notifier: 2.0.0
|
|
3861
|
+
supports-color: 5.5.0
|
|
3862
|
+
touch: 3.1.1
|
|
3863
|
+
undefsafe: 2.0.5
|
|
3864
|
+
|
|
3865
|
+
normalize-path@3.0.0: {}
|
|
3866
|
+
|
|
3867
|
+
onetime@5.1.2:
|
|
3868
|
+
dependencies:
|
|
3869
|
+
mimic-fn: 2.1.0
|
|
3870
|
+
|
|
3871
|
+
ora@7.0.1:
|
|
3872
|
+
dependencies:
|
|
3873
|
+
chalk: 5.5.0
|
|
3874
|
+
cli-cursor: 4.0.0
|
|
3875
|
+
cli-spinners: 2.9.2
|
|
3876
|
+
is-interactive: 2.0.0
|
|
3877
|
+
is-unicode-supported: 1.3.0
|
|
3878
|
+
log-symbols: 5.1.0
|
|
3879
|
+
stdin-discarder: 0.1.0
|
|
3880
|
+
string-width: 6.1.0
|
|
3881
|
+
strip-ansi: 7.1.0
|
|
3882
|
+
|
|
3883
|
+
package-json-from-dist@1.0.1: {}
|
|
3884
|
+
|
|
3885
|
+
path-key@3.1.1: {}
|
|
3886
|
+
|
|
3887
|
+
path-scurry@1.11.1:
|
|
3888
|
+
dependencies:
|
|
3889
|
+
lru-cache: 10.4.3
|
|
3890
|
+
minipass: 7.1.2
|
|
3891
|
+
|
|
3892
|
+
picocolors@1.1.1: {}
|
|
3893
|
+
|
|
3894
|
+
picomatch@2.3.1: {}
|
|
3895
|
+
|
|
3896
|
+
postcss@8.5.6:
|
|
3897
|
+
dependencies:
|
|
3898
|
+
nanoid: 3.3.11
|
|
3899
|
+
picocolors: 1.1.1
|
|
3900
|
+
source-map-js: 1.2.1
|
|
3901
|
+
|
|
3902
|
+
pstree.remy@1.1.8: {}
|
|
3903
|
+
|
|
3904
|
+
pushwork@file:../..:
|
|
3905
|
+
dependencies:
|
|
3906
|
+
'@automerge/automerge': 3.1.1
|
|
3907
|
+
'@automerge/automerge-repo': 2.2.0
|
|
3908
|
+
'@automerge/automerge-repo-network-websocket': 2.2.0
|
|
3909
|
+
'@automerge/automerge-repo-storage-indexeddb': 2.2.0
|
|
3910
|
+
'@automerge/automerge-repo-storage-nodefs': 2.2.0
|
|
3911
|
+
browser-fs-access: 0.35.0
|
|
3912
|
+
chalk: 5.5.0
|
|
3913
|
+
commander: 11.1.0
|
|
3914
|
+
diff: 5.2.0
|
|
3915
|
+
fast-diff: 1.3.0
|
|
3916
|
+
glob: 10.4.5
|
|
3917
|
+
mime-types: 2.1.35
|
|
3918
|
+
ora: 7.0.1
|
|
3919
|
+
transitivePeerDependencies:
|
|
3920
|
+
- bufferutil
|
|
3921
|
+
- supports-color
|
|
3922
|
+
- utf-8-validate
|
|
3923
|
+
|
|
3924
|
+
query-string@8.2.0:
|
|
3925
|
+
dependencies:
|
|
3926
|
+
decode-uri-component: 0.4.1
|
|
3927
|
+
filter-obj: 5.1.0
|
|
3928
|
+
split-on-first: 3.0.0
|
|
3929
|
+
|
|
3930
|
+
react-dom@18.3.1(react@18.3.1):
|
|
3931
|
+
dependencies:
|
|
3932
|
+
loose-envify: 1.4.0
|
|
3933
|
+
react: 18.3.1
|
|
3934
|
+
scheduler: 0.23.2
|
|
3935
|
+
|
|
3936
|
+
react-merge-refs@2.1.1: {}
|
|
3937
|
+
|
|
3938
|
+
react-refresh@0.17.0: {}
|
|
3939
|
+
|
|
3940
|
+
react-remove-scroll-bar@2.3.8(@types/react@18.3.23)(react@18.3.1):
|
|
3941
|
+
dependencies:
|
|
3942
|
+
react: 18.3.1
|
|
3943
|
+
react-style-singleton: 2.2.3(@types/react@18.3.23)(react@18.3.1)
|
|
3944
|
+
tslib: 2.8.1
|
|
3945
|
+
optionalDependencies:
|
|
3946
|
+
'@types/react': 18.3.23
|
|
3947
|
+
|
|
3948
|
+
react-remove-scroll@2.5.4(@types/react@18.3.23)(react@18.3.1):
|
|
3949
|
+
dependencies:
|
|
3950
|
+
react: 18.3.1
|
|
3951
|
+
react-remove-scroll-bar: 2.3.8(@types/react@18.3.23)(react@18.3.1)
|
|
3952
|
+
react-style-singleton: 2.2.3(@types/react@18.3.23)(react@18.3.1)
|
|
3953
|
+
tslib: 2.8.1
|
|
3954
|
+
use-callback-ref: 1.3.3(@types/react@18.3.23)(react@18.3.1)
|
|
3955
|
+
use-sidecar: 1.1.3(@types/react@18.3.23)(react@18.3.1)
|
|
3956
|
+
optionalDependencies:
|
|
3957
|
+
'@types/react': 18.3.23
|
|
3958
|
+
|
|
3959
|
+
react-remove-scroll@2.7.1(@types/react@18.3.23)(react@18.3.1):
|
|
3960
|
+
dependencies:
|
|
3961
|
+
react: 18.3.1
|
|
3962
|
+
react-remove-scroll-bar: 2.3.8(@types/react@18.3.23)(react@18.3.1)
|
|
3963
|
+
react-style-singleton: 2.2.3(@types/react@18.3.23)(react@18.3.1)
|
|
3964
|
+
tslib: 2.8.1
|
|
3965
|
+
use-callback-ref: 1.3.3(@types/react@18.3.23)(react@18.3.1)
|
|
3966
|
+
use-sidecar: 1.1.3(@types/react@18.3.23)(react@18.3.1)
|
|
3967
|
+
optionalDependencies:
|
|
3968
|
+
'@types/react': 18.3.23
|
|
3969
|
+
|
|
3970
|
+
react-style-singleton@2.2.3(@types/react@18.3.23)(react@18.3.1):
|
|
3971
|
+
dependencies:
|
|
3972
|
+
get-nonce: 1.0.1
|
|
3973
|
+
react: 18.3.1
|
|
3974
|
+
tslib: 2.8.1
|
|
3975
|
+
optionalDependencies:
|
|
3976
|
+
'@types/react': 18.3.23
|
|
3977
|
+
|
|
3978
|
+
react-usestateref@1.0.9(react@18.3.1):
|
|
3979
|
+
dependencies:
|
|
3980
|
+
react: 18.3.1
|
|
3981
|
+
|
|
3982
|
+
react@18.3.1:
|
|
3983
|
+
dependencies:
|
|
3984
|
+
loose-envify: 1.4.0
|
|
3985
|
+
|
|
3986
|
+
readable-stream@3.6.2:
|
|
3987
|
+
dependencies:
|
|
3988
|
+
inherits: 2.0.4
|
|
3989
|
+
string_decoder: 1.3.0
|
|
3990
|
+
util-deprecate: 1.0.2
|
|
3991
|
+
|
|
3992
|
+
readdirp@3.6.0:
|
|
3993
|
+
dependencies:
|
|
3994
|
+
picomatch: 2.3.1
|
|
3995
|
+
|
|
3996
|
+
resolve.exports@2.0.3: {}
|
|
3997
|
+
|
|
3998
|
+
restore-cursor@4.0.0:
|
|
3999
|
+
dependencies:
|
|
4000
|
+
onetime: 5.1.2
|
|
4001
|
+
signal-exit: 3.0.7
|
|
4002
|
+
|
|
4003
|
+
rimraf@5.0.10:
|
|
4004
|
+
dependencies:
|
|
4005
|
+
glob: 10.4.5
|
|
4006
|
+
|
|
4007
|
+
rollup@4.46.2:
|
|
4008
|
+
dependencies:
|
|
4009
|
+
'@types/estree': 1.0.8
|
|
4010
|
+
optionalDependencies:
|
|
4011
|
+
'@rollup/rollup-android-arm-eabi': 4.46.2
|
|
4012
|
+
'@rollup/rollup-android-arm64': 4.46.2
|
|
4013
|
+
'@rollup/rollup-darwin-arm64': 4.46.2
|
|
4014
|
+
'@rollup/rollup-darwin-x64': 4.46.2
|
|
4015
|
+
'@rollup/rollup-freebsd-arm64': 4.46.2
|
|
4016
|
+
'@rollup/rollup-freebsd-x64': 4.46.2
|
|
4017
|
+
'@rollup/rollup-linux-arm-gnueabihf': 4.46.2
|
|
4018
|
+
'@rollup/rollup-linux-arm-musleabihf': 4.46.2
|
|
4019
|
+
'@rollup/rollup-linux-arm64-gnu': 4.46.2
|
|
4020
|
+
'@rollup/rollup-linux-arm64-musl': 4.46.2
|
|
4021
|
+
'@rollup/rollup-linux-loongarch64-gnu': 4.46.2
|
|
4022
|
+
'@rollup/rollup-linux-ppc64-gnu': 4.46.2
|
|
4023
|
+
'@rollup/rollup-linux-riscv64-gnu': 4.46.2
|
|
4024
|
+
'@rollup/rollup-linux-riscv64-musl': 4.46.2
|
|
4025
|
+
'@rollup/rollup-linux-s390x-gnu': 4.46.2
|
|
4026
|
+
'@rollup/rollup-linux-x64-gnu': 4.46.2
|
|
4027
|
+
'@rollup/rollup-linux-x64-musl': 4.46.2
|
|
4028
|
+
'@rollup/rollup-win32-arm64-msvc': 4.46.2
|
|
4029
|
+
'@rollup/rollup-win32-ia32-msvc': 4.46.2
|
|
4030
|
+
'@rollup/rollup-win32-x64-msvc': 4.46.2
|
|
4031
|
+
fsevents: 2.3.3
|
|
4032
|
+
|
|
4033
|
+
safe-buffer@5.2.1: {}
|
|
4034
|
+
|
|
4035
|
+
scheduler@0.23.2:
|
|
4036
|
+
dependencies:
|
|
4037
|
+
loose-envify: 1.4.0
|
|
4038
|
+
|
|
4039
|
+
semver@6.3.1: {}
|
|
4040
|
+
|
|
4041
|
+
semver@7.7.2: {}
|
|
4042
|
+
|
|
4043
|
+
shebang-command@2.0.0:
|
|
4044
|
+
dependencies:
|
|
4045
|
+
shebang-regex: 3.0.0
|
|
4046
|
+
|
|
4047
|
+
shebang-regex@3.0.0: {}
|
|
4048
|
+
|
|
4049
|
+
signal-exit@3.0.7: {}
|
|
4050
|
+
|
|
4051
|
+
signal-exit@4.1.0: {}
|
|
4052
|
+
|
|
4053
|
+
signia-react@0.1.5(react@18.3.1):
|
|
4054
|
+
dependencies:
|
|
4055
|
+
react: 18.3.1
|
|
4056
|
+
signia: 0.1.5
|
|
4057
|
+
|
|
4058
|
+
signia@0.1.5: {}
|
|
4059
|
+
|
|
4060
|
+
simple-update-notifier@2.0.0:
|
|
4061
|
+
dependencies:
|
|
4062
|
+
semver: 7.7.2
|
|
4063
|
+
|
|
4064
|
+
source-map-js@1.2.1: {}
|
|
4065
|
+
|
|
4066
|
+
split-on-first@3.0.0: {}
|
|
4067
|
+
|
|
4068
|
+
stdin-discarder@0.1.0:
|
|
4069
|
+
dependencies:
|
|
4070
|
+
bl: 5.1.0
|
|
4071
|
+
|
|
4072
|
+
string-width@4.2.3:
|
|
4073
|
+
dependencies:
|
|
4074
|
+
emoji-regex: 8.0.0
|
|
4075
|
+
is-fullwidth-code-point: 3.0.0
|
|
4076
|
+
strip-ansi: 6.0.1
|
|
4077
|
+
|
|
4078
|
+
string-width@5.1.2:
|
|
4079
|
+
dependencies:
|
|
4080
|
+
eastasianwidth: 0.2.0
|
|
4081
|
+
emoji-regex: 9.2.2
|
|
4082
|
+
strip-ansi: 7.1.0
|
|
4083
|
+
|
|
4084
|
+
string-width@6.1.0:
|
|
4085
|
+
dependencies:
|
|
4086
|
+
eastasianwidth: 0.2.0
|
|
4087
|
+
emoji-regex: 10.4.0
|
|
4088
|
+
strip-ansi: 7.1.0
|
|
4089
|
+
|
|
4090
|
+
string_decoder@1.3.0:
|
|
4091
|
+
dependencies:
|
|
4092
|
+
safe-buffer: 5.2.1
|
|
4093
|
+
|
|
4094
|
+
strip-ansi@6.0.1:
|
|
4095
|
+
dependencies:
|
|
4096
|
+
ansi-regex: 5.0.1
|
|
4097
|
+
|
|
4098
|
+
strip-ansi@7.1.0:
|
|
4099
|
+
dependencies:
|
|
4100
|
+
ansi-regex: 6.1.0
|
|
4101
|
+
|
|
4102
|
+
style-mod@4.1.2: {}
|
|
4103
|
+
|
|
4104
|
+
supports-color@5.5.0:
|
|
4105
|
+
dependencies:
|
|
4106
|
+
has-flag: 3.0.0
|
|
4107
|
+
|
|
4108
|
+
tailwind-merge@1.14.0: {}
|
|
4109
|
+
|
|
4110
|
+
to-regex-range@5.0.1:
|
|
4111
|
+
dependencies:
|
|
4112
|
+
is-number: 7.0.0
|
|
4113
|
+
|
|
4114
|
+
touch@3.1.1: {}
|
|
4115
|
+
|
|
4116
|
+
tslib@2.8.1: {}
|
|
4117
|
+
|
|
4118
|
+
typescript@5.9.2: {}
|
|
4119
|
+
|
|
4120
|
+
undefsafe@2.0.5: {}
|
|
4121
|
+
|
|
4122
|
+
update-browserslist-db@1.1.3(browserslist@4.25.2):
|
|
4123
|
+
dependencies:
|
|
4124
|
+
browserslist: 4.25.2
|
|
4125
|
+
escalade: 3.2.0
|
|
4126
|
+
picocolors: 1.1.1
|
|
4127
|
+
|
|
4128
|
+
use-callback-ref@1.3.3(@types/react@18.3.23)(react@18.3.1):
|
|
4129
|
+
dependencies:
|
|
4130
|
+
react: 18.3.1
|
|
4131
|
+
tslib: 2.8.1
|
|
4132
|
+
optionalDependencies:
|
|
4133
|
+
'@types/react': 18.3.23
|
|
4134
|
+
|
|
4135
|
+
use-sidecar@1.1.3(@types/react@18.3.23)(react@18.3.1):
|
|
4136
|
+
dependencies:
|
|
4137
|
+
detect-node-es: 1.1.0
|
|
4138
|
+
react: 18.3.1
|
|
4139
|
+
tslib: 2.8.1
|
|
4140
|
+
optionalDependencies:
|
|
4141
|
+
'@types/react': 18.3.23
|
|
4142
|
+
|
|
4143
|
+
use-sync-external-store@1.5.0(react@18.3.1):
|
|
4144
|
+
dependencies:
|
|
4145
|
+
react: 18.3.1
|
|
4146
|
+
|
|
4147
|
+
util-deprecate@1.0.2: {}
|
|
4148
|
+
|
|
4149
|
+
uuid@10.0.0: {}
|
|
4150
|
+
|
|
4151
|
+
uuid@9.0.1: {}
|
|
4152
|
+
|
|
4153
|
+
vite-plugin-css-injected-by-js@3.5.2(vite@5.4.19):
|
|
4154
|
+
dependencies:
|
|
4155
|
+
vite: 5.4.19
|
|
4156
|
+
|
|
4157
|
+
vite-plugin-top-level-await@1.6.0(rollup@4.46.2)(vite@5.4.19):
|
|
4158
|
+
dependencies:
|
|
4159
|
+
'@rollup/plugin-virtual': 3.0.2(rollup@4.46.2)
|
|
4160
|
+
'@swc/core': 1.13.3
|
|
4161
|
+
'@swc/wasm': 1.13.3
|
|
4162
|
+
uuid: 10.0.0
|
|
4163
|
+
vite: 5.4.19
|
|
4164
|
+
transitivePeerDependencies:
|
|
4165
|
+
- '@swc/helpers'
|
|
4166
|
+
- rollup
|
|
4167
|
+
|
|
4168
|
+
vite-plugin-wasm@3.5.0(vite@5.4.19):
|
|
4169
|
+
dependencies:
|
|
4170
|
+
vite: 5.4.19
|
|
4171
|
+
|
|
4172
|
+
vite@5.4.19:
|
|
4173
|
+
dependencies:
|
|
4174
|
+
esbuild: 0.21.5
|
|
4175
|
+
postcss: 8.5.6
|
|
4176
|
+
rollup: 4.46.2
|
|
4177
|
+
optionalDependencies:
|
|
4178
|
+
fsevents: 2.3.3
|
|
4179
|
+
|
|
4180
|
+
w3c-keyname@2.2.8: {}
|
|
4181
|
+
|
|
4182
|
+
which@2.0.2:
|
|
4183
|
+
dependencies:
|
|
4184
|
+
isexe: 2.0.0
|
|
4185
|
+
|
|
4186
|
+
wrap-ansi@7.0.0:
|
|
4187
|
+
dependencies:
|
|
4188
|
+
ansi-styles: 4.3.0
|
|
4189
|
+
string-width: 4.2.3
|
|
4190
|
+
strip-ansi: 6.0.1
|
|
4191
|
+
|
|
4192
|
+
wrap-ansi@8.1.0:
|
|
4193
|
+
dependencies:
|
|
4194
|
+
ansi-styles: 6.2.1
|
|
4195
|
+
string-width: 5.1.2
|
|
4196
|
+
strip-ansi: 7.1.0
|
|
4197
|
+
|
|
4198
|
+
ws@8.18.3: {}
|
|
4199
|
+
|
|
4200
|
+
xstate@5.20.2: {}
|
|
4201
|
+
|
|
4202
|
+
yallist@3.1.1: {}
|