create-ec-app 1.7.0 → 1.9.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 +72 -17
- package/dist/cssScope.js +3 -5
- package/dist/cssScope.js.map +1 -1
- package/dist/index.d.ts +46 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +129 -53
- package/dist/index.js.map +1 -1
- package/dist/libFunctions.d.ts +13 -6
- package/dist/libFunctions.d.ts.map +1 -1
- package/dist/libFunctions.js +24 -9
- package/dist/libFunctions.js.map +1 -1
- package/dist/pcf.d.ts.map +1 -1
- package/dist/pcf.js +4 -1
- package/dist/pcf.js.map +1 -1
- package/dist/portalContainers.js +7 -5
- package/dist/portalContainers.js.map +1 -1
- package/package.json +18 -11
- package/scripts/build-generated.mjs +59 -0
- package/scripts/refresh-shadcn-template.ts +406 -0
- package/scripts/smoke-scaffold.mjs +245 -0
- package/templates/base/eslint.config.js +1 -1
- package/templates/base/package-lock.json +380 -476
- package/templates/base/package.json +14 -19
- package/templates/pcf/base/package-lock.json +35 -53
- package/templates/targets/code-apps/AGENTS.md +187 -0
- package/templates/targets/code-apps/CLAUDE.md +1 -0
- package/templates/targets/code-apps/package.patch.json +1 -1
- package/templates/targets/power-pages/AGENTS.md +192 -0
- package/templates/targets/power-pages/CLAUDE.md +1 -0
- package/templates/targets/power-pages/README.md +22 -2
- package/templates/targets/power-pages/src/App.patch.tsx +3 -1
- package/templates/targets/power-pages/src/components/shared/AuthError.tsx +18 -0
- package/templates/targets/power-pages/src/context/AuthContext.tsx +0 -4
- package/templates/targets/swa/AGENTS.md +181 -0
- package/templates/targets/swa/CLAUDE.md +1 -0
- package/templates/targets/webresource/AGENTS.md +179 -67
- package/templates/targets/webresource/CLAUDE.md +1 -0
- package/templates/targets/webresource/README.md +5 -5
- package/templates/ui/kendo/package.patch.json +2 -2
- package/templates/ui/shadcn-ui/SHADCN_TEMPLATE.md +20 -0
- package/templates/ui/shadcn-ui/package.patch.json +18 -9
- package/templates/ui/shadcn-ui/src/components/ui/accordion.tsx +79 -0
- package/templates/ui/shadcn-ui/src/components/ui/alert-dialog.tsx +199 -0
- package/templates/ui/shadcn-ui/src/components/ui/alert.tsx +76 -0
- package/templates/ui/shadcn-ui/src/components/ui/aspect-ratio.tsx +11 -0
- package/templates/ui/shadcn-ui/src/components/ui/attachment.tsx +206 -0
- package/templates/ui/shadcn-ui/src/components/ui/avatar.tsx +110 -0
- package/templates/ui/shadcn-ui/src/components/ui/badge.tsx +49 -0
- package/templates/ui/shadcn-ui/src/components/ui/breadcrumb.tsx +122 -0
- package/templates/ui/shadcn-ui/src/components/ui/bubble.tsx +125 -0
- package/templates/ui/shadcn-ui/src/components/ui/button-group.tsx +83 -0
- package/templates/ui/shadcn-ui/src/components/ui/button.tsx +67 -0
- package/templates/ui/shadcn-ui/src/components/ui/calendar.tsx +222 -0
- package/templates/ui/shadcn-ui/src/components/ui/card.tsx +103 -0
- package/templates/ui/shadcn-ui/src/components/ui/carousel.tsx +240 -0
- package/templates/ui/shadcn-ui/src/components/ui/chart.tsx +373 -0
- package/templates/ui/shadcn-ui/src/components/ui/checkbox.tsx +31 -0
- package/templates/ui/shadcn-ui/src/components/ui/collapsible.tsx +33 -0
- package/templates/ui/shadcn-ui/src/components/ui/combobox.tsx +299 -0
- package/templates/ui/shadcn-ui/src/components/ui/command.tsx +195 -0
- package/templates/ui/shadcn-ui/src/components/ui/context-menu.tsx +264 -0
- package/templates/ui/shadcn-ui/src/components/ui/dialog.tsx +170 -0
- package/templates/ui/shadcn-ui/src/components/ui/direction.tsx +22 -0
- package/templates/ui/shadcn-ui/src/components/ui/drawer.tsx +134 -0
- package/templates/ui/shadcn-ui/src/components/ui/dropdown-menu.tsx +272 -0
- package/templates/ui/shadcn-ui/src/components/ui/empty.tsx +104 -0
- package/templates/ui/shadcn-ui/src/components/ui/field.tsx +236 -0
- package/templates/ui/shadcn-ui/src/components/ui/hover-card.tsx +44 -0
- package/templates/ui/shadcn-ui/src/components/ui/input-group.tsx +156 -0
- package/templates/ui/shadcn-ui/src/components/ui/input-otp.tsx +87 -0
- package/templates/ui/shadcn-ui/src/components/ui/input.tsx +19 -0
- package/templates/ui/shadcn-ui/src/components/ui/item.tsx +196 -0
- package/templates/ui/shadcn-ui/src/components/ui/kbd.tsx +26 -0
- package/templates/ui/shadcn-ui/src/components/ui/label.tsx +22 -0
- package/templates/ui/shadcn-ui/src/components/ui/marker.tsx +69 -0
- package/templates/ui/shadcn-ui/src/components/ui/menubar.tsx +282 -0
- package/templates/ui/shadcn-ui/src/components/ui/message-scroller.tsx +129 -0
- package/templates/ui/shadcn-ui/src/components/ui/message.tsx +92 -0
- package/templates/ui/shadcn-ui/src/components/ui/native-select.tsx +61 -0
- package/templates/ui/shadcn-ui/src/components/ui/navigation-menu.tsx +164 -0
- package/templates/ui/shadcn-ui/src/components/ui/pagination.tsx +129 -0
- package/templates/ui/shadcn-ui/src/components/ui/popover.tsx +89 -0
- package/templates/ui/shadcn-ui/src/components/ui/progress.tsx +31 -0
- package/templates/ui/shadcn-ui/src/components/ui/radio-group.tsx +42 -0
- package/templates/ui/shadcn-ui/src/components/ui/resizable.tsx +50 -0
- package/templates/ui/shadcn-ui/src/components/ui/scroll-area.tsx +53 -0
- package/templates/ui/shadcn-ui/src/components/ui/select.tsx +194 -0
- package/templates/ui/shadcn-ui/src/components/ui/separator.tsx +26 -0
- package/templates/ui/shadcn-ui/src/components/ui/sheet.tsx +149 -0
- package/templates/ui/shadcn-ui/src/components/ui/sidebar.tsx +702 -0
- package/templates/ui/shadcn-ui/src/components/ui/skeleton.tsx +13 -0
- package/templates/ui/shadcn-ui/src/components/ui/slider.tsx +59 -0
- package/templates/ui/shadcn-ui/src/components/ui/sonner.tsx +47 -0
- package/templates/ui/shadcn-ui/src/components/ui/spinner.tsx +10 -0
- package/templates/ui/shadcn-ui/src/components/ui/switch.tsx +33 -0
- package/templates/ui/shadcn-ui/src/components/ui/table.tsx +114 -0
- package/templates/ui/shadcn-ui/src/components/ui/tabs.tsx +90 -0
- package/templates/ui/shadcn-ui/src/components/ui/textarea.tsx +18 -0
- package/templates/ui/shadcn-ui/src/components/ui/toggle-group.tsx +87 -0
- package/templates/ui/shadcn-ui/src/components/ui/toggle.tsx +45 -0
- package/templates/ui/shadcn-ui/src/components/ui/tooltip.tsx +59 -0
- package/templates/ui/shadcn-ui/src/index.patch.css +0 -118
- package/templates/ui/shadcn-ui/src/runtime/PortalContainer.ts +8 -0
- package/templates/base/biome.json +0 -54
|
@@ -8,39 +8,39 @@
|
|
|
8
8
|
"name": "base",
|
|
9
9
|
"version": "0.1.0",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@tailwindcss/vite": "^4.3.
|
|
12
|
-
"@tanstack/react-query": "^5.
|
|
11
|
+
"@tailwindcss/vite": "^4.3.1",
|
|
12
|
+
"@tanstack/react-query": "^5.101.2",
|
|
13
13
|
"@types/xrm": "^9.0.94",
|
|
14
14
|
"react": "^19.2.7",
|
|
15
15
|
"react-dom": "^19.2.7",
|
|
16
|
-
"tailwindcss": "^4.3.
|
|
16
|
+
"tailwindcss": "^4.3.1",
|
|
17
17
|
"zod": "^4.4.3",
|
|
18
18
|
"zustand": "^5.0.14"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@eslint/js": "^10.0.1",
|
|
22
|
-
"@tanstack/eslint-plugin-query": "^5.
|
|
23
|
-
"@types/node": "^
|
|
24
|
-
"@types/react": "^19.2.
|
|
22
|
+
"@tanstack/eslint-plugin-query": "^5.101.2",
|
|
23
|
+
"@types/node": "^22.20.0",
|
|
24
|
+
"@types/react": "^19.2.17",
|
|
25
25
|
"@types/react-dom": "^19.2.3",
|
|
26
|
-
"@vitejs/plugin-react": "^6.0.
|
|
27
|
-
"eslint": "^10.
|
|
26
|
+
"@vitejs/plugin-react": "^6.0.3",
|
|
27
|
+
"eslint": "^10.6.0",
|
|
28
28
|
"eslint-plugin-react-hooks": "^7.1.1",
|
|
29
|
-
"eslint-plugin-react-refresh": "^0.5.
|
|
30
|
-
"globals": "^17.
|
|
31
|
-
"typescript": "
|
|
32
|
-
"typescript-eslint": "^8.
|
|
33
|
-
"vite": "^8.0
|
|
29
|
+
"eslint-plugin-react-refresh": "^0.5.3",
|
|
30
|
+
"globals": "^17.7.0",
|
|
31
|
+
"typescript": "^6.0.3",
|
|
32
|
+
"typescript-eslint": "^8.62.0",
|
|
33
|
+
"vite": "^8.1.0"
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
36
|
"node_modules/@babel/code-frame": {
|
|
37
|
-
"version": "7.29.
|
|
38
|
-
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.
|
|
39
|
-
"integrity": "sha512-
|
|
37
|
+
"version": "7.29.7",
|
|
38
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz",
|
|
39
|
+
"integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==",
|
|
40
40
|
"dev": true,
|
|
41
41
|
"license": "MIT",
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@babel/helper-validator-identifier": "^7.
|
|
43
|
+
"@babel/helper-validator-identifier": "^7.29.7",
|
|
44
44
|
"js-tokens": "^4.0.0",
|
|
45
45
|
"picocolors": "^1.1.1"
|
|
46
46
|
},
|
|
@@ -49,9 +49,9 @@
|
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
51
|
"node_modules/@babel/compat-data": {
|
|
52
|
-
"version": "7.29.
|
|
53
|
-
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.
|
|
54
|
-
"integrity": "sha512-
|
|
52
|
+
"version": "7.29.7",
|
|
53
|
+
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.7.tgz",
|
|
54
|
+
"integrity": "sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==",
|
|
55
55
|
"dev": true,
|
|
56
56
|
"license": "MIT",
|
|
57
57
|
"engines": {
|
|
@@ -59,21 +59,21 @@
|
|
|
59
59
|
}
|
|
60
60
|
},
|
|
61
61
|
"node_modules/@babel/core": {
|
|
62
|
-
"version": "7.29.
|
|
63
|
-
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.
|
|
64
|
-
"integrity": "sha512-
|
|
62
|
+
"version": "7.29.7",
|
|
63
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.7.tgz",
|
|
64
|
+
"integrity": "sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==",
|
|
65
65
|
"dev": true,
|
|
66
66
|
"license": "MIT",
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@babel/code-frame": "^7.29.
|
|
69
|
-
"@babel/generator": "^7.29.
|
|
70
|
-
"@babel/helper-compilation-targets": "^7.
|
|
71
|
-
"@babel/helper-module-transforms": "^7.
|
|
72
|
-
"@babel/helpers": "^7.
|
|
73
|
-
"@babel/parser": "^7.29.
|
|
74
|
-
"@babel/template": "^7.
|
|
75
|
-
"@babel/traverse": "^7.29.
|
|
76
|
-
"@babel/types": "^7.29.
|
|
68
|
+
"@babel/code-frame": "^7.29.7",
|
|
69
|
+
"@babel/generator": "^7.29.7",
|
|
70
|
+
"@babel/helper-compilation-targets": "^7.29.7",
|
|
71
|
+
"@babel/helper-module-transforms": "^7.29.7",
|
|
72
|
+
"@babel/helpers": "^7.29.7",
|
|
73
|
+
"@babel/parser": "^7.29.7",
|
|
74
|
+
"@babel/template": "^7.29.7",
|
|
75
|
+
"@babel/traverse": "^7.29.7",
|
|
76
|
+
"@babel/types": "^7.29.7",
|
|
77
77
|
"@jridgewell/remapping": "^2.3.5",
|
|
78
78
|
"convert-source-map": "^2.0.0",
|
|
79
79
|
"debug": "^4.1.0",
|
|
@@ -100,14 +100,14 @@
|
|
|
100
100
|
}
|
|
101
101
|
},
|
|
102
102
|
"node_modules/@babel/generator": {
|
|
103
|
-
"version": "7.29.
|
|
104
|
-
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.
|
|
105
|
-
"integrity": "sha512-
|
|
103
|
+
"version": "7.29.7",
|
|
104
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.7.tgz",
|
|
105
|
+
"integrity": "sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==",
|
|
106
106
|
"dev": true,
|
|
107
107
|
"license": "MIT",
|
|
108
108
|
"dependencies": {
|
|
109
|
-
"@babel/parser": "^7.29.
|
|
110
|
-
"@babel/types": "^7.29.
|
|
109
|
+
"@babel/parser": "^7.29.7",
|
|
110
|
+
"@babel/types": "^7.29.7",
|
|
111
111
|
"@jridgewell/gen-mapping": "^0.3.12",
|
|
112
112
|
"@jridgewell/trace-mapping": "^0.3.28",
|
|
113
113
|
"jsesc": "^3.0.2"
|
|
@@ -117,14 +117,14 @@
|
|
|
117
117
|
}
|
|
118
118
|
},
|
|
119
119
|
"node_modules/@babel/helper-compilation-targets": {
|
|
120
|
-
"version": "7.
|
|
121
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.
|
|
122
|
-
"integrity": "sha512-
|
|
120
|
+
"version": "7.29.7",
|
|
121
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz",
|
|
122
|
+
"integrity": "sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==",
|
|
123
123
|
"dev": true,
|
|
124
124
|
"license": "MIT",
|
|
125
125
|
"dependencies": {
|
|
126
|
-
"@babel/compat-data": "^7.
|
|
127
|
-
"@babel/helper-validator-option": "^7.
|
|
126
|
+
"@babel/compat-data": "^7.29.7",
|
|
127
|
+
"@babel/helper-validator-option": "^7.29.7",
|
|
128
128
|
"browserslist": "^4.24.0",
|
|
129
129
|
"lru-cache": "^5.1.1",
|
|
130
130
|
"semver": "^6.3.1"
|
|
@@ -144,9 +144,9 @@
|
|
|
144
144
|
}
|
|
145
145
|
},
|
|
146
146
|
"node_modules/@babel/helper-globals": {
|
|
147
|
-
"version": "7.
|
|
148
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.
|
|
149
|
-
"integrity": "sha512
|
|
147
|
+
"version": "7.29.7",
|
|
148
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.29.7.tgz",
|
|
149
|
+
"integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==",
|
|
150
150
|
"dev": true,
|
|
151
151
|
"license": "MIT",
|
|
152
152
|
"engines": {
|
|
@@ -154,29 +154,29 @@
|
|
|
154
154
|
}
|
|
155
155
|
},
|
|
156
156
|
"node_modules/@babel/helper-module-imports": {
|
|
157
|
-
"version": "7.
|
|
158
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.
|
|
159
|
-
"integrity": "sha512-
|
|
157
|
+
"version": "7.29.7",
|
|
158
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz",
|
|
159
|
+
"integrity": "sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==",
|
|
160
160
|
"dev": true,
|
|
161
161
|
"license": "MIT",
|
|
162
162
|
"dependencies": {
|
|
163
|
-
"@babel/traverse": "^7.
|
|
164
|
-
"@babel/types": "^7.
|
|
163
|
+
"@babel/traverse": "^7.29.7",
|
|
164
|
+
"@babel/types": "^7.29.7"
|
|
165
165
|
},
|
|
166
166
|
"engines": {
|
|
167
167
|
"node": ">=6.9.0"
|
|
168
168
|
}
|
|
169
169
|
},
|
|
170
170
|
"node_modules/@babel/helper-module-transforms": {
|
|
171
|
-
"version": "7.
|
|
172
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.
|
|
173
|
-
"integrity": "sha512-
|
|
171
|
+
"version": "7.29.7",
|
|
172
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz",
|
|
173
|
+
"integrity": "sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==",
|
|
174
174
|
"dev": true,
|
|
175
175
|
"license": "MIT",
|
|
176
176
|
"dependencies": {
|
|
177
|
-
"@babel/helper-module-imports": "^7.
|
|
178
|
-
"@babel/helper-validator-identifier": "^7.
|
|
179
|
-
"@babel/traverse": "^7.
|
|
177
|
+
"@babel/helper-module-imports": "^7.29.7",
|
|
178
|
+
"@babel/helper-validator-identifier": "^7.29.7",
|
|
179
|
+
"@babel/traverse": "^7.29.7"
|
|
180
180
|
},
|
|
181
181
|
"engines": {
|
|
182
182
|
"node": ">=6.9.0"
|
|
@@ -186,9 +186,9 @@
|
|
|
186
186
|
}
|
|
187
187
|
},
|
|
188
188
|
"node_modules/@babel/helper-string-parser": {
|
|
189
|
-
"version": "7.
|
|
190
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.
|
|
191
|
-
"integrity": "sha512-
|
|
189
|
+
"version": "7.29.7",
|
|
190
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
|
|
191
|
+
"integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
|
|
192
192
|
"dev": true,
|
|
193
193
|
"license": "MIT",
|
|
194
194
|
"engines": {
|
|
@@ -196,9 +196,9 @@
|
|
|
196
196
|
}
|
|
197
197
|
},
|
|
198
198
|
"node_modules/@babel/helper-validator-identifier": {
|
|
199
|
-
"version": "7.
|
|
200
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.
|
|
201
|
-
"integrity": "sha512-
|
|
199
|
+
"version": "7.29.7",
|
|
200
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
|
|
201
|
+
"integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
|
|
202
202
|
"dev": true,
|
|
203
203
|
"license": "MIT",
|
|
204
204
|
"engines": {
|
|
@@ -206,9 +206,9 @@
|
|
|
206
206
|
}
|
|
207
207
|
},
|
|
208
208
|
"node_modules/@babel/helper-validator-option": {
|
|
209
|
-
"version": "7.
|
|
210
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.
|
|
211
|
-
"integrity": "sha512-
|
|
209
|
+
"version": "7.29.7",
|
|
210
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz",
|
|
211
|
+
"integrity": "sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==",
|
|
212
212
|
"dev": true,
|
|
213
213
|
"license": "MIT",
|
|
214
214
|
"engines": {
|
|
@@ -216,27 +216,27 @@
|
|
|
216
216
|
}
|
|
217
217
|
},
|
|
218
218
|
"node_modules/@babel/helpers": {
|
|
219
|
-
"version": "7.
|
|
220
|
-
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.
|
|
221
|
-
"integrity": "sha512-
|
|
219
|
+
"version": "7.29.7",
|
|
220
|
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.7.tgz",
|
|
221
|
+
"integrity": "sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==",
|
|
222
222
|
"dev": true,
|
|
223
223
|
"license": "MIT",
|
|
224
224
|
"dependencies": {
|
|
225
|
-
"@babel/template": "^7.
|
|
226
|
-
"@babel/types": "^7.
|
|
225
|
+
"@babel/template": "^7.29.7",
|
|
226
|
+
"@babel/types": "^7.29.7"
|
|
227
227
|
},
|
|
228
228
|
"engines": {
|
|
229
229
|
"node": ">=6.9.0"
|
|
230
230
|
}
|
|
231
231
|
},
|
|
232
232
|
"node_modules/@babel/parser": {
|
|
233
|
-
"version": "7.29.
|
|
234
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.
|
|
235
|
-
"integrity": "sha512-
|
|
233
|
+
"version": "7.29.7",
|
|
234
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz",
|
|
235
|
+
"integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==",
|
|
236
236
|
"dev": true,
|
|
237
237
|
"license": "MIT",
|
|
238
238
|
"dependencies": {
|
|
239
|
-
"@babel/types": "^7.29.
|
|
239
|
+
"@babel/types": "^7.29.7"
|
|
240
240
|
},
|
|
241
241
|
"bin": {
|
|
242
242
|
"parser": "bin/babel-parser.js"
|
|
@@ -246,33 +246,33 @@
|
|
|
246
246
|
}
|
|
247
247
|
},
|
|
248
248
|
"node_modules/@babel/template": {
|
|
249
|
-
"version": "7.
|
|
250
|
-
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.
|
|
251
|
-
"integrity": "sha512-
|
|
249
|
+
"version": "7.29.7",
|
|
250
|
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.29.7.tgz",
|
|
251
|
+
"integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==",
|
|
252
252
|
"dev": true,
|
|
253
253
|
"license": "MIT",
|
|
254
254
|
"dependencies": {
|
|
255
|
-
"@babel/code-frame": "^7.
|
|
256
|
-
"@babel/parser": "^7.
|
|
257
|
-
"@babel/types": "^7.
|
|
255
|
+
"@babel/code-frame": "^7.29.7",
|
|
256
|
+
"@babel/parser": "^7.29.7",
|
|
257
|
+
"@babel/types": "^7.29.7"
|
|
258
258
|
},
|
|
259
259
|
"engines": {
|
|
260
260
|
"node": ">=6.9.0"
|
|
261
261
|
}
|
|
262
262
|
},
|
|
263
263
|
"node_modules/@babel/traverse": {
|
|
264
|
-
"version": "7.29.
|
|
265
|
-
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.
|
|
266
|
-
"integrity": "sha512-
|
|
264
|
+
"version": "7.29.7",
|
|
265
|
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.7.tgz",
|
|
266
|
+
"integrity": "sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==",
|
|
267
267
|
"dev": true,
|
|
268
268
|
"license": "MIT",
|
|
269
269
|
"dependencies": {
|
|
270
|
-
"@babel/code-frame": "^7.29.
|
|
271
|
-
"@babel/generator": "^7.29.
|
|
272
|
-
"@babel/helper-globals": "^7.
|
|
273
|
-
"@babel/parser": "^7.29.
|
|
274
|
-
"@babel/template": "^7.
|
|
275
|
-
"@babel/types": "^7.29.
|
|
270
|
+
"@babel/code-frame": "^7.29.7",
|
|
271
|
+
"@babel/generator": "^7.29.7",
|
|
272
|
+
"@babel/helper-globals": "^7.29.7",
|
|
273
|
+
"@babel/parser": "^7.29.7",
|
|
274
|
+
"@babel/template": "^7.29.7",
|
|
275
|
+
"@babel/types": "^7.29.7",
|
|
276
276
|
"debug": "^4.3.1"
|
|
277
277
|
},
|
|
278
278
|
"engines": {
|
|
@@ -280,34 +280,34 @@
|
|
|
280
280
|
}
|
|
281
281
|
},
|
|
282
282
|
"node_modules/@babel/types": {
|
|
283
|
-
"version": "7.29.
|
|
284
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.
|
|
285
|
-
"integrity": "sha512-
|
|
283
|
+
"version": "7.29.7",
|
|
284
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz",
|
|
285
|
+
"integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==",
|
|
286
286
|
"dev": true,
|
|
287
287
|
"license": "MIT",
|
|
288
288
|
"dependencies": {
|
|
289
|
-
"@babel/helper-string-parser": "^7.
|
|
290
|
-
"@babel/helper-validator-identifier": "^7.
|
|
289
|
+
"@babel/helper-string-parser": "^7.29.7",
|
|
290
|
+
"@babel/helper-validator-identifier": "^7.29.7"
|
|
291
291
|
},
|
|
292
292
|
"engines": {
|
|
293
293
|
"node": ">=6.9.0"
|
|
294
294
|
}
|
|
295
295
|
},
|
|
296
296
|
"node_modules/@emnapi/core": {
|
|
297
|
-
"version": "1.
|
|
298
|
-
"resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.
|
|
299
|
-
"integrity": "sha512-
|
|
297
|
+
"version": "1.11.1",
|
|
298
|
+
"resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.11.1.tgz",
|
|
299
|
+
"integrity": "sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==",
|
|
300
300
|
"license": "MIT",
|
|
301
301
|
"optional": true,
|
|
302
302
|
"dependencies": {
|
|
303
|
-
"@emnapi/wasi-threads": "1.2.
|
|
303
|
+
"@emnapi/wasi-threads": "1.2.2",
|
|
304
304
|
"tslib": "^2.4.0"
|
|
305
305
|
}
|
|
306
306
|
},
|
|
307
307
|
"node_modules/@emnapi/runtime": {
|
|
308
|
-
"version": "1.
|
|
309
|
-
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.
|
|
310
|
-
"integrity": "sha512-
|
|
308
|
+
"version": "1.11.1",
|
|
309
|
+
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.1.tgz",
|
|
310
|
+
"integrity": "sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==",
|
|
311
311
|
"license": "MIT",
|
|
312
312
|
"optional": true,
|
|
313
313
|
"dependencies": {
|
|
@@ -315,9 +315,9 @@
|
|
|
315
315
|
}
|
|
316
316
|
},
|
|
317
317
|
"node_modules/@emnapi/wasi-threads": {
|
|
318
|
-
"version": "1.2.
|
|
319
|
-
"resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.
|
|
320
|
-
"integrity": "sha512-
|
|
318
|
+
"version": "1.2.2",
|
|
319
|
+
"resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.2.tgz",
|
|
320
|
+
"integrity": "sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==",
|
|
321
321
|
"license": "MIT",
|
|
322
322
|
"optional": true,
|
|
323
323
|
"dependencies": {
|
|
@@ -537,13 +537,13 @@
|
|
|
537
537
|
}
|
|
538
538
|
},
|
|
539
539
|
"node_modules/@napi-rs/wasm-runtime": {
|
|
540
|
-
"version": "1.1.
|
|
541
|
-
"resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.
|
|
542
|
-
"integrity": "sha512-
|
|
540
|
+
"version": "1.1.6",
|
|
541
|
+
"resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.6.tgz",
|
|
542
|
+
"integrity": "sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==",
|
|
543
543
|
"license": "MIT",
|
|
544
544
|
"optional": true,
|
|
545
545
|
"dependencies": {
|
|
546
|
-
"@tybys/wasm-util": "^0.10.
|
|
546
|
+
"@tybys/wasm-util": "^0.10.3"
|
|
547
547
|
},
|
|
548
548
|
"funding": {
|
|
549
549
|
"type": "github",
|
|
@@ -555,18 +555,18 @@
|
|
|
555
555
|
}
|
|
556
556
|
},
|
|
557
557
|
"node_modules/@oxc-project/types": {
|
|
558
|
-
"version": "0.
|
|
559
|
-
"resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.
|
|
560
|
-
"integrity": "sha512-
|
|
558
|
+
"version": "0.137.0",
|
|
559
|
+
"resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.137.0.tgz",
|
|
560
|
+
"integrity": "sha512-WT+Gb24i8hmvo85AIv2oEYouEXkRlKAlT9WaCa3TfLgNCN+GhrJOGZuIlMouAh38Qe4QOx26eUOVsq70qXrywA==",
|
|
561
561
|
"license": "MIT",
|
|
562
562
|
"funding": {
|
|
563
563
|
"url": "https://github.com/sponsors/Boshen"
|
|
564
564
|
}
|
|
565
565
|
},
|
|
566
566
|
"node_modules/@rolldown/binding-android-arm64": {
|
|
567
|
-
"version": "1.
|
|
568
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.
|
|
569
|
-
"integrity": "sha512-
|
|
567
|
+
"version": "1.1.3",
|
|
568
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.1.3.tgz",
|
|
569
|
+
"integrity": "sha512-DT6Z3PhvioeHMvxo+xHc3KtqggrI7CCTXCmC2h/5zUlp5jVitv7XEy+9q5/7v8IolhlioawpMo8Kg0EEBy7J0g==",
|
|
570
570
|
"cpu": [
|
|
571
571
|
"arm64"
|
|
572
572
|
],
|
|
@@ -580,9 +580,9 @@
|
|
|
580
580
|
}
|
|
581
581
|
},
|
|
582
582
|
"node_modules/@rolldown/binding-darwin-arm64": {
|
|
583
|
-
"version": "1.
|
|
584
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.
|
|
585
|
-
"integrity": "sha512-
|
|
583
|
+
"version": "1.1.3",
|
|
584
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.1.3.tgz",
|
|
585
|
+
"integrity": "sha512-0NwgwsjM7LrsuVnXMK3koTpagBNOhloc/BNjKqZjv4V5zI5r13qx69uVhRx+o5Z0yy4Hzq+lpy7TAgUG/ocvrw==",
|
|
586
586
|
"cpu": [
|
|
587
587
|
"arm64"
|
|
588
588
|
],
|
|
@@ -596,9 +596,9 @@
|
|
|
596
596
|
}
|
|
597
597
|
},
|
|
598
598
|
"node_modules/@rolldown/binding-darwin-x64": {
|
|
599
|
-
"version": "1.
|
|
600
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.
|
|
601
|
-
"integrity": "sha512-
|
|
599
|
+
"version": "1.1.3",
|
|
600
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.1.3.tgz",
|
|
601
|
+
"integrity": "sha512-YtiBp4disu6V560loT6PjMdiRaWmVvDNrUunAalbiFx2ggeJwxdAsgZMcoGP17uyAsTwAj5V1niksxlHnVQ1Sw==",
|
|
602
602
|
"cpu": [
|
|
603
603
|
"x64"
|
|
604
604
|
],
|
|
@@ -612,9 +612,9 @@
|
|
|
612
612
|
}
|
|
613
613
|
},
|
|
614
614
|
"node_modules/@rolldown/binding-freebsd-x64": {
|
|
615
|
-
"version": "1.
|
|
616
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.
|
|
617
|
-
"integrity": "sha512-
|
|
615
|
+
"version": "1.1.3",
|
|
616
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.1.3.tgz",
|
|
617
|
+
"integrity": "sha512-yD3EkEdXk2LypPxnf/kSZHirarsI8gcPzc62SukhR9VJTyvV+F9Q/GxWNuCojc7sXyuVC4DxRGhdDK4X8VSsbw==",
|
|
618
618
|
"cpu": [
|
|
619
619
|
"x64"
|
|
620
620
|
],
|
|
@@ -628,9 +628,9 @@
|
|
|
628
628
|
}
|
|
629
629
|
},
|
|
630
630
|
"node_modules/@rolldown/binding-linux-arm-gnueabihf": {
|
|
631
|
-
"version": "1.
|
|
632
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.
|
|
633
|
-
"integrity": "sha512-
|
|
631
|
+
"version": "1.1.3",
|
|
632
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.1.3.tgz",
|
|
633
|
+
"integrity": "sha512-c+8vieQbsD7HNAHKIA34w0GJ9FedFFuJGD+7E6vz7Q3uqAIugL5p45fhlsj4UaAsHpcmlqugBWMhA0/j7o0sIg==",
|
|
634
634
|
"cpu": [
|
|
635
635
|
"arm"
|
|
636
636
|
],
|
|
@@ -644,15 +644,12 @@
|
|
|
644
644
|
}
|
|
645
645
|
},
|
|
646
646
|
"node_modules/@rolldown/binding-linux-arm64-gnu": {
|
|
647
|
-
"version": "1.
|
|
648
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.
|
|
649
|
-
"integrity": "sha512-
|
|
647
|
+
"version": "1.1.3",
|
|
648
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.1.3.tgz",
|
|
649
|
+
"integrity": "sha512-50jD0uUwLvur7Zz9LHz17kaAdTPjn5wN93hEgjvmYFRZwiR7ZJYovTd5ipyWJDAnXKvZ+wgc+/Ika6dwSF5OcA==",
|
|
650
650
|
"cpu": [
|
|
651
651
|
"arm64"
|
|
652
652
|
],
|
|
653
|
-
"libc": [
|
|
654
|
-
"glibc"
|
|
655
|
-
],
|
|
656
653
|
"license": "MIT",
|
|
657
654
|
"optional": true,
|
|
658
655
|
"os": [
|
|
@@ -663,15 +660,12 @@
|
|
|
663
660
|
}
|
|
664
661
|
},
|
|
665
662
|
"node_modules/@rolldown/binding-linux-arm64-musl": {
|
|
666
|
-
"version": "1.
|
|
667
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.
|
|
668
|
-
"integrity": "sha512-
|
|
663
|
+
"version": "1.1.3",
|
|
664
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.1.3.tgz",
|
|
665
|
+
"integrity": "sha512-BO9+oPL8K9poZJBfYPsXNtYjPE5uM3qeehT3aFcW4LITOl+iSqhp0abzjR2nWBUNjIZeKXjAEWBZ64WjNoHd6w==",
|
|
669
666
|
"cpu": [
|
|
670
667
|
"arm64"
|
|
671
668
|
],
|
|
672
|
-
"libc": [
|
|
673
|
-
"musl"
|
|
674
|
-
],
|
|
675
669
|
"license": "MIT",
|
|
676
670
|
"optional": true,
|
|
677
671
|
"os": [
|
|
@@ -682,15 +676,12 @@
|
|
|
682
676
|
}
|
|
683
677
|
},
|
|
684
678
|
"node_modules/@rolldown/binding-linux-ppc64-gnu": {
|
|
685
|
-
"version": "1.
|
|
686
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.
|
|
687
|
-
"integrity": "sha512-
|
|
679
|
+
"version": "1.1.3",
|
|
680
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.1.3.tgz",
|
|
681
|
+
"integrity": "sha512-f3VpLB1vQ0Eo6ecr/6cekLnvYMFF4YBFoVGkfkvPLq1bAkbAwHYQPZKoAmG6OJyTcxxoC+AvezGx/S1obNC0Mw==",
|
|
688
682
|
"cpu": [
|
|
689
683
|
"ppc64"
|
|
690
684
|
],
|
|
691
|
-
"libc": [
|
|
692
|
-
"glibc"
|
|
693
|
-
],
|
|
694
685
|
"license": "MIT",
|
|
695
686
|
"optional": true,
|
|
696
687
|
"os": [
|
|
@@ -701,15 +692,12 @@
|
|
|
701
692
|
}
|
|
702
693
|
},
|
|
703
694
|
"node_modules/@rolldown/binding-linux-s390x-gnu": {
|
|
704
|
-
"version": "1.
|
|
705
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.
|
|
706
|
-
"integrity": "sha512-
|
|
695
|
+
"version": "1.1.3",
|
|
696
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.1.3.tgz",
|
|
697
|
+
"integrity": "sha512-AmurZ26Pqx/RI9N1gzEOCklkKXl927yjfXWUUS0O7Puh8ARM/Ob8qfrD3qnWksScdw6cSrW5PSHE9DyLu7+PtA==",
|
|
707
698
|
"cpu": [
|
|
708
699
|
"s390x"
|
|
709
700
|
],
|
|
710
|
-
"libc": [
|
|
711
|
-
"glibc"
|
|
712
|
-
],
|
|
713
701
|
"license": "MIT",
|
|
714
702
|
"optional": true,
|
|
715
703
|
"os": [
|
|
@@ -720,15 +708,12 @@
|
|
|
720
708
|
}
|
|
721
709
|
},
|
|
722
710
|
"node_modules/@rolldown/binding-linux-x64-gnu": {
|
|
723
|
-
"version": "1.
|
|
724
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.
|
|
725
|
-
"integrity": "sha512-
|
|
711
|
+
"version": "1.1.3",
|
|
712
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.1.3.tgz",
|
|
713
|
+
"integrity": "sha512-JJpqs8bRGITDOdbkNKnlojzBabbOHrqjSvDr0IVsZObE1lBcPjxItUEY9eWIDbxaJ3cGrXPWGfGkIxFijg/URg==",
|
|
726
714
|
"cpu": [
|
|
727
715
|
"x64"
|
|
728
716
|
],
|
|
729
|
-
"libc": [
|
|
730
|
-
"glibc"
|
|
731
|
-
],
|
|
732
717
|
"license": "MIT",
|
|
733
718
|
"optional": true,
|
|
734
719
|
"os": [
|
|
@@ -739,15 +724,12 @@
|
|
|
739
724
|
}
|
|
740
725
|
},
|
|
741
726
|
"node_modules/@rolldown/binding-linux-x64-musl": {
|
|
742
|
-
"version": "1.
|
|
743
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.
|
|
744
|
-
"integrity": "sha512-
|
|
727
|
+
"version": "1.1.3",
|
|
728
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.1.3.tgz",
|
|
729
|
+
"integrity": "sha512-rSJcdjPxzA/by/6/rYs+v+bXU7UjvnbUWz8MJb6kh6+knqB1dCrtHg0uu7C/4haqJvqdkYHQ5IGn+tCH9GLW/g==",
|
|
745
730
|
"cpu": [
|
|
746
731
|
"x64"
|
|
747
732
|
],
|
|
748
|
-
"libc": [
|
|
749
|
-
"musl"
|
|
750
|
-
],
|
|
751
733
|
"license": "MIT",
|
|
752
734
|
"optional": true,
|
|
753
735
|
"os": [
|
|
@@ -758,9 +740,9 @@
|
|
|
758
740
|
}
|
|
759
741
|
},
|
|
760
742
|
"node_modules/@rolldown/binding-openharmony-arm64": {
|
|
761
|
-
"version": "1.
|
|
762
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.
|
|
763
|
-
"integrity": "sha512-
|
|
743
|
+
"version": "1.1.3",
|
|
744
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.1.3.tgz",
|
|
745
|
+
"integrity": "sha512-hQ3/PYkDJICgevvyNcVrihVeqq7k1Pp3VZ9lY+dauAYUJKO+auqApvANhvR1An9BhmqYKvW2Mu1F9u4DXSMLxQ==",
|
|
764
746
|
"cpu": [
|
|
765
747
|
"arm64"
|
|
766
748
|
],
|
|
@@ -774,27 +756,27 @@
|
|
|
774
756
|
}
|
|
775
757
|
},
|
|
776
758
|
"node_modules/@rolldown/binding-wasm32-wasi": {
|
|
777
|
-
"version": "1.
|
|
778
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.
|
|
779
|
-
"integrity": "sha512-
|
|
759
|
+
"version": "1.1.3",
|
|
760
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.1.3.tgz",
|
|
761
|
+
"integrity": "sha512-Elcv/BtML9lXrV6JuKITc/grN2kYV9gjsQpW8Jfw4ioK0TOkjBjye0nnyqQNy9STNaI20lXNaQBRrD5gSgR0Yg==",
|
|
780
762
|
"cpu": [
|
|
781
763
|
"wasm32"
|
|
782
764
|
],
|
|
783
765
|
"license": "MIT",
|
|
784
766
|
"optional": true,
|
|
785
767
|
"dependencies": {
|
|
786
|
-
"@emnapi/core": "1.
|
|
787
|
-
"@emnapi/runtime": "1.
|
|
788
|
-
"@napi-rs/wasm-runtime": "^1.1.
|
|
768
|
+
"@emnapi/core": "1.11.1",
|
|
769
|
+
"@emnapi/runtime": "1.11.1",
|
|
770
|
+
"@napi-rs/wasm-runtime": "^1.1.6"
|
|
789
771
|
},
|
|
790
772
|
"engines": {
|
|
791
773
|
"node": "^20.19.0 || >=22.12.0"
|
|
792
774
|
}
|
|
793
775
|
},
|
|
794
776
|
"node_modules/@rolldown/binding-win32-arm64-msvc": {
|
|
795
|
-
"version": "1.
|
|
796
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.
|
|
797
|
-
"integrity": "sha512-
|
|
777
|
+
"version": "1.1.3",
|
|
778
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.1.3.tgz",
|
|
779
|
+
"integrity": "sha512-2DrEfhluH9yhiaFApmsjsjwrSYbNcY1oFTzYSP1a535jDbV98zCFanA/96TBUd0iDFcxGmw9QRExwGCXz3U+/g==",
|
|
798
780
|
"cpu": [
|
|
799
781
|
"arm64"
|
|
800
782
|
],
|
|
@@ -808,9 +790,9 @@
|
|
|
808
790
|
}
|
|
809
791
|
},
|
|
810
792
|
"node_modules/@rolldown/binding-win32-x64-msvc": {
|
|
811
|
-
"version": "1.
|
|
812
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.
|
|
813
|
-
"integrity": "sha512-
|
|
793
|
+
"version": "1.1.3",
|
|
794
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.1.3.tgz",
|
|
795
|
+
"integrity": "sha512-OL4OMk7UPXOeVGGd3qo5zJyPIljf4AFgk5QAkPPS+OoLuOOozhuaQGC18MxVTnw/06q93gShAJzlwnSCY9YtqA==",
|
|
814
796
|
"cpu": [
|
|
815
797
|
"x64"
|
|
816
798
|
],
|
|
@@ -830,47 +812,47 @@
|
|
|
830
812
|
"license": "MIT"
|
|
831
813
|
},
|
|
832
814
|
"node_modules/@tailwindcss/node": {
|
|
833
|
-
"version": "4.3.
|
|
834
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.
|
|
835
|
-
"integrity": "sha512-
|
|
815
|
+
"version": "4.3.1",
|
|
816
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.1.tgz",
|
|
817
|
+
"integrity": "sha512-6NDaqRoAMSXD1mr/RXu0HBvNE9a2n5tHPsxu9XHLws8o4Twes5rBM2205SUUiJ9goAtadrN6xTGX0UDEwp/N4A==",
|
|
836
818
|
"license": "MIT",
|
|
837
819
|
"dependencies": {
|
|
838
820
|
"@jridgewell/remapping": "^2.3.5",
|
|
839
|
-
"enhanced-resolve": "
|
|
840
|
-
"jiti": "^2.
|
|
821
|
+
"enhanced-resolve": "5.21.6",
|
|
822
|
+
"jiti": "^2.7.0",
|
|
841
823
|
"lightningcss": "1.32.0",
|
|
842
824
|
"magic-string": "^0.30.21",
|
|
843
825
|
"source-map-js": "^1.2.1",
|
|
844
|
-
"tailwindcss": "4.3.
|
|
826
|
+
"tailwindcss": "4.3.1"
|
|
845
827
|
}
|
|
846
828
|
},
|
|
847
829
|
"node_modules/@tailwindcss/oxide": {
|
|
848
|
-
"version": "4.3.
|
|
849
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.
|
|
850
|
-
"integrity": "sha512-
|
|
830
|
+
"version": "4.3.1",
|
|
831
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.1.tgz",
|
|
832
|
+
"integrity": "sha512-yVPyo8RNkabVr3O2EhHEE0Rewu7YKzc1DhIqfL46LKveFrmu9XbDazNOJY7/GRuvw1h6u3utWnR29H/p5JPlgA==",
|
|
851
833
|
"license": "MIT",
|
|
852
834
|
"engines": {
|
|
853
835
|
"node": ">= 20"
|
|
854
836
|
},
|
|
855
837
|
"optionalDependencies": {
|
|
856
|
-
"@tailwindcss/oxide-android-arm64": "4.3.
|
|
857
|
-
"@tailwindcss/oxide-darwin-arm64": "4.3.
|
|
858
|
-
"@tailwindcss/oxide-darwin-x64": "4.3.
|
|
859
|
-
"@tailwindcss/oxide-freebsd-x64": "4.3.
|
|
860
|
-
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.
|
|
861
|
-
"@tailwindcss/oxide-linux-arm64-gnu": "4.3.
|
|
862
|
-
"@tailwindcss/oxide-linux-arm64-musl": "4.3.
|
|
863
|
-
"@tailwindcss/oxide-linux-x64-gnu": "4.3.
|
|
864
|
-
"@tailwindcss/oxide-linux-x64-musl": "4.3.
|
|
865
|
-
"@tailwindcss/oxide-wasm32-wasi": "4.3.
|
|
866
|
-
"@tailwindcss/oxide-win32-arm64-msvc": "4.3.
|
|
867
|
-
"@tailwindcss/oxide-win32-x64-msvc": "4.3.
|
|
838
|
+
"@tailwindcss/oxide-android-arm64": "4.3.1",
|
|
839
|
+
"@tailwindcss/oxide-darwin-arm64": "4.3.1",
|
|
840
|
+
"@tailwindcss/oxide-darwin-x64": "4.3.1",
|
|
841
|
+
"@tailwindcss/oxide-freebsd-x64": "4.3.1",
|
|
842
|
+
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.1",
|
|
843
|
+
"@tailwindcss/oxide-linux-arm64-gnu": "4.3.1",
|
|
844
|
+
"@tailwindcss/oxide-linux-arm64-musl": "4.3.1",
|
|
845
|
+
"@tailwindcss/oxide-linux-x64-gnu": "4.3.1",
|
|
846
|
+
"@tailwindcss/oxide-linux-x64-musl": "4.3.1",
|
|
847
|
+
"@tailwindcss/oxide-wasm32-wasi": "4.3.1",
|
|
848
|
+
"@tailwindcss/oxide-win32-arm64-msvc": "4.3.1",
|
|
849
|
+
"@tailwindcss/oxide-win32-x64-msvc": "4.3.1"
|
|
868
850
|
}
|
|
869
851
|
},
|
|
870
852
|
"node_modules/@tailwindcss/oxide-android-arm64": {
|
|
871
|
-
"version": "4.3.
|
|
872
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.
|
|
873
|
-
"integrity": "sha512-
|
|
853
|
+
"version": "4.3.1",
|
|
854
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.1.tgz",
|
|
855
|
+
"integrity": "sha512-SVlyf61g374l5cHyg8x9kf5xmLcOaxvOTsbsqDnSsDJaKOEFZ7GCvi84VAVGpxojYOs1+3K6M0UjXfqPU8vmOQ==",
|
|
874
856
|
"cpu": [
|
|
875
857
|
"arm64"
|
|
876
858
|
],
|
|
@@ -884,9 +866,9 @@
|
|
|
884
866
|
}
|
|
885
867
|
},
|
|
886
868
|
"node_modules/@tailwindcss/oxide-darwin-arm64": {
|
|
887
|
-
"version": "4.3.
|
|
888
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.
|
|
889
|
-
"integrity": "sha512-
|
|
869
|
+
"version": "4.3.1",
|
|
870
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.1.tgz",
|
|
871
|
+
"integrity": "sha512-hVnWLwv+e/l7c4WKyVtHVrIPvYdqWHjRB3MDIqARynzFtnQg85kmQEFCbV9Ja0VVx4xXTIiDWY60Y7iz/iNoDA==",
|
|
890
872
|
"cpu": [
|
|
891
873
|
"arm64"
|
|
892
874
|
],
|
|
@@ -900,9 +882,9 @@
|
|
|
900
882
|
}
|
|
901
883
|
},
|
|
902
884
|
"node_modules/@tailwindcss/oxide-darwin-x64": {
|
|
903
|
-
"version": "4.3.
|
|
904
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.
|
|
905
|
-
"integrity": "sha512-
|
|
885
|
+
"version": "4.3.1",
|
|
886
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.1.tgz",
|
|
887
|
+
"integrity": "sha512-Cf7abu0WVgbhU7ANgPUnSAvm7nCvMweusHb8FnaHlLfv/Caq4GYaEZg7ZImzzmjx4lIAfuS8q+eLIS7A7IzxIg==",
|
|
906
888
|
"cpu": [
|
|
907
889
|
"x64"
|
|
908
890
|
],
|
|
@@ -916,9 +898,9 @@
|
|
|
916
898
|
}
|
|
917
899
|
},
|
|
918
900
|
"node_modules/@tailwindcss/oxide-freebsd-x64": {
|
|
919
|
-
"version": "4.3.
|
|
920
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.
|
|
921
|
-
"integrity": "sha512-
|
|
901
|
+
"version": "4.3.1",
|
|
902
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.1.tgz",
|
|
903
|
+
"integrity": "sha512-ZZqzX2Y+GXtXXfqSfpJhDm60OoZfvLHLCgm+J7NVqgHHJjG/m9ugZI77RwTsVd4fnBJuCFP6Ae6kTJb71UdS8g==",
|
|
922
904
|
"cpu": [
|
|
923
905
|
"x64"
|
|
924
906
|
],
|
|
@@ -932,9 +914,9 @@
|
|
|
932
914
|
}
|
|
933
915
|
},
|
|
934
916
|
"node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
|
|
935
|
-
"version": "4.3.
|
|
936
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.
|
|
937
|
-
"integrity": "sha512
|
|
917
|
+
"version": "4.3.1",
|
|
918
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.1.tgz",
|
|
919
|
+
"integrity": "sha512-/Ah/xik0LaMYfv9DZ0S/t4pBlBNYOcqtRwusjgovHkvT8ixueWCLyJjsaF5kQIckjb4IT8Q6K6p/iPmZMixYgg==",
|
|
938
920
|
"cpu": [
|
|
939
921
|
"arm"
|
|
940
922
|
],
|
|
@@ -948,15 +930,12 @@
|
|
|
948
930
|
}
|
|
949
931
|
},
|
|
950
932
|
"node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
|
|
951
|
-
"version": "4.3.
|
|
952
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.
|
|
953
|
-
"integrity": "sha512-
|
|
933
|
+
"version": "4.3.1",
|
|
934
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.1.tgz",
|
|
935
|
+
"integrity": "sha512-gqdFoVJlw444GvpnheZLHmvTzSxI/cOUUh2KSNejQjTcYkW062SVD+En0rUgD+QV91bz1XGIGtt1HJd48xUGbQ==",
|
|
954
936
|
"cpu": [
|
|
955
937
|
"arm64"
|
|
956
938
|
],
|
|
957
|
-
"libc": [
|
|
958
|
-
"glibc"
|
|
959
|
-
],
|
|
960
939
|
"license": "MIT",
|
|
961
940
|
"optional": true,
|
|
962
941
|
"os": [
|
|
@@ -967,15 +946,12 @@
|
|
|
967
946
|
}
|
|
968
947
|
},
|
|
969
948
|
"node_modules/@tailwindcss/oxide-linux-arm64-musl": {
|
|
970
|
-
"version": "4.3.
|
|
971
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.
|
|
972
|
-
"integrity": "sha512-
|
|
949
|
+
"version": "4.3.1",
|
|
950
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.1.tgz",
|
|
951
|
+
"integrity": "sha512-Bwv9KwOvE0VKa86xPFif9b9c3Y1NxOV1P0gLti/IYaWEsQYZXDlxfGEtA8mdDZ7SG3wyNXAWYT5SIn3giL57oA==",
|
|
973
952
|
"cpu": [
|
|
974
953
|
"arm64"
|
|
975
954
|
],
|
|
976
|
-
"libc": [
|
|
977
|
-
"musl"
|
|
978
|
-
],
|
|
979
955
|
"license": "MIT",
|
|
980
956
|
"optional": true,
|
|
981
957
|
"os": [
|
|
@@ -986,15 +962,12 @@
|
|
|
986
962
|
}
|
|
987
963
|
},
|
|
988
964
|
"node_modules/@tailwindcss/oxide-linux-x64-gnu": {
|
|
989
|
-
"version": "4.3.
|
|
990
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.
|
|
991
|
-
"integrity": "sha512-
|
|
965
|
+
"version": "4.3.1",
|
|
966
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.1.tgz",
|
|
967
|
+
"integrity": "sha512-Ymi8O8T15HYQdOUWUtTI6ldN0neHP85FC+Qz32xTcZ7iJXtem/x8ITev0o1e9e5rkqj4lONZfTRLvkmin1+tKg==",
|
|
992
968
|
"cpu": [
|
|
993
969
|
"x64"
|
|
994
970
|
],
|
|
995
|
-
"libc": [
|
|
996
|
-
"glibc"
|
|
997
|
-
],
|
|
998
971
|
"license": "MIT",
|
|
999
972
|
"optional": true,
|
|
1000
973
|
"os": [
|
|
@@ -1005,15 +978,12 @@
|
|
|
1005
978
|
}
|
|
1006
979
|
},
|
|
1007
980
|
"node_modules/@tailwindcss/oxide-linux-x64-musl": {
|
|
1008
|
-
"version": "4.3.
|
|
1009
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.
|
|
1010
|
-
"integrity": "sha512-
|
|
981
|
+
"version": "4.3.1",
|
|
982
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.1.tgz",
|
|
983
|
+
"integrity": "sha512-M+P/91qJ6uILLw4k2G93GMDRAXj61SMvFQYt39AqvUqYgExXpLL5aepfns7sj4HiAQeolirQF9E0lzRvdf4zPQ==",
|
|
1011
984
|
"cpu": [
|
|
1012
985
|
"x64"
|
|
1013
986
|
],
|
|
1014
|
-
"libc": [
|
|
1015
|
-
"musl"
|
|
1016
|
-
],
|
|
1017
987
|
"license": "MIT",
|
|
1018
988
|
"optional": true,
|
|
1019
989
|
"os": [
|
|
@@ -1024,9 +994,9 @@
|
|
|
1024
994
|
}
|
|
1025
995
|
},
|
|
1026
996
|
"node_modules/@tailwindcss/oxide-wasm32-wasi": {
|
|
1027
|
-
"version": "4.3.
|
|
1028
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.
|
|
1029
|
-
"integrity": "sha512-
|
|
997
|
+
"version": "4.3.1",
|
|
998
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.1.tgz",
|
|
999
|
+
"integrity": "sha512-zsM8uOeqvVGHsAXsJxsT28ttosFahLJKCLOTUBqRAtKnVgGSRitds9T432QiT8b77Yga7JIBkulIRRlJPtYhRA==",
|
|
1030
1000
|
"bundleDependencies": [
|
|
1031
1001
|
"@napi-rs/wasm-runtime",
|
|
1032
1002
|
"@emnapi/core",
|
|
@@ -1045,77 +1015,17 @@
|
|
|
1045
1015
|
"@emnapi/runtime": "^1.10.0",
|
|
1046
1016
|
"@emnapi/wasi-threads": "^1.2.1",
|
|
1047
1017
|
"@napi-rs/wasm-runtime": "^1.1.4",
|
|
1048
|
-
"@tybys/wasm-util": "^0.10.
|
|
1018
|
+
"@tybys/wasm-util": "^0.10.2",
|
|
1049
1019
|
"tslib": "^2.8.1"
|
|
1050
1020
|
},
|
|
1051
1021
|
"engines": {
|
|
1052
1022
|
"node": ">=14.0.0"
|
|
1053
1023
|
}
|
|
1054
1024
|
},
|
|
1055
|
-
"node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/core": {
|
|
1056
|
-
"version": "1.10.0",
|
|
1057
|
-
"inBundle": true,
|
|
1058
|
-
"license": "MIT",
|
|
1059
|
-
"optional": true,
|
|
1060
|
-
"dependencies": {
|
|
1061
|
-
"@emnapi/wasi-threads": "1.2.1",
|
|
1062
|
-
"tslib": "^2.4.0"
|
|
1063
|
-
}
|
|
1064
|
-
},
|
|
1065
|
-
"node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/runtime": {
|
|
1066
|
-
"version": "1.10.0",
|
|
1067
|
-
"inBundle": true,
|
|
1068
|
-
"license": "MIT",
|
|
1069
|
-
"optional": true,
|
|
1070
|
-
"dependencies": {
|
|
1071
|
-
"tslib": "^2.4.0"
|
|
1072
|
-
}
|
|
1073
|
-
},
|
|
1074
|
-
"node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/wasi-threads": {
|
|
1075
|
-
"version": "1.2.1",
|
|
1076
|
-
"inBundle": true,
|
|
1077
|
-
"license": "MIT",
|
|
1078
|
-
"optional": true,
|
|
1079
|
-
"dependencies": {
|
|
1080
|
-
"tslib": "^2.4.0"
|
|
1081
|
-
}
|
|
1082
|
-
},
|
|
1083
|
-
"node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@napi-rs/wasm-runtime": {
|
|
1084
|
-
"version": "1.1.4",
|
|
1085
|
-
"inBundle": true,
|
|
1086
|
-
"license": "MIT",
|
|
1087
|
-
"optional": true,
|
|
1088
|
-
"dependencies": {
|
|
1089
|
-
"@tybys/wasm-util": "^0.10.1"
|
|
1090
|
-
},
|
|
1091
|
-
"funding": {
|
|
1092
|
-
"type": "github",
|
|
1093
|
-
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
1094
|
-
},
|
|
1095
|
-
"peerDependencies": {
|
|
1096
|
-
"@emnapi/core": "^1.7.1",
|
|
1097
|
-
"@emnapi/runtime": "^1.7.1"
|
|
1098
|
-
}
|
|
1099
|
-
},
|
|
1100
|
-
"node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@tybys/wasm-util": {
|
|
1101
|
-
"version": "0.10.1",
|
|
1102
|
-
"inBundle": true,
|
|
1103
|
-
"license": "MIT",
|
|
1104
|
-
"optional": true,
|
|
1105
|
-
"dependencies": {
|
|
1106
|
-
"tslib": "^2.4.0"
|
|
1107
|
-
}
|
|
1108
|
-
},
|
|
1109
|
-
"node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/tslib": {
|
|
1110
|
-
"version": "2.8.1",
|
|
1111
|
-
"inBundle": true,
|
|
1112
|
-
"license": "0BSD",
|
|
1113
|
-
"optional": true
|
|
1114
|
-
},
|
|
1115
1025
|
"node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
|
|
1116
|
-
"version": "4.3.
|
|
1117
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.
|
|
1118
|
-
"integrity": "sha512-
|
|
1026
|
+
"version": "4.3.1",
|
|
1027
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.1.tgz",
|
|
1028
|
+
"integrity": "sha512-aiNvSq9BsVk8V513lDKlrCFAgf8qBMPZTpgEhInL+NwQqs97mYmupVMrPrgBBSL8Pv/0zXu9MrMF9rMun1ZeNg==",
|
|
1119
1029
|
"cpu": [
|
|
1120
1030
|
"arm64"
|
|
1121
1031
|
],
|
|
@@ -1129,9 +1039,9 @@
|
|
|
1129
1039
|
}
|
|
1130
1040
|
},
|
|
1131
1041
|
"node_modules/@tailwindcss/oxide-win32-x64-msvc": {
|
|
1132
|
-
"version": "4.3.
|
|
1133
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.
|
|
1134
|
-
"integrity": "sha512-
|
|
1042
|
+
"version": "4.3.1",
|
|
1043
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.1.tgz",
|
|
1044
|
+
"integrity": "sha512-xDEyu1rg290472FEGaKHnzyDyh5QH+AlWvsU5hMoMtPpzmKlRI0jaYKCgSHDYtaQWZOYbMaduSyCwFwY4n1HmA==",
|
|
1135
1045
|
"cpu": [
|
|
1136
1046
|
"x64"
|
|
1137
1047
|
],
|
|
@@ -1145,23 +1055,23 @@
|
|
|
1145
1055
|
}
|
|
1146
1056
|
},
|
|
1147
1057
|
"node_modules/@tailwindcss/vite": {
|
|
1148
|
-
"version": "4.3.
|
|
1149
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.
|
|
1150
|
-
"integrity": "sha512-
|
|
1058
|
+
"version": "4.3.1",
|
|
1059
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.1.tgz",
|
|
1060
|
+
"integrity": "sha512-hItDHuIIlEV61R+faXu66s1K36aTurO/Qw0e45Vskz57gXl9pWOT6eg3zmcEui6CZXddbN7zd41bwmvag4JGwQ==",
|
|
1151
1061
|
"license": "MIT",
|
|
1152
1062
|
"dependencies": {
|
|
1153
|
-
"@tailwindcss/node": "4.3.
|
|
1154
|
-
"@tailwindcss/oxide": "4.3.
|
|
1155
|
-
"tailwindcss": "4.3.
|
|
1063
|
+
"@tailwindcss/node": "4.3.1",
|
|
1064
|
+
"@tailwindcss/oxide": "4.3.1",
|
|
1065
|
+
"tailwindcss": "4.3.1"
|
|
1156
1066
|
},
|
|
1157
1067
|
"peerDependencies": {
|
|
1158
1068
|
"vite": "^5.2.0 || ^6 || ^7 || ^8"
|
|
1159
1069
|
}
|
|
1160
1070
|
},
|
|
1161
1071
|
"node_modules/@tanstack/eslint-plugin-query": {
|
|
1162
|
-
"version": "5.
|
|
1163
|
-
"resolved": "https://registry.npmjs.org/@tanstack/eslint-plugin-query/-/eslint-plugin-query-5.
|
|
1164
|
-
"integrity": "sha512-
|
|
1072
|
+
"version": "5.101.2",
|
|
1073
|
+
"resolved": "https://registry.npmjs.org/@tanstack/eslint-plugin-query/-/eslint-plugin-query-5.101.2.tgz",
|
|
1074
|
+
"integrity": "sha512-cPE99s3XZwlObfn8lCezT4j4JLj2CVzpIEywx0H4hzfPsX/o9QhdwaOwcDXxrQAqx2ds7TbvTinxhB8B/ywb6w==",
|
|
1165
1075
|
"dev": true,
|
|
1166
1076
|
"license": "MIT",
|
|
1167
1077
|
"dependencies": {
|
|
@@ -1182,9 +1092,9 @@
|
|
|
1182
1092
|
}
|
|
1183
1093
|
},
|
|
1184
1094
|
"node_modules/@tanstack/query-core": {
|
|
1185
|
-
"version": "5.
|
|
1186
|
-
"resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.
|
|
1187
|
-
"integrity": "sha512-
|
|
1095
|
+
"version": "5.101.2",
|
|
1096
|
+
"resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.101.2.tgz",
|
|
1097
|
+
"integrity": "sha512-hH5MLoJhF7KaIGd7q3xTXGXvslI+GYlM1Z/35aSHHWaCJWB7XvTSHYuV3eM7tw+aE0mT/xMro4M4Q9rCGHT0lw==",
|
|
1188
1098
|
"license": "MIT",
|
|
1189
1099
|
"funding": {
|
|
1190
1100
|
"type": "github",
|
|
@@ -1192,12 +1102,12 @@
|
|
|
1192
1102
|
}
|
|
1193
1103
|
},
|
|
1194
1104
|
"node_modules/@tanstack/react-query": {
|
|
1195
|
-
"version": "5.
|
|
1196
|
-
"resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.
|
|
1197
|
-
"integrity": "sha512-
|
|
1105
|
+
"version": "5.101.2",
|
|
1106
|
+
"resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.101.2.tgz",
|
|
1107
|
+
"integrity": "sha512-seDkr6kzGzX1okaaTtZPtgA688CDPlXUz1C6xSg0ESqn04Vuc8tlrYms1s3de+znBqhPVxFRfpAfUf+6XvfPWg==",
|
|
1198
1108
|
"license": "MIT",
|
|
1199
1109
|
"dependencies": {
|
|
1200
|
-
"@tanstack/query-core": "5.
|
|
1110
|
+
"@tanstack/query-core": "5.101.2"
|
|
1201
1111
|
},
|
|
1202
1112
|
"funding": {
|
|
1203
1113
|
"type": "github",
|
|
@@ -1208,9 +1118,9 @@
|
|
|
1208
1118
|
}
|
|
1209
1119
|
},
|
|
1210
1120
|
"node_modules/@tybys/wasm-util": {
|
|
1211
|
-
"version": "0.10.
|
|
1212
|
-
"resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.
|
|
1213
|
-
"integrity": "sha512-
|
|
1121
|
+
"version": "0.10.3",
|
|
1122
|
+
"resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.3.tgz",
|
|
1123
|
+
"integrity": "sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==",
|
|
1214
1124
|
"license": "MIT",
|
|
1215
1125
|
"optional": true,
|
|
1216
1126
|
"dependencies": {
|
|
@@ -1239,19 +1149,19 @@
|
|
|
1239
1149
|
"license": "MIT"
|
|
1240
1150
|
},
|
|
1241
1151
|
"node_modules/@types/node": {
|
|
1242
|
-
"version": "
|
|
1243
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-
|
|
1244
|
-
"integrity": "sha512-
|
|
1152
|
+
"version": "22.20.0",
|
|
1153
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.20.0.tgz",
|
|
1154
|
+
"integrity": "sha512-QWlFW2wf3nTjC13/DqRnBpR4ZO36VJH/JVBkA/vcnmbTBNQIlnObqyqZE1tUR7+Ni23Lda8R1BxMfbXRpCUx5g==",
|
|
1245
1155
|
"devOptional": true,
|
|
1246
1156
|
"license": "MIT",
|
|
1247
1157
|
"dependencies": {
|
|
1248
|
-
"undici-types": "~
|
|
1158
|
+
"undici-types": "~6.21.0"
|
|
1249
1159
|
}
|
|
1250
1160
|
},
|
|
1251
1161
|
"node_modules/@types/react": {
|
|
1252
|
-
"version": "19.2.
|
|
1253
|
-
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.
|
|
1254
|
-
"integrity": "sha512-
|
|
1162
|
+
"version": "19.2.17",
|
|
1163
|
+
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.17.tgz",
|
|
1164
|
+
"integrity": "sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==",
|
|
1255
1165
|
"devOptional": true,
|
|
1256
1166
|
"license": "MIT",
|
|
1257
1167
|
"dependencies": {
|
|
@@ -1275,17 +1185,17 @@
|
|
|
1275
1185
|
"license": "MIT"
|
|
1276
1186
|
},
|
|
1277
1187
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
1278
|
-
"version": "8.
|
|
1279
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.
|
|
1280
|
-
"integrity": "sha512-
|
|
1188
|
+
"version": "8.62.0",
|
|
1189
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.62.0.tgz",
|
|
1190
|
+
"integrity": "sha512-o+mpz7EYiMzXoySXiKmzlabIvTVqUuK5yLrAedRPRDA0IpPFMUV1IXt6OqljIxX/kumN6EjUYp41Hqelh6p/Dw==",
|
|
1281
1191
|
"dev": true,
|
|
1282
1192
|
"license": "MIT",
|
|
1283
1193
|
"dependencies": {
|
|
1284
1194
|
"@eslint-community/regexpp": "^4.12.2",
|
|
1285
|
-
"@typescript-eslint/scope-manager": "8.
|
|
1286
|
-
"@typescript-eslint/type-utils": "8.
|
|
1287
|
-
"@typescript-eslint/utils": "8.
|
|
1288
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
1195
|
+
"@typescript-eslint/scope-manager": "8.62.0",
|
|
1196
|
+
"@typescript-eslint/type-utils": "8.62.0",
|
|
1197
|
+
"@typescript-eslint/utils": "8.62.0",
|
|
1198
|
+
"@typescript-eslint/visitor-keys": "8.62.0",
|
|
1289
1199
|
"ignore": "^7.0.5",
|
|
1290
1200
|
"natural-compare": "^1.4.0",
|
|
1291
1201
|
"ts-api-utils": "^2.5.0"
|
|
@@ -1298,7 +1208,7 @@
|
|
|
1298
1208
|
"url": "https://opencollective.com/typescript-eslint"
|
|
1299
1209
|
},
|
|
1300
1210
|
"peerDependencies": {
|
|
1301
|
-
"@typescript-eslint/parser": "^8.
|
|
1211
|
+
"@typescript-eslint/parser": "^8.62.0",
|
|
1302
1212
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
1303
1213
|
"typescript": ">=4.8.4 <6.1.0"
|
|
1304
1214
|
}
|
|
@@ -1314,16 +1224,16 @@
|
|
|
1314
1224
|
}
|
|
1315
1225
|
},
|
|
1316
1226
|
"node_modules/@typescript-eslint/parser": {
|
|
1317
|
-
"version": "8.
|
|
1318
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.
|
|
1319
|
-
"integrity": "sha512-
|
|
1227
|
+
"version": "8.62.0",
|
|
1228
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.62.0.tgz",
|
|
1229
|
+
"integrity": "sha512-dzHeT2gySzZtLDsuqxU9AkYgIsQoHAHtRBpOqM+Ofzx1Bwrd2RcCjQJ+6iQbsHOIR6NS33bF2W1k3blN1zLDrA==",
|
|
1320
1230
|
"dev": true,
|
|
1321
1231
|
"license": "MIT",
|
|
1322
1232
|
"dependencies": {
|
|
1323
|
-
"@typescript-eslint/scope-manager": "8.
|
|
1324
|
-
"@typescript-eslint/types": "8.
|
|
1325
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
1326
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
1233
|
+
"@typescript-eslint/scope-manager": "8.62.0",
|
|
1234
|
+
"@typescript-eslint/types": "8.62.0",
|
|
1235
|
+
"@typescript-eslint/typescript-estree": "8.62.0",
|
|
1236
|
+
"@typescript-eslint/visitor-keys": "8.62.0",
|
|
1327
1237
|
"debug": "^4.4.3"
|
|
1328
1238
|
},
|
|
1329
1239
|
"engines": {
|
|
@@ -1339,14 +1249,14 @@
|
|
|
1339
1249
|
}
|
|
1340
1250
|
},
|
|
1341
1251
|
"node_modules/@typescript-eslint/project-service": {
|
|
1342
|
-
"version": "8.
|
|
1343
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.
|
|
1344
|
-
"integrity": "sha512-
|
|
1252
|
+
"version": "8.62.0",
|
|
1253
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.62.0.tgz",
|
|
1254
|
+
"integrity": "sha512-wexnCqiTg7BOGtbLDftYpRWlmLq4xfoMd7BKFR6Y75sZS3QmRKLdN3yWLhmIYgqMmP/OXWpj3H8odkb5nGURCQ==",
|
|
1345
1255
|
"dev": true,
|
|
1346
1256
|
"license": "MIT",
|
|
1347
1257
|
"dependencies": {
|
|
1348
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
1349
|
-
"@typescript-eslint/types": "^8.
|
|
1258
|
+
"@typescript-eslint/tsconfig-utils": "^8.62.0",
|
|
1259
|
+
"@typescript-eslint/types": "^8.62.0",
|
|
1350
1260
|
"debug": "^4.4.3"
|
|
1351
1261
|
},
|
|
1352
1262
|
"engines": {
|
|
@@ -1361,14 +1271,14 @@
|
|
|
1361
1271
|
}
|
|
1362
1272
|
},
|
|
1363
1273
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
1364
|
-
"version": "8.
|
|
1365
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.
|
|
1366
|
-
"integrity": "sha512-
|
|
1274
|
+
"version": "8.62.0",
|
|
1275
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.62.0.tgz",
|
|
1276
|
+
"integrity": "sha512-1lX38kNxXIRb8mEc3lbq5mdHq1Pf2+U0nFU65KfT18mtPxxl0fvjuEE92mHuXPuCtElJhOrddOpyMlM3Z0umEA==",
|
|
1367
1277
|
"dev": true,
|
|
1368
1278
|
"license": "MIT",
|
|
1369
1279
|
"dependencies": {
|
|
1370
|
-
"@typescript-eslint/types": "8.
|
|
1371
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
1280
|
+
"@typescript-eslint/types": "8.62.0",
|
|
1281
|
+
"@typescript-eslint/visitor-keys": "8.62.0"
|
|
1372
1282
|
},
|
|
1373
1283
|
"engines": {
|
|
1374
1284
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -1379,9 +1289,9 @@
|
|
|
1379
1289
|
}
|
|
1380
1290
|
},
|
|
1381
1291
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
1382
|
-
"version": "8.
|
|
1383
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.
|
|
1384
|
-
"integrity": "sha512-
|
|
1292
|
+
"version": "8.62.0",
|
|
1293
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.62.0.tgz",
|
|
1294
|
+
"integrity": "sha512-y2GAdB6ykaXUvuspbYnizQc4oDDz0Tz/Yc7iWrXf9mx8vm/L/0vLHCe0tS2boG96Zy+DivnVDQ9ZUEWoHqqx1g==",
|
|
1385
1295
|
"dev": true,
|
|
1386
1296
|
"license": "MIT",
|
|
1387
1297
|
"engines": {
|
|
@@ -1396,15 +1306,15 @@
|
|
|
1396
1306
|
}
|
|
1397
1307
|
},
|
|
1398
1308
|
"node_modules/@typescript-eslint/type-utils": {
|
|
1399
|
-
"version": "8.
|
|
1400
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.
|
|
1401
|
-
"integrity": "sha512
|
|
1309
|
+
"version": "8.62.0",
|
|
1310
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.62.0.tgz",
|
|
1311
|
+
"integrity": "sha512-+g5O3j0w2ldzC86Pv6fvbO/xhAonbJFIdf/MKQ1d30gndlsVzUOE83ldfSE15Qrl9fhFjK6AovHs5Wpp6vx86w==",
|
|
1402
1312
|
"dev": true,
|
|
1403
1313
|
"license": "MIT",
|
|
1404
1314
|
"dependencies": {
|
|
1405
|
-
"@typescript-eslint/types": "8.
|
|
1406
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
1407
|
-
"@typescript-eslint/utils": "8.
|
|
1315
|
+
"@typescript-eslint/types": "8.62.0",
|
|
1316
|
+
"@typescript-eslint/typescript-estree": "8.62.0",
|
|
1317
|
+
"@typescript-eslint/utils": "8.62.0",
|
|
1408
1318
|
"debug": "^4.4.3",
|
|
1409
1319
|
"ts-api-utils": "^2.5.0"
|
|
1410
1320
|
},
|
|
@@ -1421,9 +1331,9 @@
|
|
|
1421
1331
|
}
|
|
1422
1332
|
},
|
|
1423
1333
|
"node_modules/@typescript-eslint/types": {
|
|
1424
|
-
"version": "8.
|
|
1425
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.
|
|
1426
|
-
"integrity": "sha512-
|
|
1334
|
+
"version": "8.62.0",
|
|
1335
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.62.0.tgz",
|
|
1336
|
+
"integrity": "sha512-KvAclkktORPvM54TgLgA4z9HIV1M8zOgw9ZVNXl9f/8dLYfXYX1wkMXP7qmabpijQRV5bHJLOmoyGQbLMaUYeg==",
|
|
1427
1337
|
"dev": true,
|
|
1428
1338
|
"license": "MIT",
|
|
1429
1339
|
"engines": {
|
|
@@ -1435,16 +1345,16 @@
|
|
|
1435
1345
|
}
|
|
1436
1346
|
},
|
|
1437
1347
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
1438
|
-
"version": "8.
|
|
1439
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.
|
|
1440
|
-
"integrity": "sha512
|
|
1348
|
+
"version": "8.62.0",
|
|
1349
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.62.0.tgz",
|
|
1350
|
+
"integrity": "sha512-+hVbNxtW64pIcZWDPGbyaKF7vp2IBTVY5ma1blwwksrjdsbdqqEKvJWMGbBofei4F6Dovx1M0RJgoFeNu2279A==",
|
|
1441
1351
|
"dev": true,
|
|
1442
1352
|
"license": "MIT",
|
|
1443
1353
|
"dependencies": {
|
|
1444
|
-
"@typescript-eslint/project-service": "8.
|
|
1445
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
1446
|
-
"@typescript-eslint/types": "8.
|
|
1447
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
1354
|
+
"@typescript-eslint/project-service": "8.62.0",
|
|
1355
|
+
"@typescript-eslint/tsconfig-utils": "8.62.0",
|
|
1356
|
+
"@typescript-eslint/types": "8.62.0",
|
|
1357
|
+
"@typescript-eslint/visitor-keys": "8.62.0",
|
|
1448
1358
|
"debug": "^4.4.3",
|
|
1449
1359
|
"minimatch": "^10.2.2",
|
|
1450
1360
|
"semver": "^7.7.3",
|
|
@@ -1463,16 +1373,16 @@
|
|
|
1463
1373
|
}
|
|
1464
1374
|
},
|
|
1465
1375
|
"node_modules/@typescript-eslint/utils": {
|
|
1466
|
-
"version": "8.
|
|
1467
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.
|
|
1468
|
-
"integrity": "sha512-
|
|
1376
|
+
"version": "8.62.0",
|
|
1377
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.62.0.tgz",
|
|
1378
|
+
"integrity": "sha512-82r66fi9zYwZ+mTq3vKgwjbZ1PVk/DJzrXFLpG6RnBbdvH8TEGVHIs9H4d2drhkOzf0syZuD/OZvvlu6GDbP4g==",
|
|
1469
1379
|
"dev": true,
|
|
1470
1380
|
"license": "MIT",
|
|
1471
1381
|
"dependencies": {
|
|
1472
1382
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
1473
|
-
"@typescript-eslint/scope-manager": "8.
|
|
1474
|
-
"@typescript-eslint/types": "8.
|
|
1475
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
1383
|
+
"@typescript-eslint/scope-manager": "8.62.0",
|
|
1384
|
+
"@typescript-eslint/types": "8.62.0",
|
|
1385
|
+
"@typescript-eslint/typescript-estree": "8.62.0"
|
|
1476
1386
|
},
|
|
1477
1387
|
"engines": {
|
|
1478
1388
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -1487,13 +1397,13 @@
|
|
|
1487
1397
|
}
|
|
1488
1398
|
},
|
|
1489
1399
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
1490
|
-
"version": "8.
|
|
1491
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.
|
|
1492
|
-
"integrity": "sha512-
|
|
1400
|
+
"version": "8.62.0",
|
|
1401
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.62.0.tgz",
|
|
1402
|
+
"integrity": "sha512-CY3uyFSRbcQv3nnSv8S0+lDftMVz6P963PoRlxrV7ew/Md564g9ut60PYzdLM5qW4jFn93GBF+Soi90ISAN+GQ==",
|
|
1493
1403
|
"dev": true,
|
|
1494
1404
|
"license": "MIT",
|
|
1495
1405
|
"dependencies": {
|
|
1496
|
-
"@typescript-eslint/types": "8.
|
|
1406
|
+
"@typescript-eslint/types": "8.62.0",
|
|
1497
1407
|
"eslint-visitor-keys": "^5.0.0"
|
|
1498
1408
|
},
|
|
1499
1409
|
"engines": {
|
|
@@ -1518,13 +1428,13 @@
|
|
|
1518
1428
|
}
|
|
1519
1429
|
},
|
|
1520
1430
|
"node_modules/@vitejs/plugin-react": {
|
|
1521
|
-
"version": "6.0.
|
|
1522
|
-
"resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-6.0.
|
|
1523
|
-
"integrity": "sha512-
|
|
1431
|
+
"version": "6.0.3",
|
|
1432
|
+
"resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-6.0.3.tgz",
|
|
1433
|
+
"integrity": "sha512-vmFvco5/QuC2f9Oj+wTk0+9XeDFkHxSamwZKYc7MxYwKICfvUvlMhqKI0VuICPltGqh1neqBKDvO4kes1ya8vg==",
|
|
1524
1434
|
"dev": true,
|
|
1525
1435
|
"license": "MIT",
|
|
1526
1436
|
"dependencies": {
|
|
1527
|
-
"@rolldown/pluginutils": "^1.0.
|
|
1437
|
+
"@rolldown/pluginutils": "^1.0.1"
|
|
1528
1438
|
},
|
|
1529
1439
|
"engines": {
|
|
1530
1440
|
"node": "^20.19.0 || >=22.12.0"
|
|
@@ -1594,9 +1504,9 @@
|
|
|
1594
1504
|
}
|
|
1595
1505
|
},
|
|
1596
1506
|
"node_modules/baseline-browser-mapping": {
|
|
1597
|
-
"version": "2.10.
|
|
1598
|
-
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.
|
|
1599
|
-
"integrity": "sha512-
|
|
1507
|
+
"version": "2.10.40",
|
|
1508
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.40.tgz",
|
|
1509
|
+
"integrity": "sha512-BSSLZ9/Cjjv7Gtj5B68ZzXcXUg8iOf3fme+FCuh8rC/Go+Kmh8cox7M3A8dolou16s64QjLPOSdngh7GxXvkSw==",
|
|
1600
1510
|
"dev": true,
|
|
1601
1511
|
"license": "Apache-2.0",
|
|
1602
1512
|
"bin": {
|
|
@@ -1620,9 +1530,9 @@
|
|
|
1620
1530
|
}
|
|
1621
1531
|
},
|
|
1622
1532
|
"node_modules/browserslist": {
|
|
1623
|
-
"version": "4.28.
|
|
1624
|
-
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.
|
|
1625
|
-
"integrity": "sha512-
|
|
1533
|
+
"version": "4.28.4",
|
|
1534
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.4.tgz",
|
|
1535
|
+
"integrity": "sha512-MTc8i/x9jBQd1iMw2CFGS+rwMa07eYjLR0CCTLDACl9xhxy+nIs3KeML/biicXtk9JrZ6dnnTatmc7ErPXIxqw==",
|
|
1626
1536
|
"dev": true,
|
|
1627
1537
|
"funding": [
|
|
1628
1538
|
{
|
|
@@ -1640,11 +1550,11 @@
|
|
|
1640
1550
|
],
|
|
1641
1551
|
"license": "MIT",
|
|
1642
1552
|
"dependencies": {
|
|
1643
|
-
"baseline-browser-mapping": "^2.
|
|
1644
|
-
"caniuse-lite": "^1.0.
|
|
1645
|
-
"electron-to-chromium": "^1.5.
|
|
1646
|
-
"node-releases": "^2.0.
|
|
1647
|
-
"update-browserslist-db": "^1.2.
|
|
1553
|
+
"baseline-browser-mapping": "^2.10.38",
|
|
1554
|
+
"caniuse-lite": "^1.0.30001799",
|
|
1555
|
+
"electron-to-chromium": "^1.5.376",
|
|
1556
|
+
"node-releases": "^2.0.48",
|
|
1557
|
+
"update-browserslist-db": "^1.2.3"
|
|
1648
1558
|
},
|
|
1649
1559
|
"bin": {
|
|
1650
1560
|
"browserslist": "cli.js"
|
|
@@ -1654,9 +1564,9 @@
|
|
|
1654
1564
|
}
|
|
1655
1565
|
},
|
|
1656
1566
|
"node_modules/caniuse-lite": {
|
|
1657
|
-
"version": "1.0.
|
|
1658
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
1659
|
-
"integrity": "sha512-
|
|
1567
|
+
"version": "1.0.30001799",
|
|
1568
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001799.tgz",
|
|
1569
|
+
"integrity": "sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==",
|
|
1660
1570
|
"dev": true,
|
|
1661
1571
|
"funding": [
|
|
1662
1572
|
{
|
|
@@ -1738,16 +1648,16 @@
|
|
|
1738
1648
|
}
|
|
1739
1649
|
},
|
|
1740
1650
|
"node_modules/electron-to-chromium": {
|
|
1741
|
-
"version": "1.5.
|
|
1742
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.
|
|
1743
|
-
"integrity": "sha512-
|
|
1651
|
+
"version": "1.5.380",
|
|
1652
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.380.tgz",
|
|
1653
|
+
"integrity": "sha512-W6d5AbuEoRayO447cqrg6lKJIlscgRnnxOZl/08kfV71BQDoEBC7Wwis68z87LjyK6f4kWyTaubuDbhHKrZkbA==",
|
|
1744
1654
|
"dev": true,
|
|
1745
1655
|
"license": "ISC"
|
|
1746
1656
|
},
|
|
1747
1657
|
"node_modules/enhanced-resolve": {
|
|
1748
|
-
"version": "5.
|
|
1749
|
-
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.
|
|
1750
|
-
"integrity": "sha512-
|
|
1658
|
+
"version": "5.21.6",
|
|
1659
|
+
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.21.6.tgz",
|
|
1660
|
+
"integrity": "sha512-aNnGCvbJ/RIyWo1IuhNdVjnNF+EjH9wpzpNHt+ci/m9He9LJvUN8wrCcXjp9cWsGNAuvSpVFTx/vraAFQ8qGjQ==",
|
|
1751
1661
|
"license": "MIT",
|
|
1752
1662
|
"dependencies": {
|
|
1753
1663
|
"graceful-fs": "^4.2.4",
|
|
@@ -1781,11 +1691,14 @@
|
|
|
1781
1691
|
}
|
|
1782
1692
|
},
|
|
1783
1693
|
"node_modules/eslint": {
|
|
1784
|
-
"version": "10.
|
|
1785
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-10.
|
|
1786
|
-
"integrity": "sha512-
|
|
1694
|
+
"version": "10.6.0",
|
|
1695
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-10.6.0.tgz",
|
|
1696
|
+
"integrity": "sha512-6lVbcqSodALYo+4ELD0heG6lFiFxnLMuLkiMi2qV8LMp54N8tE8FT1GMH+ev4Ti00nFjNze2+Su6DsV5OQW3Dg==",
|
|
1787
1697
|
"dev": true,
|
|
1788
1698
|
"license": "MIT",
|
|
1699
|
+
"workspaces": [
|
|
1700
|
+
"packages/*"
|
|
1701
|
+
],
|
|
1789
1702
|
"dependencies": {
|
|
1790
1703
|
"@eslint-community/eslint-utils": "^4.8.0",
|
|
1791
1704
|
"@eslint-community/regexpp": "^4.12.2",
|
|
@@ -1857,9 +1770,9 @@
|
|
|
1857
1770
|
}
|
|
1858
1771
|
},
|
|
1859
1772
|
"node_modules/eslint-plugin-react-refresh": {
|
|
1860
|
-
"version": "0.5.
|
|
1861
|
-
"resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.5.
|
|
1862
|
-
"integrity": "sha512-
|
|
1773
|
+
"version": "0.5.3",
|
|
1774
|
+
"resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.5.3.tgz",
|
|
1775
|
+
"integrity": "sha512-5EMmLCV98Pi4o/f/3DP/v/tNqLHMIc9I8LKClNDWhZ9JTho89/kQcitCXQBMG7sAfVRK0Ie3T2EDOzp1YXYiVA==",
|
|
1863
1776
|
"dev": true,
|
|
1864
1777
|
"license": "MIT",
|
|
1865
1778
|
"peerDependencies": {
|
|
@@ -2115,9 +2028,9 @@
|
|
|
2115
2028
|
}
|
|
2116
2029
|
},
|
|
2117
2030
|
"node_modules/globals": {
|
|
2118
|
-
"version": "17.
|
|
2119
|
-
"resolved": "https://registry.npmjs.org/globals/-/globals-17.
|
|
2120
|
-
"integrity": "sha512-
|
|
2031
|
+
"version": "17.7.0",
|
|
2032
|
+
"resolved": "https://registry.npmjs.org/globals/-/globals-17.7.0.tgz",
|
|
2033
|
+
"integrity": "sha512-Czmyns5dUsq4seFBR/Kdydhmo8y9kC79hiSkPn0YcGtNnYWnrgt0vjrSjx9tspoDGWm2CMarffRuLjM4xUz8xg==",
|
|
2121
2034
|
"dev": true,
|
|
2122
2035
|
"license": "MIT",
|
|
2123
2036
|
"engines": {
|
|
@@ -2201,9 +2114,9 @@
|
|
|
2201
2114
|
"license": "ISC"
|
|
2202
2115
|
},
|
|
2203
2116
|
"node_modules/jiti": {
|
|
2204
|
-
"version": "2.
|
|
2205
|
-
"resolved": "https://registry.npmjs.org/jiti/-/jiti-2.
|
|
2206
|
-
"integrity": "sha512-
|
|
2117
|
+
"version": "2.7.0",
|
|
2118
|
+
"resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz",
|
|
2119
|
+
"integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==",
|
|
2207
2120
|
"license": "MIT",
|
|
2208
2121
|
"bin": {
|
|
2209
2122
|
"jiti": "lib/jiti-cli.mjs"
|
|
@@ -2423,9 +2336,6 @@
|
|
|
2423
2336
|
"cpu": [
|
|
2424
2337
|
"arm64"
|
|
2425
2338
|
],
|
|
2426
|
-
"libc": [
|
|
2427
|
-
"glibc"
|
|
2428
|
-
],
|
|
2429
2339
|
"license": "MPL-2.0",
|
|
2430
2340
|
"optional": true,
|
|
2431
2341
|
"os": [
|
|
@@ -2446,9 +2356,6 @@
|
|
|
2446
2356
|
"cpu": [
|
|
2447
2357
|
"arm64"
|
|
2448
2358
|
],
|
|
2449
|
-
"libc": [
|
|
2450
|
-
"musl"
|
|
2451
|
-
],
|
|
2452
2359
|
"license": "MPL-2.0",
|
|
2453
2360
|
"optional": true,
|
|
2454
2361
|
"os": [
|
|
@@ -2469,9 +2376,6 @@
|
|
|
2469
2376
|
"cpu": [
|
|
2470
2377
|
"x64"
|
|
2471
2378
|
],
|
|
2472
|
-
"libc": [
|
|
2473
|
-
"glibc"
|
|
2474
|
-
],
|
|
2475
2379
|
"license": "MPL-2.0",
|
|
2476
2380
|
"optional": true,
|
|
2477
2381
|
"os": [
|
|
@@ -2492,9 +2396,6 @@
|
|
|
2492
2396
|
"cpu": [
|
|
2493
2397
|
"x64"
|
|
2494
2398
|
],
|
|
2495
|
-
"libc": [
|
|
2496
|
-
"musl"
|
|
2497
|
-
],
|
|
2498
2399
|
"license": "MPL-2.0",
|
|
2499
2400
|
"optional": true,
|
|
2500
2401
|
"os": [
|
|
@@ -2632,11 +2533,14 @@
|
|
|
2632
2533
|
"license": "MIT"
|
|
2633
2534
|
},
|
|
2634
2535
|
"node_modules/node-releases": {
|
|
2635
|
-
"version": "2.0.
|
|
2636
|
-
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.
|
|
2637
|
-
"integrity": "sha512-
|
|
2536
|
+
"version": "2.0.50",
|
|
2537
|
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.50.tgz",
|
|
2538
|
+
"integrity": "sha512-J6l92tKHX6w8Jy5nO1Vuc01NoIiRGi/d6qBKVxh+IQ8Cr3b6HbVNfKiF8ZpFKufTwpwxMmce2W3iQZ861ZRyTg==",
|
|
2638
2539
|
"dev": true,
|
|
2639
|
-
"license": "MIT"
|
|
2540
|
+
"license": "MIT",
|
|
2541
|
+
"engines": {
|
|
2542
|
+
"node": ">=18"
|
|
2543
|
+
}
|
|
2640
2544
|
},
|
|
2641
2545
|
"node_modules/optionator": {
|
|
2642
2546
|
"version": "0.9.4",
|
|
@@ -2796,12 +2700,12 @@
|
|
|
2796
2700
|
}
|
|
2797
2701
|
},
|
|
2798
2702
|
"node_modules/rolldown": {
|
|
2799
|
-
"version": "1.
|
|
2800
|
-
"resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.
|
|
2801
|
-
"integrity": "sha512-
|
|
2703
|
+
"version": "1.1.3",
|
|
2704
|
+
"resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.1.3.tgz",
|
|
2705
|
+
"integrity": "sha512-1F1eEtUBtFvcGm1HQ9TiUIUHPQG7mSAODrhIzjxoUEFuo8OcbrGLiVLkevNgj84TE4lnHvnumwFjhJO5Eu135g==",
|
|
2802
2706
|
"license": "MIT",
|
|
2803
2707
|
"dependencies": {
|
|
2804
|
-
"@oxc-project/types": "=0.
|
|
2708
|
+
"@oxc-project/types": "=0.137.0",
|
|
2805
2709
|
"@rolldown/pluginutils": "^1.0.0"
|
|
2806
2710
|
},
|
|
2807
2711
|
"bin": {
|
|
@@ -2811,21 +2715,21 @@
|
|
|
2811
2715
|
"node": "^20.19.0 || >=22.12.0"
|
|
2812
2716
|
},
|
|
2813
2717
|
"optionalDependencies": {
|
|
2814
|
-
"@rolldown/binding-android-arm64": "1.
|
|
2815
|
-
"@rolldown/binding-darwin-arm64": "1.
|
|
2816
|
-
"@rolldown/binding-darwin-x64": "1.
|
|
2817
|
-
"@rolldown/binding-freebsd-x64": "1.
|
|
2818
|
-
"@rolldown/binding-linux-arm-gnueabihf": "1.
|
|
2819
|
-
"@rolldown/binding-linux-arm64-gnu": "1.
|
|
2820
|
-
"@rolldown/binding-linux-arm64-musl": "1.
|
|
2821
|
-
"@rolldown/binding-linux-ppc64-gnu": "1.
|
|
2822
|
-
"@rolldown/binding-linux-s390x-gnu": "1.
|
|
2823
|
-
"@rolldown/binding-linux-x64-gnu": "1.
|
|
2824
|
-
"@rolldown/binding-linux-x64-musl": "1.
|
|
2825
|
-
"@rolldown/binding-openharmony-arm64": "1.
|
|
2826
|
-
"@rolldown/binding-wasm32-wasi": "1.
|
|
2827
|
-
"@rolldown/binding-win32-arm64-msvc": "1.
|
|
2828
|
-
"@rolldown/binding-win32-x64-msvc": "1.
|
|
2718
|
+
"@rolldown/binding-android-arm64": "1.1.3",
|
|
2719
|
+
"@rolldown/binding-darwin-arm64": "1.1.3",
|
|
2720
|
+
"@rolldown/binding-darwin-x64": "1.1.3",
|
|
2721
|
+
"@rolldown/binding-freebsd-x64": "1.1.3",
|
|
2722
|
+
"@rolldown/binding-linux-arm-gnueabihf": "1.1.3",
|
|
2723
|
+
"@rolldown/binding-linux-arm64-gnu": "1.1.3",
|
|
2724
|
+
"@rolldown/binding-linux-arm64-musl": "1.1.3",
|
|
2725
|
+
"@rolldown/binding-linux-ppc64-gnu": "1.1.3",
|
|
2726
|
+
"@rolldown/binding-linux-s390x-gnu": "1.1.3",
|
|
2727
|
+
"@rolldown/binding-linux-x64-gnu": "1.1.3",
|
|
2728
|
+
"@rolldown/binding-linux-x64-musl": "1.1.3",
|
|
2729
|
+
"@rolldown/binding-openharmony-arm64": "1.1.3",
|
|
2730
|
+
"@rolldown/binding-wasm32-wasi": "1.1.3",
|
|
2731
|
+
"@rolldown/binding-win32-arm64-msvc": "1.1.3",
|
|
2732
|
+
"@rolldown/binding-win32-x64-msvc": "1.1.3"
|
|
2829
2733
|
}
|
|
2830
2734
|
},
|
|
2831
2735
|
"node_modules/scheduler": {
|
|
@@ -2880,9 +2784,9 @@
|
|
|
2880
2784
|
}
|
|
2881
2785
|
},
|
|
2882
2786
|
"node_modules/tailwindcss": {
|
|
2883
|
-
"version": "4.3.
|
|
2884
|
-
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.
|
|
2885
|
-
"integrity": "sha512-
|
|
2787
|
+
"version": "4.3.1",
|
|
2788
|
+
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.1.tgz",
|
|
2789
|
+
"integrity": "sha512-hk+TB1m+K8CYNrP6rjQaq/Y+4Zylwpa87mLYBKCunwnnQ9p+fHb7kmSfGqyEJoxF/O6CDyABWVFEafNSYKll+Q==",
|
|
2886
2790
|
"license": "MIT"
|
|
2887
2791
|
},
|
|
2888
2792
|
"node_modules/tapable": {
|
|
@@ -2962,16 +2866,16 @@
|
|
|
2962
2866
|
}
|
|
2963
2867
|
},
|
|
2964
2868
|
"node_modules/typescript-eslint": {
|
|
2965
|
-
"version": "8.
|
|
2966
|
-
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.
|
|
2967
|
-
"integrity": "sha512-
|
|
2869
|
+
"version": "8.62.0",
|
|
2870
|
+
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.62.0.tgz",
|
|
2871
|
+
"integrity": "sha512-8QxXi+ZACKX0kaqO4gY8kn0RSD9gFfaHDWwjqtEN48aWCBkX4MJaufWN+c3BzlrXLOxfywDL8CaoqUwcRq4j4Q==",
|
|
2968
2872
|
"dev": true,
|
|
2969
2873
|
"license": "MIT",
|
|
2970
2874
|
"dependencies": {
|
|
2971
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
2972
|
-
"@typescript-eslint/parser": "8.
|
|
2973
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
2974
|
-
"@typescript-eslint/utils": "8.
|
|
2875
|
+
"@typescript-eslint/eslint-plugin": "8.62.0",
|
|
2876
|
+
"@typescript-eslint/parser": "8.62.0",
|
|
2877
|
+
"@typescript-eslint/typescript-estree": "8.62.0",
|
|
2878
|
+
"@typescript-eslint/utils": "8.62.0"
|
|
2975
2879
|
},
|
|
2976
2880
|
"engines": {
|
|
2977
2881
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -2986,9 +2890,9 @@
|
|
|
2986
2890
|
}
|
|
2987
2891
|
},
|
|
2988
2892
|
"node_modules/undici-types": {
|
|
2989
|
-
"version": "
|
|
2990
|
-
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-
|
|
2991
|
-
"integrity": "sha512-
|
|
2893
|
+
"version": "6.21.0",
|
|
2894
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
|
2895
|
+
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
|
2992
2896
|
"devOptional": true,
|
|
2993
2897
|
"license": "MIT"
|
|
2994
2898
|
},
|
|
@@ -3034,15 +2938,15 @@
|
|
|
3034
2938
|
}
|
|
3035
2939
|
},
|
|
3036
2940
|
"node_modules/vite": {
|
|
3037
|
-
"version": "8.0
|
|
3038
|
-
"resolved": "https://registry.npmjs.org/vite/-/vite-8.0.
|
|
3039
|
-
"integrity": "sha512-
|
|
2941
|
+
"version": "8.1.0",
|
|
2942
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-8.1.0.tgz",
|
|
2943
|
+
"integrity": "sha512-BuJcQK/56NQTWDGn4ABea3q4SSBdNPWwNZKTkkUpcMPnLoquSYH8llRtSUIgoL1KSCpHt5eghLShn50mH36y7Q==",
|
|
3040
2944
|
"license": "MIT",
|
|
3041
2945
|
"dependencies": {
|
|
3042
2946
|
"lightningcss": "^1.32.0",
|
|
3043
2947
|
"picomatch": "^4.0.4",
|
|
3044
2948
|
"postcss": "^8.5.15",
|
|
3045
|
-
"rolldown": "1.
|
|
2949
|
+
"rolldown": "~1.1.2",
|
|
3046
2950
|
"tinyglobby": "^0.2.17"
|
|
3047
2951
|
},
|
|
3048
2952
|
"bin": {
|
|
@@ -3059,7 +2963,7 @@
|
|
|
3059
2963
|
},
|
|
3060
2964
|
"peerDependencies": {
|
|
3061
2965
|
"@types/node": "^20.19.0 || >=22.12.0",
|
|
3062
|
-
"@vitejs/devtools": "^0.
|
|
2966
|
+
"@vitejs/devtools": "^0.3.0",
|
|
3063
2967
|
"esbuild": "^0.27.0 || ^0.28.0",
|
|
3064
2968
|
"jiti": ">=1.21.0",
|
|
3065
2969
|
"less": "^4.0.0",
|