create-pixi-vn 2.0.9 → 2.0.11
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/package.json +1 -1
- package/template-react-vite-muijoy/.vscode/launch.json +9 -2
- package/template-react-vite-muijoy/.vscode/tasks.json +20 -4
- package/template-react-vite-muijoy/package-lock.json +100 -81
- package/template-react-vite-muijoy/package.json +3 -2
- package/template-react-vite-muijoy/src/components/loading.tsx +5 -44
- package/template-react-vite-muijoy/src/components/menus/settings/about.tsx +1 -1
- package/template-react-vite-muijoy/src/components/quick-tools.tsx +1 -1
- package/template-react-vite-muijoy/src/components/screens/narration/narration-cards.tsx +2 -3
- package/template-react-vite-muijoy/src/lib/query/narration-query.ts +5 -1
- package/template-react-vite-muijoy/src/lib/utils/assets-utility.ts +1 -1
- package/template-react-vite-muijoy-ink/.vscode/extensions.json +1 -2
- package/template-react-vite-muijoy-ink/.vscode/launch.json +9 -2
- package/template-react-vite-muijoy-ink/.vscode/settings.json +1 -6
- package/template-react-vite-muijoy-ink/.vscode/tasks.json +20 -4
- package/template-react-vite-muijoy-ink/_gitignore +0 -1
- package/template-react-vite-muijoy-ink/package-lock.json +104 -311
- package/template-react-vite-muijoy-ink/package.json +4 -5
- package/template-react-vite-muijoy-ink/src/App.tsx +25 -25
- package/template-react-vite-muijoy-ink/src/assets/index.ts +4 -2
- package/template-react-vite-muijoy-ink/src/assets/ink-manifest.gen.json +1 -4
- package/template-react-vite-muijoy-ink/src/components/loading.tsx +5 -44
- package/template-react-vite-muijoy-ink/src/components/menus/settings/about.tsx +1 -1
- package/template-react-vite-muijoy-ink/src/components/quick-tools.tsx +1 -1
- package/template-react-vite-muijoy-ink/src/components/screens/narration/narration-cards.tsx +2 -3
- package/template-react-vite-muijoy-ink/src/content/labels/second.label.ts +1207 -0
- package/template-react-vite-muijoy-ink/src/content/labels/start.label.ts +566 -0
- package/template-react-vite-muijoy-ink/src/lib/i18n.ts +1 -22
- package/template-react-vite-muijoy-ink/src/lib/query/narration-query.ts +5 -1
- package/template-react-vite-muijoy-ink/src/lib/utils/assets-utility.ts +1 -1
- package/template-react-vite-muijoy-ink/src/pixi-vn-keys.gen.d.ts +0 -2
- package/template-react-vite-muijoy-ink/src/routes/__root.tsx +0 -4
- package/template-react-vite-muijoy-ink/vite.config.ts +0 -6
- package/template-react-vite-muijoy-ink-tauri/.assetpack.ts +0 -9
- package/template-react-vite-muijoy-ink-tauri/.vscode/extensions.json +1 -5
- package/template-react-vite-muijoy-ink-tauri/.vscode/launch.json +6 -10
- package/template-react-vite-muijoy-ink-tauri/.vscode/settings.json +1 -6
- package/template-react-vite-muijoy-ink-tauri/.vscode/tasks.json +17 -48
- package/template-react-vite-muijoy-ink-tauri/README.md +3 -3
- package/template-react-vite-muijoy-ink-tauri/_gitignore +0 -11
- package/template-react-vite-muijoy-ink-tauri/package-lock.json +100 -557
- package/template-react-vite-muijoy-ink-tauri/package.json +5 -15
- package/template-react-vite-muijoy-ink-tauri/src/App.tsx +25 -25
- package/template-react-vite-muijoy-ink-tauri/src/assets/index.ts +4 -2
- package/template-react-vite-muijoy-ink-tauri/src/assets/ink-manifest.gen.json +1 -4
- package/template-react-vite-muijoy-ink-tauri/src/components/loading.tsx +5 -44
- package/template-react-vite-muijoy-ink-tauri/src/components/menus/main-menu.tsx +1 -16
- package/template-react-vite-muijoy-ink-tauri/src/components/menus/settings/about.tsx +1 -1
- package/template-react-vite-muijoy-ink-tauri/src/components/menus/settings/quick-menus.tsx +1 -17
- package/template-react-vite-muijoy-ink-tauri/src/components/menus/settings/system-controls.tsx +1 -11
- package/template-react-vite-muijoy-ink-tauri/src/components/quick-tools.tsx +1 -1
- package/template-react-vite-muijoy-ink-tauri/src/components/screens/narration/narration-cards.tsx +2 -3
- package/template-react-vite-muijoy-ink-tauri/src/content/labels/second.label.ts +1207 -0
- package/template-react-vite-muijoy-ink-tauri/src/content/labels/start.label.ts +566 -0
- package/template-react-vite-muijoy-ink-tauri/src/lib/i18n.ts +1 -22
- package/template-react-vite-muijoy-ink-tauri/src/lib/query/narration-query.ts +5 -1
- package/template-react-vite-muijoy-ink-tauri/src/lib/query/settings-query.ts +1 -7
- package/template-react-vite-muijoy-ink-tauri/src/lib/utils/assets-utility.ts +1 -1
- package/template-react-vite-muijoy-ink-tauri/src/pixi-vn-keys.gen.d.ts +0 -2
- package/template-react-vite-muijoy-ink-tauri/src/routes/__root.tsx +0 -4
- package/template-react-vite-muijoy-ink-tauri/vite.config.ts +0 -30
- package/template-react-vite-muijoy-tauri/.assetpack.ts +0 -9
- package/template-react-vite-muijoy-tauri/.vscode/extensions.json +1 -4
- package/template-react-vite-muijoy-tauri/.vscode/launch.json +6 -10
- package/template-react-vite-muijoy-tauri/.vscode/tasks.json +17 -48
- package/template-react-vite-muijoy-tauri/README.md +3 -3
- package/template-react-vite-muijoy-tauri/_gitignore +0 -10
- package/template-react-vite-muijoy-tauri/package-lock.json +100 -331
- package/template-react-vite-muijoy-tauri/package.json +4 -12
- package/template-react-vite-muijoy-tauri/src/components/loading.tsx +5 -44
- package/template-react-vite-muijoy-tauri/src/components/menus/main-menu.tsx +1 -16
- package/template-react-vite-muijoy-tauri/src/components/menus/settings/about.tsx +1 -1
- package/template-react-vite-muijoy-tauri/src/components/menus/settings/quick-menus.tsx +1 -17
- package/template-react-vite-muijoy-tauri/src/components/menus/settings/system-controls.tsx +1 -11
- package/template-react-vite-muijoy-tauri/src/components/quick-tools.tsx +1 -1
- package/template-react-vite-muijoy-tauri/src/components/screens/narration/narration-cards.tsx +2 -3
- package/template-react-vite-muijoy-tauri/src/lib/query/narration-query.ts +5 -1
- package/template-react-vite-muijoy-tauri/src/lib/query/settings-query.ts +1 -7
- package/template-react-vite-muijoy-tauri/src/lib/utils/assets-utility.ts +1 -1
- package/template-react-vite-muijoy-tauri/vite.config.ts +0 -24
- package/template-react-vite-muijoy-ink/ink/second_part.ink +0 -571
- package/template-react-vite-muijoy-ink/ink/start.ink +0 -214
- package/template-react-vite-muijoy-ink/src/content/ink/hashtag-commands.ts +0 -38
- package/template-react-vite-muijoy-ink/src/content/ink/text-replaces.ts +0 -19
- package/template-react-vite-muijoy-ink/src/lib/hooks/ink-hooks.tsx +0 -12
- package/template-react-vite-muijoy-ink-tauri/_github/workflows/desktop.yml +0 -188
- package/template-react-vite-muijoy-ink-tauri/_github/workflows/mobile.yml +0 -270
- package/template-react-vite-muijoy-ink-tauri/ink/second_part.ink +0 -571
- package/template-react-vite-muijoy-ink-tauri/ink/start.ink +0 -214
- package/template-react-vite-muijoy-ink-tauri/src/content/ink/hashtag-commands.ts +0 -55
- package/template-react-vite-muijoy-ink-tauri/src/content/ink/text-replaces.ts +0 -19
- package/template-react-vite-muijoy-ink-tauri/src/lib/hooks/ink-hooks.tsx +0 -12
- package/template-react-vite-muijoy-ink-tauri/src/lib/hooks/quit-hooks.ts +0 -24
- package/template-react-vite-muijoy-ink-tauri/src/lib/steam.ts +0 -143
- package/template-react-vite-muijoy-ink-tauri/src-tauri/Cargo.toml +0 -50
- package/template-react-vite-muijoy-ink-tauri/src-tauri/build.rs +0 -46
- package/template-react-vite-muijoy-ink-tauri/src-tauri/capabilities/default.json +0 -21
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/128x128.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/128x128@2x.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/32x32.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square107x107Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square142x142Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square150x150Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square284x284Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square30x30Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square310x310Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square44x44Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square71x71Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/Square89x89Logo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/StoreLogo.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/icon.icns +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/icon.ico +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/icons/icon.png +0 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/src/lib.rs +0 -64
- package/template-react-vite-muijoy-ink-tauri/src-tauri/src/main.rs +0 -6
- package/template-react-vite-muijoy-ink-tauri/src-tauri/src/steam.rs +0 -238
- package/template-react-vite-muijoy-ink-tauri/src-tauri/tauri.conf.json +0 -50
- package/template-react-vite-muijoy-tauri/_github/workflows/desktop.yml +0 -188
- package/template-react-vite-muijoy-tauri/_github/workflows/mobile.yml +0 -270
- package/template-react-vite-muijoy-tauri/src/lib/hooks/quit-hooks.ts +0 -24
- package/template-react-vite-muijoy-tauri/src/lib/steam.ts +0 -143
- package/template-react-vite-muijoy-tauri/src-tauri/Cargo.toml +0 -50
- package/template-react-vite-muijoy-tauri/src-tauri/build.rs +0 -46
- package/template-react-vite-muijoy-tauri/src-tauri/capabilities/default.json +0 -21
- package/template-react-vite-muijoy-tauri/src-tauri/icons/128x128.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/128x128@2x.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/32x32.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square107x107Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square142x142Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square150x150Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square284x284Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square30x30Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square310x310Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square44x44Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square71x71Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/Square89x89Logo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/StoreLogo.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/icon.icns +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/icon.ico +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/icons/icon.png +0 -0
- package/template-react-vite-muijoy-tauri/src-tauri/src/lib.rs +0 -64
- package/template-react-vite-muijoy-tauri/src-tauri/src/main.rs +0 -6
- package/template-react-vite-muijoy-tauri/src-tauri/src/steam.rs +0 -238
- package/template-react-vite-muijoy-tauri/src-tauri/tauri.conf.json +0 -50
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@base-ui/react": "^1.5.0",
|
|
13
13
|
"@drincs/pixi-vn": "^1.8.13",
|
|
14
|
-
"@drincs/pixi-vn-ink": "^1.0.5",
|
|
15
14
|
"@drincs/pixi-vn-spine": "^0.2.1",
|
|
16
15
|
"@tailwindcss/vite": "^4.3.0",
|
|
16
|
+
"@tanstack/hotkeys": "^0.8.0",
|
|
17
17
|
"@tanstack/react-devtools": "^0.10.5",
|
|
18
18
|
"@tanstack/react-hotkeys": "^0.10.0",
|
|
19
19
|
"@tanstack/react-hotkeys-devtools": "^0.7.0",
|
|
@@ -26,8 +26,6 @@
|
|
|
26
26
|
"@tanstack/react-store": "latest",
|
|
27
27
|
"@tanstack/router-plugin": "latest",
|
|
28
28
|
"@tanstack/store": "latest",
|
|
29
|
-
"@tauri-apps/api": "^2",
|
|
30
|
-
"@tauri-apps/plugin-opener": "^2",
|
|
31
29
|
"@unpic/react": "^1.0.2",
|
|
32
30
|
"class-variance-authority": "^0.7.1",
|
|
33
31
|
"clsx": "^2.1.1",
|
|
@@ -54,16 +52,13 @@
|
|
|
54
52
|
"tailwind-merge": "^3.6.0",
|
|
55
53
|
"tailwindcss": "^4.3.0",
|
|
56
54
|
"tw-animate-css": "^1.4.0",
|
|
57
|
-
"vaul": "^1.1.2"
|
|
58
|
-
"zod": "^4.4.3"
|
|
55
|
+
"vaul": "^1.1.2"
|
|
59
56
|
},
|
|
60
57
|
"devDependencies": {
|
|
61
58
|
"@assetpack/core": "^1.7.0",
|
|
62
59
|
"@biomejs/biome": "latest",
|
|
63
60
|
"@tailwindcss/typography": "^0.5.19",
|
|
64
61
|
"@tanstack/devtools-vite": "latest",
|
|
65
|
-
"@tauri-apps/cli": "^2",
|
|
66
|
-
"@tauri-apps/plugin-process": "^2.3.1",
|
|
67
62
|
"@types/node": "^25.9.1",
|
|
68
63
|
"@types/react": "^19.2.15",
|
|
69
64
|
"@types/react-dom": "^19.2.3",
|
|
@@ -71,8 +66,8 @@
|
|
|
71
66
|
"@vitejs/plugin-react": "^6.0.2",
|
|
72
67
|
"globals": "^17.6.0",
|
|
73
68
|
"typescript": "~6.0.3",
|
|
74
|
-
"vite": "^8.0.
|
|
75
|
-
"vite-plugin-checker": "
|
|
69
|
+
"vite": "^8.0.16",
|
|
70
|
+
"vite-plugin-checker": "0.14.1",
|
|
76
71
|
"vite-plugin-pwa": "^1.3.0"
|
|
77
72
|
}
|
|
78
73
|
},
|
|
@@ -2145,43 +2140,6 @@
|
|
|
2145
2140
|
}
|
|
2146
2141
|
}
|
|
2147
2142
|
},
|
|
2148
|
-
"node_modules/@drincs/pixi-vn-ink": {
|
|
2149
|
-
"version": "1.0.5",
|
|
2150
|
-
"resolved": "https://registry.npmjs.org/@drincs/pixi-vn-ink/-/pixi-vn-ink-1.0.5.tgz",
|
|
2151
|
-
"integrity": "sha512-oYp4xkp2MQJHebyDfnD90U3dtSZ/9ARwMehg1OvMwR7MRbpske9NNM6OJ9ijA68j/1TPJP/LUuDPpdNmDQwcRQ==",
|
|
2152
|
-
"license": "LGPL-2.1",
|
|
2153
|
-
"workspaces": [
|
|
2154
|
-
"playground"
|
|
2155
|
-
],
|
|
2156
|
-
"dependencies": {
|
|
2157
|
-
"@drincs/pixi-vn-json": "^1.13.9"
|
|
2158
|
-
},
|
|
2159
|
-
"funding": {
|
|
2160
|
-
"url": "https://github.com/DRincs-Productions/pixi-vn?sponsor=1"
|
|
2161
|
-
},
|
|
2162
|
-
"peerDependencies": {
|
|
2163
|
-
"@drincs/pixi-vn": ">=1.8.0",
|
|
2164
|
-
"zod": ">=4.4.0"
|
|
2165
|
-
},
|
|
2166
|
-
"peerDependenciesMeta": {
|
|
2167
|
-
"vite": {
|
|
2168
|
-
"optional": true
|
|
2169
|
-
}
|
|
2170
|
-
}
|
|
2171
|
-
},
|
|
2172
|
-
"node_modules/@drincs/pixi-vn-json": {
|
|
2173
|
-
"version": "1.13.9",
|
|
2174
|
-
"resolved": "https://registry.npmjs.org/@drincs/pixi-vn-json/-/pixi-vn-json-1.13.9.tgz",
|
|
2175
|
-
"integrity": "sha512-l3pXcQBEfR/5ZBKI5Foo5hoRXGP6J73iU+84r2fB4lMIc/+oT6vuU/qws0vtf/pTJ4JR/fAU2eN1yHlY0HgpEQ==",
|
|
2176
|
-
"license": "LGPL-2.1",
|
|
2177
|
-
"funding": {
|
|
2178
|
-
"url": "https://github.com/DRincs-Productions/pixi-vn?sponsor=1"
|
|
2179
|
-
},
|
|
2180
|
-
"peerDependencies": {
|
|
2181
|
-
"@drincs/pixi-vn": ">=1.8.0",
|
|
2182
|
-
"zod": ">=4.4.0"
|
|
2183
|
-
}
|
|
2184
|
-
},
|
|
2185
2143
|
"node_modules/@drincs/pixi-vn-spine": {
|
|
2186
2144
|
"version": "0.2.1",
|
|
2187
2145
|
"resolved": "https://registry.npmjs.org/@drincs/pixi-vn-spine/-/pixi-vn-spine-0.2.1.tgz",
|
|
@@ -3273,16 +3231,6 @@
|
|
|
3273
3231
|
"node": ">=18"
|
|
3274
3232
|
}
|
|
3275
3233
|
},
|
|
3276
|
-
"node_modules/@jimp/plugin-blit/node_modules/zod": {
|
|
3277
|
-
"version": "3.25.76",
|
|
3278
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3279
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3280
|
-
"dev": true,
|
|
3281
|
-
"license": "MIT",
|
|
3282
|
-
"funding": {
|
|
3283
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
3284
|
-
}
|
|
3285
|
-
},
|
|
3286
3234
|
"node_modules/@jimp/plugin-blur": {
|
|
3287
3235
|
"version": "1.6.1",
|
|
3288
3236
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-blur/-/plugin-blur-1.6.1.tgz",
|
|
@@ -3311,16 +3259,6 @@
|
|
|
3311
3259
|
"node": ">=18"
|
|
3312
3260
|
}
|
|
3313
3261
|
},
|
|
3314
|
-
"node_modules/@jimp/plugin-circle/node_modules/zod": {
|
|
3315
|
-
"version": "3.25.76",
|
|
3316
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3317
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3318
|
-
"dev": true,
|
|
3319
|
-
"license": "MIT",
|
|
3320
|
-
"funding": {
|
|
3321
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
3322
|
-
}
|
|
3323
|
-
},
|
|
3324
3262
|
"node_modules/@jimp/plugin-color": {
|
|
3325
3263
|
"version": "1.6.1",
|
|
3326
3264
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-color/-/plugin-color-1.6.1.tgz",
|
|
@@ -3338,16 +3276,6 @@
|
|
|
3338
3276
|
"node": ">=18"
|
|
3339
3277
|
}
|
|
3340
3278
|
},
|
|
3341
|
-
"node_modules/@jimp/plugin-color/node_modules/zod": {
|
|
3342
|
-
"version": "3.25.76",
|
|
3343
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3344
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3345
|
-
"dev": true,
|
|
3346
|
-
"license": "MIT",
|
|
3347
|
-
"funding": {
|
|
3348
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
3349
|
-
}
|
|
3350
|
-
},
|
|
3351
3279
|
"node_modules/@jimp/plugin-contain": {
|
|
3352
3280
|
"version": "1.6.1",
|
|
3353
3281
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-contain/-/plugin-contain-1.6.1.tgz",
|
|
@@ -3366,16 +3294,6 @@
|
|
|
3366
3294
|
"node": ">=18"
|
|
3367
3295
|
}
|
|
3368
3296
|
},
|
|
3369
|
-
"node_modules/@jimp/plugin-contain/node_modules/zod": {
|
|
3370
|
-
"version": "3.25.76",
|
|
3371
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3372
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3373
|
-
"dev": true,
|
|
3374
|
-
"license": "MIT",
|
|
3375
|
-
"funding": {
|
|
3376
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
3377
|
-
}
|
|
3378
|
-
},
|
|
3379
3297
|
"node_modules/@jimp/plugin-cover": {
|
|
3380
3298
|
"version": "1.6.1",
|
|
3381
3299
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-cover/-/plugin-cover-1.6.1.tgz",
|
|
@@ -3393,16 +3311,6 @@
|
|
|
3393
3311
|
"node": ">=18"
|
|
3394
3312
|
}
|
|
3395
3313
|
},
|
|
3396
|
-
"node_modules/@jimp/plugin-cover/node_modules/zod": {
|
|
3397
|
-
"version": "3.25.76",
|
|
3398
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3399
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3400
|
-
"dev": true,
|
|
3401
|
-
"license": "MIT",
|
|
3402
|
-
"funding": {
|
|
3403
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
3404
|
-
}
|
|
3405
|
-
},
|
|
3406
3314
|
"node_modules/@jimp/plugin-crop": {
|
|
3407
3315
|
"version": "1.6.1",
|
|
3408
3316
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-crop/-/plugin-crop-1.6.1.tgz",
|
|
@@ -3419,16 +3327,6 @@
|
|
|
3419
3327
|
"node": ">=18"
|
|
3420
3328
|
}
|
|
3421
3329
|
},
|
|
3422
|
-
"node_modules/@jimp/plugin-crop/node_modules/zod": {
|
|
3423
|
-
"version": "3.25.76",
|
|
3424
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3425
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3426
|
-
"dev": true,
|
|
3427
|
-
"license": "MIT",
|
|
3428
|
-
"funding": {
|
|
3429
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
3430
|
-
}
|
|
3431
|
-
},
|
|
3432
3330
|
"node_modules/@jimp/plugin-displace": {
|
|
3433
3331
|
"version": "1.6.1",
|
|
3434
3332
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-displace/-/plugin-displace-1.6.1.tgz",
|
|
@@ -3444,16 +3342,6 @@
|
|
|
3444
3342
|
"node": ">=18"
|
|
3445
3343
|
}
|
|
3446
3344
|
},
|
|
3447
|
-
"node_modules/@jimp/plugin-displace/node_modules/zod": {
|
|
3448
|
-
"version": "3.25.76",
|
|
3449
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3450
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3451
|
-
"dev": true,
|
|
3452
|
-
"license": "MIT",
|
|
3453
|
-
"funding": {
|
|
3454
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
3455
|
-
}
|
|
3456
|
-
},
|
|
3457
3345
|
"node_modules/@jimp/plugin-dither": {
|
|
3458
3346
|
"version": "1.6.1",
|
|
3459
3347
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-dither/-/plugin-dither-1.6.1.tgz",
|
|
@@ -3482,16 +3370,6 @@
|
|
|
3482
3370
|
"node": ">=18"
|
|
3483
3371
|
}
|
|
3484
3372
|
},
|
|
3485
|
-
"node_modules/@jimp/plugin-fisheye/node_modules/zod": {
|
|
3486
|
-
"version": "3.25.76",
|
|
3487
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3488
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3489
|
-
"dev": true,
|
|
3490
|
-
"license": "MIT",
|
|
3491
|
-
"funding": {
|
|
3492
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
3493
|
-
}
|
|
3494
|
-
},
|
|
3495
3373
|
"node_modules/@jimp/plugin-flip": {
|
|
3496
3374
|
"version": "1.6.1",
|
|
3497
3375
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-flip/-/plugin-flip-1.6.1.tgz",
|
|
@@ -3506,16 +3384,6 @@
|
|
|
3506
3384
|
"node": ">=18"
|
|
3507
3385
|
}
|
|
3508
3386
|
},
|
|
3509
|
-
"node_modules/@jimp/plugin-flip/node_modules/zod": {
|
|
3510
|
-
"version": "3.25.76",
|
|
3511
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3512
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3513
|
-
"dev": true,
|
|
3514
|
-
"license": "MIT",
|
|
3515
|
-
"funding": {
|
|
3516
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
3517
|
-
}
|
|
3518
|
-
},
|
|
3519
3387
|
"node_modules/@jimp/plugin-hash": {
|
|
3520
3388
|
"version": "1.6.1",
|
|
3521
3389
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-hash/-/plugin-hash-1.6.1.tgz",
|
|
@@ -3552,16 +3420,6 @@
|
|
|
3552
3420
|
"node": ">=18"
|
|
3553
3421
|
}
|
|
3554
3422
|
},
|
|
3555
|
-
"node_modules/@jimp/plugin-mask/node_modules/zod": {
|
|
3556
|
-
"version": "3.25.76",
|
|
3557
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3558
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3559
|
-
"dev": true,
|
|
3560
|
-
"license": "MIT",
|
|
3561
|
-
"funding": {
|
|
3562
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
3563
|
-
}
|
|
3564
|
-
},
|
|
3565
3423
|
"node_modules/@jimp/plugin-print": {
|
|
3566
3424
|
"version": "1.6.1",
|
|
3567
3425
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-print/-/plugin-print-1.6.1.tgz",
|
|
@@ -3584,16 +3442,6 @@
|
|
|
3584
3442
|
"node": ">=18"
|
|
3585
3443
|
}
|
|
3586
3444
|
},
|
|
3587
|
-
"node_modules/@jimp/plugin-print/node_modules/zod": {
|
|
3588
|
-
"version": "3.25.76",
|
|
3589
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3590
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3591
|
-
"dev": true,
|
|
3592
|
-
"license": "MIT",
|
|
3593
|
-
"funding": {
|
|
3594
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
3595
|
-
}
|
|
3596
|
-
},
|
|
3597
3445
|
"node_modules/@jimp/plugin-quantize": {
|
|
3598
3446
|
"version": "1.6.1",
|
|
3599
3447
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-quantize/-/plugin-quantize-1.6.1.tgz",
|
|
@@ -3608,16 +3456,6 @@
|
|
|
3608
3456
|
"node": ">=18"
|
|
3609
3457
|
}
|
|
3610
3458
|
},
|
|
3611
|
-
"node_modules/@jimp/plugin-quantize/node_modules/zod": {
|
|
3612
|
-
"version": "3.25.76",
|
|
3613
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3614
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3615
|
-
"dev": true,
|
|
3616
|
-
"license": "MIT",
|
|
3617
|
-
"funding": {
|
|
3618
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
3619
|
-
}
|
|
3620
|
-
},
|
|
3621
3459
|
"node_modules/@jimp/plugin-resize": {
|
|
3622
3460
|
"version": "1.6.1",
|
|
3623
3461
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-resize/-/plugin-resize-1.6.1.tgz",
|
|
@@ -3633,16 +3471,6 @@
|
|
|
3633
3471
|
"node": ">=18"
|
|
3634
3472
|
}
|
|
3635
3473
|
},
|
|
3636
|
-
"node_modules/@jimp/plugin-resize/node_modules/zod": {
|
|
3637
|
-
"version": "3.25.76",
|
|
3638
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3639
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3640
|
-
"dev": true,
|
|
3641
|
-
"license": "MIT",
|
|
3642
|
-
"funding": {
|
|
3643
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
3644
|
-
}
|
|
3645
|
-
},
|
|
3646
3474
|
"node_modules/@jimp/plugin-rotate": {
|
|
3647
3475
|
"version": "1.6.1",
|
|
3648
3476
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-rotate/-/plugin-rotate-1.6.1.tgz",
|
|
@@ -3661,16 +3489,6 @@
|
|
|
3661
3489
|
"node": ">=18"
|
|
3662
3490
|
}
|
|
3663
3491
|
},
|
|
3664
|
-
"node_modules/@jimp/plugin-rotate/node_modules/zod": {
|
|
3665
|
-
"version": "3.25.76",
|
|
3666
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3667
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3668
|
-
"dev": true,
|
|
3669
|
-
"license": "MIT",
|
|
3670
|
-
"funding": {
|
|
3671
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
3672
|
-
}
|
|
3673
|
-
},
|
|
3674
3492
|
"node_modules/@jimp/plugin-threshold": {
|
|
3675
3493
|
"version": "1.6.1",
|
|
3676
3494
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-threshold/-/plugin-threshold-1.6.1.tgz",
|
|
@@ -3689,16 +3507,6 @@
|
|
|
3689
3507
|
"node": ">=18"
|
|
3690
3508
|
}
|
|
3691
3509
|
},
|
|
3692
|
-
"node_modules/@jimp/plugin-threshold/node_modules/zod": {
|
|
3693
|
-
"version": "3.25.76",
|
|
3694
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3695
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3696
|
-
"dev": true,
|
|
3697
|
-
"license": "MIT",
|
|
3698
|
-
"funding": {
|
|
3699
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
3700
|
-
}
|
|
3701
|
-
},
|
|
3702
3510
|
"node_modules/@jimp/types": {
|
|
3703
3511
|
"version": "1.6.1",
|
|
3704
3512
|
"resolved": "https://registry.npmjs.org/@jimp/types/-/types-1.6.1.tgz",
|
|
@@ -3712,16 +3520,6 @@
|
|
|
3712
3520
|
"node": ">=18"
|
|
3713
3521
|
}
|
|
3714
3522
|
},
|
|
3715
|
-
"node_modules/@jimp/types/node_modules/zod": {
|
|
3716
|
-
"version": "3.25.76",
|
|
3717
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3718
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3719
|
-
"dev": true,
|
|
3720
|
-
"license": "MIT",
|
|
3721
|
-
"funding": {
|
|
3722
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
3723
|
-
}
|
|
3724
|
-
},
|
|
3725
3523
|
"node_modules/@jimp/utils": {
|
|
3726
3524
|
"version": "1.6.1",
|
|
3727
3525
|
"resolved": "https://registry.npmjs.org/@jimp/utils/-/utils-1.6.1.tgz",
|
|
@@ -4483,9 +4281,9 @@
|
|
|
4483
4281
|
"license": "MIT"
|
|
4484
4282
|
},
|
|
4485
4283
|
"node_modules/@oxc-project/types": {
|
|
4486
|
-
"version": "0.
|
|
4487
|
-
"resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.
|
|
4488
|
-
"integrity": "sha512-
|
|
4284
|
+
"version": "0.133.0",
|
|
4285
|
+
"resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.133.0.tgz",
|
|
4286
|
+
"integrity": "sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA==",
|
|
4489
4287
|
"license": "MIT",
|
|
4490
4288
|
"funding": {
|
|
4491
4289
|
"url": "https://github.com/sponsors/Boshen"
|
|
@@ -4893,9 +4691,9 @@
|
|
|
4893
4691
|
}
|
|
4894
4692
|
},
|
|
4895
4693
|
"node_modules/@rolldown/binding-android-arm64": {
|
|
4896
|
-
"version": "1.0.
|
|
4897
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.
|
|
4898
|
-
"integrity": "sha512-
|
|
4694
|
+
"version": "1.0.3",
|
|
4695
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.3.tgz",
|
|
4696
|
+
"integrity": "sha512-454rs7jHngixp/NMxd5srYD57OnzSlZ/eFTETjORQHLwJG1lRtmNOJcBerZlfu4GjKqeq8aCCIQrMdHyhI51Hw==",
|
|
4899
4697
|
"cpu": [
|
|
4900
4698
|
"arm64"
|
|
4901
4699
|
],
|
|
@@ -4909,9 +4707,9 @@
|
|
|
4909
4707
|
}
|
|
4910
4708
|
},
|
|
4911
4709
|
"node_modules/@rolldown/binding-darwin-arm64": {
|
|
4912
|
-
"version": "1.0.
|
|
4913
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.
|
|
4914
|
-
"integrity": "sha512-
|
|
4710
|
+
"version": "1.0.3",
|
|
4711
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.3.tgz",
|
|
4712
|
+
"integrity": "sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA==",
|
|
4915
4713
|
"cpu": [
|
|
4916
4714
|
"arm64"
|
|
4917
4715
|
],
|
|
@@ -4925,9 +4723,9 @@
|
|
|
4925
4723
|
}
|
|
4926
4724
|
},
|
|
4927
4725
|
"node_modules/@rolldown/binding-darwin-x64": {
|
|
4928
|
-
"version": "1.0.
|
|
4929
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.
|
|
4930
|
-
"integrity": "sha512-
|
|
4726
|
+
"version": "1.0.3",
|
|
4727
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.3.tgz",
|
|
4728
|
+
"integrity": "sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg==",
|
|
4931
4729
|
"cpu": [
|
|
4932
4730
|
"x64"
|
|
4933
4731
|
],
|
|
@@ -4941,9 +4739,9 @@
|
|
|
4941
4739
|
}
|
|
4942
4740
|
},
|
|
4943
4741
|
"node_modules/@rolldown/binding-freebsd-x64": {
|
|
4944
|
-
"version": "1.0.
|
|
4945
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.
|
|
4946
|
-
"integrity": "sha512-
|
|
4742
|
+
"version": "1.0.3",
|
|
4743
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.3.tgz",
|
|
4744
|
+
"integrity": "sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g==",
|
|
4947
4745
|
"cpu": [
|
|
4948
4746
|
"x64"
|
|
4949
4747
|
],
|
|
@@ -4957,9 +4755,9 @@
|
|
|
4957
4755
|
}
|
|
4958
4756
|
},
|
|
4959
4757
|
"node_modules/@rolldown/binding-linux-arm-gnueabihf": {
|
|
4960
|
-
"version": "1.0.
|
|
4961
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.
|
|
4962
|
-
"integrity": "sha512-
|
|
4758
|
+
"version": "1.0.3",
|
|
4759
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.3.tgz",
|
|
4760
|
+
"integrity": "sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw==",
|
|
4963
4761
|
"cpu": [
|
|
4964
4762
|
"arm"
|
|
4965
4763
|
],
|
|
@@ -4973,12 +4771,15 @@
|
|
|
4973
4771
|
}
|
|
4974
4772
|
},
|
|
4975
4773
|
"node_modules/@rolldown/binding-linux-arm64-gnu": {
|
|
4976
|
-
"version": "1.0.
|
|
4977
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.
|
|
4978
|
-
"integrity": "sha512-
|
|
4774
|
+
"version": "1.0.3",
|
|
4775
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.3.tgz",
|
|
4776
|
+
"integrity": "sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw==",
|
|
4979
4777
|
"cpu": [
|
|
4980
4778
|
"arm64"
|
|
4981
4779
|
],
|
|
4780
|
+
"libc": [
|
|
4781
|
+
"glibc"
|
|
4782
|
+
],
|
|
4982
4783
|
"license": "MIT",
|
|
4983
4784
|
"optional": true,
|
|
4984
4785
|
"os": [
|
|
@@ -4989,12 +4790,15 @@
|
|
|
4989
4790
|
}
|
|
4990
4791
|
},
|
|
4991
4792
|
"node_modules/@rolldown/binding-linux-arm64-musl": {
|
|
4992
|
-
"version": "1.0.
|
|
4993
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.
|
|
4994
|
-
"integrity": "sha512-
|
|
4793
|
+
"version": "1.0.3",
|
|
4794
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.3.tgz",
|
|
4795
|
+
"integrity": "sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q==",
|
|
4995
4796
|
"cpu": [
|
|
4996
4797
|
"arm64"
|
|
4997
4798
|
],
|
|
4799
|
+
"libc": [
|
|
4800
|
+
"musl"
|
|
4801
|
+
],
|
|
4998
4802
|
"license": "MIT",
|
|
4999
4803
|
"optional": true,
|
|
5000
4804
|
"os": [
|
|
@@ -5005,12 +4809,15 @@
|
|
|
5005
4809
|
}
|
|
5006
4810
|
},
|
|
5007
4811
|
"node_modules/@rolldown/binding-linux-ppc64-gnu": {
|
|
5008
|
-
"version": "1.0.
|
|
5009
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.
|
|
5010
|
-
"integrity": "sha512-
|
|
4812
|
+
"version": "1.0.3",
|
|
4813
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.3.tgz",
|
|
4814
|
+
"integrity": "sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg==",
|
|
5011
4815
|
"cpu": [
|
|
5012
4816
|
"ppc64"
|
|
5013
4817
|
],
|
|
4818
|
+
"libc": [
|
|
4819
|
+
"glibc"
|
|
4820
|
+
],
|
|
5014
4821
|
"license": "MIT",
|
|
5015
4822
|
"optional": true,
|
|
5016
4823
|
"os": [
|
|
@@ -5021,12 +4828,15 @@
|
|
|
5021
4828
|
}
|
|
5022
4829
|
},
|
|
5023
4830
|
"node_modules/@rolldown/binding-linux-s390x-gnu": {
|
|
5024
|
-
"version": "1.0.
|
|
5025
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.
|
|
5026
|
-
"integrity": "sha512-
|
|
4831
|
+
"version": "1.0.3",
|
|
4832
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.3.tgz",
|
|
4833
|
+
"integrity": "sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg==",
|
|
5027
4834
|
"cpu": [
|
|
5028
4835
|
"s390x"
|
|
5029
4836
|
],
|
|
4837
|
+
"libc": [
|
|
4838
|
+
"glibc"
|
|
4839
|
+
],
|
|
5030
4840
|
"license": "MIT",
|
|
5031
4841
|
"optional": true,
|
|
5032
4842
|
"os": [
|
|
@@ -5037,12 +4847,15 @@
|
|
|
5037
4847
|
}
|
|
5038
4848
|
},
|
|
5039
4849
|
"node_modules/@rolldown/binding-linux-x64-gnu": {
|
|
5040
|
-
"version": "1.0.
|
|
5041
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.
|
|
5042
|
-
"integrity": "sha512-
|
|
4850
|
+
"version": "1.0.3",
|
|
4851
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.3.tgz",
|
|
4852
|
+
"integrity": "sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg==",
|
|
5043
4853
|
"cpu": [
|
|
5044
4854
|
"x64"
|
|
5045
4855
|
],
|
|
4856
|
+
"libc": [
|
|
4857
|
+
"glibc"
|
|
4858
|
+
],
|
|
5046
4859
|
"license": "MIT",
|
|
5047
4860
|
"optional": true,
|
|
5048
4861
|
"os": [
|
|
@@ -5053,12 +4866,15 @@
|
|
|
5053
4866
|
}
|
|
5054
4867
|
},
|
|
5055
4868
|
"node_modules/@rolldown/binding-linux-x64-musl": {
|
|
5056
|
-
"version": "1.0.
|
|
5057
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.
|
|
5058
|
-
"integrity": "sha512-
|
|
4869
|
+
"version": "1.0.3",
|
|
4870
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.3.tgz",
|
|
4871
|
+
"integrity": "sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow==",
|
|
5059
4872
|
"cpu": [
|
|
5060
4873
|
"x64"
|
|
5061
4874
|
],
|
|
4875
|
+
"libc": [
|
|
4876
|
+
"musl"
|
|
4877
|
+
],
|
|
5062
4878
|
"license": "MIT",
|
|
5063
4879
|
"optional": true,
|
|
5064
4880
|
"os": [
|
|
@@ -5069,9 +4885,9 @@
|
|
|
5069
4885
|
}
|
|
5070
4886
|
},
|
|
5071
4887
|
"node_modules/@rolldown/binding-openharmony-arm64": {
|
|
5072
|
-
"version": "1.0.
|
|
5073
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.
|
|
5074
|
-
"integrity": "sha512-
|
|
4888
|
+
"version": "1.0.3",
|
|
4889
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.3.tgz",
|
|
4890
|
+
"integrity": "sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg==",
|
|
5075
4891
|
"cpu": [
|
|
5076
4892
|
"arm64"
|
|
5077
4893
|
],
|
|
@@ -5085,9 +4901,9 @@
|
|
|
5085
4901
|
}
|
|
5086
4902
|
},
|
|
5087
4903
|
"node_modules/@rolldown/binding-wasm32-wasi": {
|
|
5088
|
-
"version": "1.0.
|
|
5089
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.
|
|
5090
|
-
"integrity": "sha512-
|
|
4904
|
+
"version": "1.0.3",
|
|
4905
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.3.tgz",
|
|
4906
|
+
"integrity": "sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg==",
|
|
5091
4907
|
"cpu": [
|
|
5092
4908
|
"wasm32"
|
|
5093
4909
|
],
|
|
@@ -5103,9 +4919,9 @@
|
|
|
5103
4919
|
}
|
|
5104
4920
|
},
|
|
5105
4921
|
"node_modules/@rolldown/binding-win32-arm64-msvc": {
|
|
5106
|
-
"version": "1.0.
|
|
5107
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.
|
|
5108
|
-
"integrity": "sha512-
|
|
4922
|
+
"version": "1.0.3",
|
|
4923
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.3.tgz",
|
|
4924
|
+
"integrity": "sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g==",
|
|
5109
4925
|
"cpu": [
|
|
5110
4926
|
"arm64"
|
|
5111
4927
|
],
|
|
@@ -5119,9 +4935,9 @@
|
|
|
5119
4935
|
}
|
|
5120
4936
|
},
|
|
5121
4937
|
"node_modules/@rolldown/binding-win32-x64-msvc": {
|
|
5122
|
-
"version": "1.0.
|
|
5123
|
-
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.
|
|
5124
|
-
"integrity": "sha512-
|
|
4938
|
+
"version": "1.0.3",
|
|
4939
|
+
"resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.3.tgz",
|
|
4940
|
+
"integrity": "sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA==",
|
|
5125
4941
|
"cpu": [
|
|
5126
4942
|
"x64"
|
|
5127
4943
|
],
|
|
@@ -6678,15 +6494,6 @@
|
|
|
6678
6494
|
"url": "https://github.com/sponsors/tannerlinsley"
|
|
6679
6495
|
}
|
|
6680
6496
|
},
|
|
6681
|
-
"node_modules/@tanstack/router-generator/node_modules/zod": {
|
|
6682
|
-
"version": "3.25.76",
|
|
6683
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
6684
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
6685
|
-
"license": "MIT",
|
|
6686
|
-
"funding": {
|
|
6687
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
6688
|
-
}
|
|
6689
|
-
},
|
|
6690
6497
|
"node_modules/@tanstack/router-plugin": {
|
|
6691
6498
|
"version": "1.167.35",
|
|
6692
6499
|
"resolved": "https://registry.npmjs.org/@tanstack/router-plugin/-/router-plugin-1.167.35.tgz",
|
|
@@ -6787,15 +6594,6 @@
|
|
|
6787
6594
|
"node": ">=8.10.0"
|
|
6788
6595
|
}
|
|
6789
6596
|
},
|
|
6790
|
-
"node_modules/@tanstack/router-plugin/node_modules/zod": {
|
|
6791
|
-
"version": "3.25.76",
|
|
6792
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
6793
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
6794
|
-
"license": "MIT",
|
|
6795
|
-
"funding": {
|
|
6796
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
6797
|
-
}
|
|
6798
|
-
},
|
|
6799
6597
|
"node_modules/@tanstack/router-utils": {
|
|
6800
6598
|
"version": "1.161.8",
|
|
6801
6599
|
"resolved": "https://registry.npmjs.org/@tanstack/router-utils/-/router-utils-1.161.8.tgz",
|
|
@@ -6862,252 +6660,6 @@
|
|
|
6862
6660
|
"url": "https://github.com/sponsors/tannerlinsley"
|
|
6863
6661
|
}
|
|
6864
6662
|
},
|
|
6865
|
-
"node_modules/@tauri-apps/api": {
|
|
6866
|
-
"version": "2.11.0",
|
|
6867
|
-
"resolved": "https://registry.npmjs.org/@tauri-apps/api/-/api-2.11.0.tgz",
|
|
6868
|
-
"integrity": "sha512-7CinYODhky9lmO23xHnUFv0Xt43fbtWMyxZcLcRBlFkcgXKuEirBvHpmtJ89YMhyeGcq20Wuc47Fa4XjyniywA==",
|
|
6869
|
-
"license": "Apache-2.0 OR MIT",
|
|
6870
|
-
"funding": {
|
|
6871
|
-
"type": "opencollective",
|
|
6872
|
-
"url": "https://opencollective.com/tauri"
|
|
6873
|
-
}
|
|
6874
|
-
},
|
|
6875
|
-
"node_modules/@tauri-apps/cli": {
|
|
6876
|
-
"version": "2.11.2",
|
|
6877
|
-
"resolved": "https://registry.npmjs.org/@tauri-apps/cli/-/cli-2.11.2.tgz",
|
|
6878
|
-
"integrity": "sha512-bk3HemqvGRoy+5D/dVMUQHKMYLglD0jVnMm/0iGMH6ufZ+p8r14m6BpIixwij3PBvZdvORUp1YifTD8QxVZ1Nw==",
|
|
6879
|
-
"dev": true,
|
|
6880
|
-
"license": "Apache-2.0 OR MIT",
|
|
6881
|
-
"bin": {
|
|
6882
|
-
"tauri": "tauri.js"
|
|
6883
|
-
},
|
|
6884
|
-
"engines": {
|
|
6885
|
-
"node": ">= 10"
|
|
6886
|
-
},
|
|
6887
|
-
"funding": {
|
|
6888
|
-
"type": "opencollective",
|
|
6889
|
-
"url": "https://opencollective.com/tauri"
|
|
6890
|
-
},
|
|
6891
|
-
"optionalDependencies": {
|
|
6892
|
-
"@tauri-apps/cli-darwin-arm64": "2.11.2",
|
|
6893
|
-
"@tauri-apps/cli-darwin-x64": "2.11.2",
|
|
6894
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "2.11.2",
|
|
6895
|
-
"@tauri-apps/cli-linux-arm64-gnu": "2.11.2",
|
|
6896
|
-
"@tauri-apps/cli-linux-arm64-musl": "2.11.2",
|
|
6897
|
-
"@tauri-apps/cli-linux-riscv64-gnu": "2.11.2",
|
|
6898
|
-
"@tauri-apps/cli-linux-x64-gnu": "2.11.2",
|
|
6899
|
-
"@tauri-apps/cli-linux-x64-musl": "2.11.2",
|
|
6900
|
-
"@tauri-apps/cli-win32-arm64-msvc": "2.11.2",
|
|
6901
|
-
"@tauri-apps/cli-win32-ia32-msvc": "2.11.2",
|
|
6902
|
-
"@tauri-apps/cli-win32-x64-msvc": "2.11.2"
|
|
6903
|
-
}
|
|
6904
|
-
},
|
|
6905
|
-
"node_modules/@tauri-apps/cli-darwin-arm64": {
|
|
6906
|
-
"version": "2.11.2",
|
|
6907
|
-
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-2.11.2.tgz",
|
|
6908
|
-
"integrity": "sha512-+4UZzLt+eOAEQCwgd+TqKgyUJMrvx+BgdXLLaqJYmPqzP+nE6YZr/hY6CWLYGQb8jFn99jEkmC6uA3tNvamA1w==",
|
|
6909
|
-
"cpu": [
|
|
6910
|
-
"arm64"
|
|
6911
|
-
],
|
|
6912
|
-
"dev": true,
|
|
6913
|
-
"license": "Apache-2.0 OR MIT",
|
|
6914
|
-
"optional": true,
|
|
6915
|
-
"os": [
|
|
6916
|
-
"darwin"
|
|
6917
|
-
],
|
|
6918
|
-
"engines": {
|
|
6919
|
-
"node": ">= 10"
|
|
6920
|
-
}
|
|
6921
|
-
},
|
|
6922
|
-
"node_modules/@tauri-apps/cli-darwin-x64": {
|
|
6923
|
-
"version": "2.11.2",
|
|
6924
|
-
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-2.11.2.tgz",
|
|
6925
|
-
"integrity": "sha512-VjYYtZUPqDMLutSfJEyxFE3Bz+DPi7c8wC3imckgvciLDZLq4qwKJxBicg0BXGhXjJsl8vKWgWRFNMPELQ+Xyg==",
|
|
6926
|
-
"cpu": [
|
|
6927
|
-
"x64"
|
|
6928
|
-
],
|
|
6929
|
-
"dev": true,
|
|
6930
|
-
"license": "Apache-2.0 OR MIT",
|
|
6931
|
-
"optional": true,
|
|
6932
|
-
"os": [
|
|
6933
|
-
"darwin"
|
|
6934
|
-
],
|
|
6935
|
-
"engines": {
|
|
6936
|
-
"node": ">= 10"
|
|
6937
|
-
}
|
|
6938
|
-
},
|
|
6939
|
-
"node_modules/@tauri-apps/cli-linux-arm-gnueabihf": {
|
|
6940
|
-
"version": "2.11.2",
|
|
6941
|
-
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-2.11.2.tgz",
|
|
6942
|
-
"integrity": "sha512-yMemD6f4i95AQriS8EazyOFzbE34yjnP16i3IOzpHGQvBoy2DjypFMFBq0NtPuITURv/cOGguRtHR5d79/9CSA==",
|
|
6943
|
-
"cpu": [
|
|
6944
|
-
"arm"
|
|
6945
|
-
],
|
|
6946
|
-
"dev": true,
|
|
6947
|
-
"license": "Apache-2.0 OR MIT",
|
|
6948
|
-
"optional": true,
|
|
6949
|
-
"os": [
|
|
6950
|
-
"linux"
|
|
6951
|
-
],
|
|
6952
|
-
"engines": {
|
|
6953
|
-
"node": ">= 10"
|
|
6954
|
-
}
|
|
6955
|
-
},
|
|
6956
|
-
"node_modules/@tauri-apps/cli-linux-arm64-gnu": {
|
|
6957
|
-
"version": "2.11.2",
|
|
6958
|
-
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-2.11.2.tgz",
|
|
6959
|
-
"integrity": "sha512-cgI91D2wL8GSgoWwZXDqt+DwnuZCP2/bz03QAE4TrhgAKIsrB4hX26W/H1EONPUUNkqrsgeCD0wU6pcNjV/5kw==",
|
|
6960
|
-
"cpu": [
|
|
6961
|
-
"arm64"
|
|
6962
|
-
],
|
|
6963
|
-
"dev": true,
|
|
6964
|
-
"license": "Apache-2.0 OR MIT",
|
|
6965
|
-
"optional": true,
|
|
6966
|
-
"os": [
|
|
6967
|
-
"linux"
|
|
6968
|
-
],
|
|
6969
|
-
"engines": {
|
|
6970
|
-
"node": ">= 10"
|
|
6971
|
-
}
|
|
6972
|
-
},
|
|
6973
|
-
"node_modules/@tauri-apps/cli-linux-arm64-musl": {
|
|
6974
|
-
"version": "2.11.2",
|
|
6975
|
-
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-2.11.2.tgz",
|
|
6976
|
-
"integrity": "sha512-X1rm0BERqAAggtYTESSgXrS3sz4Sb/OiPiz54UqISlXW+GkR3vNIGnsy/lejNmoXGVqri3Q53BCfQiclOIyRPw==",
|
|
6977
|
-
"cpu": [
|
|
6978
|
-
"arm64"
|
|
6979
|
-
],
|
|
6980
|
-
"dev": true,
|
|
6981
|
-
"license": "Apache-2.0 OR MIT",
|
|
6982
|
-
"optional": true,
|
|
6983
|
-
"os": [
|
|
6984
|
-
"linux"
|
|
6985
|
-
],
|
|
6986
|
-
"engines": {
|
|
6987
|
-
"node": ">= 10"
|
|
6988
|
-
}
|
|
6989
|
-
},
|
|
6990
|
-
"node_modules/@tauri-apps/cli-linux-riscv64-gnu": {
|
|
6991
|
-
"version": "2.11.2",
|
|
6992
|
-
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-riscv64-gnu/-/cli-linux-riscv64-gnu-2.11.2.tgz",
|
|
6993
|
-
"integrity": "sha512-usbMLJbT3KtkOrBMDVeGYNM35aTHXx38SJSzTMSqqjeUIOQ+iVPjb2yAGNAE+KqmBbAx4FOFIyMeKXx2M/JKGQ==",
|
|
6994
|
-
"cpu": [
|
|
6995
|
-
"riscv64"
|
|
6996
|
-
],
|
|
6997
|
-
"dev": true,
|
|
6998
|
-
"license": "Apache-2.0 OR MIT",
|
|
6999
|
-
"optional": true,
|
|
7000
|
-
"os": [
|
|
7001
|
-
"linux"
|
|
7002
|
-
],
|
|
7003
|
-
"engines": {
|
|
7004
|
-
"node": ">= 10"
|
|
7005
|
-
}
|
|
7006
|
-
},
|
|
7007
|
-
"node_modules/@tauri-apps/cli-linux-x64-gnu": {
|
|
7008
|
-
"version": "2.11.2",
|
|
7009
|
-
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-2.11.2.tgz",
|
|
7010
|
-
"integrity": "sha512-Ru4gwJKPG0ctVGchRGpRup4Y4lW2SSfFnrbQcyHhCliKy4g8Qz97TrUgCur4CbWyAgKxvGh3SjrkA0LDYzDGiw==",
|
|
7011
|
-
"cpu": [
|
|
7012
|
-
"x64"
|
|
7013
|
-
],
|
|
7014
|
-
"dev": true,
|
|
7015
|
-
"license": "Apache-2.0 OR MIT",
|
|
7016
|
-
"optional": true,
|
|
7017
|
-
"os": [
|
|
7018
|
-
"linux"
|
|
7019
|
-
],
|
|
7020
|
-
"engines": {
|
|
7021
|
-
"node": ">= 10"
|
|
7022
|
-
}
|
|
7023
|
-
},
|
|
7024
|
-
"node_modules/@tauri-apps/cli-linux-x64-musl": {
|
|
7025
|
-
"version": "2.11.2",
|
|
7026
|
-
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-2.11.2.tgz",
|
|
7027
|
-
"integrity": "sha512-eUm7T6clN1MMmNSRQ9gaWsQdyehQx2Gmn5hht/QUlqZQI/qcP2OJK5dnaxqwFzCr2HdsEo9ydxaqcS1oJzMvUw==",
|
|
7028
|
-
"cpu": [
|
|
7029
|
-
"x64"
|
|
7030
|
-
],
|
|
7031
|
-
"dev": true,
|
|
7032
|
-
"license": "Apache-2.0 OR MIT",
|
|
7033
|
-
"optional": true,
|
|
7034
|
-
"os": [
|
|
7035
|
-
"linux"
|
|
7036
|
-
],
|
|
7037
|
-
"engines": {
|
|
7038
|
-
"node": ">= 10"
|
|
7039
|
-
}
|
|
7040
|
-
},
|
|
7041
|
-
"node_modules/@tauri-apps/cli-win32-arm64-msvc": {
|
|
7042
|
-
"version": "2.11.2",
|
|
7043
|
-
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-arm64-msvc/-/cli-win32-arm64-msvc-2.11.2.tgz",
|
|
7044
|
-
"integrity": "sha512-HeeZW80jU+gVTOEX4X/hC6NVSAdDVXajwP5fxIZ/3z9WvUC7qrudX2GMTilYq6Dg0e0sk0XgsAJD1hZ5wPBXUA==",
|
|
7045
|
-
"cpu": [
|
|
7046
|
-
"arm64"
|
|
7047
|
-
],
|
|
7048
|
-
"dev": true,
|
|
7049
|
-
"license": "Apache-2.0 OR MIT",
|
|
7050
|
-
"optional": true,
|
|
7051
|
-
"os": [
|
|
7052
|
-
"win32"
|
|
7053
|
-
],
|
|
7054
|
-
"engines": {
|
|
7055
|
-
"node": ">= 10"
|
|
7056
|
-
}
|
|
7057
|
-
},
|
|
7058
|
-
"node_modules/@tauri-apps/cli-win32-ia32-msvc": {
|
|
7059
|
-
"version": "2.11.2",
|
|
7060
|
-
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-2.11.2.tgz",
|
|
7061
|
-
"integrity": "sha512-YhjQNZcXfbkCLyazSv1nPnJ9iRFE1wm6kc51FDbU10/Dk09io+6PAGMLjkxnX2GdM0qMnDmTjstY8mTDVvtKeA==",
|
|
7062
|
-
"cpu": [
|
|
7063
|
-
"ia32"
|
|
7064
|
-
],
|
|
7065
|
-
"dev": true,
|
|
7066
|
-
"license": "Apache-2.0 OR MIT",
|
|
7067
|
-
"optional": true,
|
|
7068
|
-
"os": [
|
|
7069
|
-
"win32"
|
|
7070
|
-
],
|
|
7071
|
-
"engines": {
|
|
7072
|
-
"node": ">= 10"
|
|
7073
|
-
}
|
|
7074
|
-
},
|
|
7075
|
-
"node_modules/@tauri-apps/cli-win32-x64-msvc": {
|
|
7076
|
-
"version": "2.11.2",
|
|
7077
|
-
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-2.11.2.tgz",
|
|
7078
|
-
"integrity": "sha512-d2JchlFIpZevZVReyqhQOekJmb1UH3rhZ5VX6sH3ty9ETE0TKQavpihvoScUXfKKpW6HZC0MrFGRU0ZtD+w3gA==",
|
|
7079
|
-
"cpu": [
|
|
7080
|
-
"x64"
|
|
7081
|
-
],
|
|
7082
|
-
"dev": true,
|
|
7083
|
-
"license": "Apache-2.0 OR MIT",
|
|
7084
|
-
"optional": true,
|
|
7085
|
-
"os": [
|
|
7086
|
-
"win32"
|
|
7087
|
-
],
|
|
7088
|
-
"engines": {
|
|
7089
|
-
"node": ">= 10"
|
|
7090
|
-
}
|
|
7091
|
-
},
|
|
7092
|
-
"node_modules/@tauri-apps/plugin-opener": {
|
|
7093
|
-
"version": "2.5.4",
|
|
7094
|
-
"resolved": "https://registry.npmjs.org/@tauri-apps/plugin-opener/-/plugin-opener-2.5.4.tgz",
|
|
7095
|
-
"integrity": "sha512-1HnPkb+AmgO29HBazm4uPLKB+r7zzcTBW1d0fyYp1uP+jwtpoiNDGKMMzz58SFp49nOIrxdE3aUJtT57lfO9CQ==",
|
|
7096
|
-
"license": "MIT OR Apache-2.0",
|
|
7097
|
-
"dependencies": {
|
|
7098
|
-
"@tauri-apps/api": "^2.11.0"
|
|
7099
|
-
}
|
|
7100
|
-
},
|
|
7101
|
-
"node_modules/@tauri-apps/plugin-process": {
|
|
7102
|
-
"version": "2.3.1",
|
|
7103
|
-
"resolved": "https://registry.npmjs.org/@tauri-apps/plugin-process/-/plugin-process-2.3.1.tgz",
|
|
7104
|
-
"integrity": "sha512-nCa4fGVaDL/B9ai03VyPOjfAHRHSBz5v6F/ObsB73r/dA3MHHhZtldaDMIc0V/pnUw9ehzr2iEG+XkSEyC0JJA==",
|
|
7105
|
-
"dev": true,
|
|
7106
|
-
"license": "MIT OR Apache-2.0",
|
|
7107
|
-
"dependencies": {
|
|
7108
|
-
"@tauri-apps/api": "^2.8.0"
|
|
7109
|
-
}
|
|
7110
|
-
},
|
|
7111
6663
|
"node_modules/@tokenizer/inflate": {
|
|
7112
6664
|
"version": "0.4.1",
|
|
7113
6665
|
"resolved": "https://registry.npmjs.org/@tokenizer/inflate/-/inflate-0.4.1.tgz",
|
|
@@ -15675,12 +15227,12 @@
|
|
|
15675
15227
|
}
|
|
15676
15228
|
},
|
|
15677
15229
|
"node_modules/rolldown": {
|
|
15678
|
-
"version": "1.0.
|
|
15679
|
-
"resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.
|
|
15680
|
-
"integrity": "sha512-
|
|
15230
|
+
"version": "1.0.3",
|
|
15231
|
+
"resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.3.tgz",
|
|
15232
|
+
"integrity": "sha512-i00lAJ2ks1BYr7rjNjKC7BcqAS7nVfiT3QX1SI5aY+AFHblCmaUf9OE9dbdzDvW6dJxbi2ZCZiy9v3CcwOiX3g==",
|
|
15681
15233
|
"license": "MIT",
|
|
15682
15234
|
"dependencies": {
|
|
15683
|
-
"@oxc-project/types": "=0.
|
|
15235
|
+
"@oxc-project/types": "=0.133.0",
|
|
15684
15236
|
"@rolldown/pluginutils": "^1.0.0"
|
|
15685
15237
|
},
|
|
15686
15238
|
"bin": {
|
|
@@ -15690,21 +15242,21 @@
|
|
|
15690
15242
|
"node": "^20.19.0 || >=22.12.0"
|
|
15691
15243
|
},
|
|
15692
15244
|
"optionalDependencies": {
|
|
15693
|
-
"@rolldown/binding-android-arm64": "1.0.
|
|
15694
|
-
"@rolldown/binding-darwin-arm64": "1.0.
|
|
15695
|
-
"@rolldown/binding-darwin-x64": "1.0.
|
|
15696
|
-
"@rolldown/binding-freebsd-x64": "1.0.
|
|
15697
|
-
"@rolldown/binding-linux-arm-gnueabihf": "1.0.
|
|
15698
|
-
"@rolldown/binding-linux-arm64-gnu": "1.0.
|
|
15699
|
-
"@rolldown/binding-linux-arm64-musl": "1.0.
|
|
15700
|
-
"@rolldown/binding-linux-ppc64-gnu": "1.0.
|
|
15701
|
-
"@rolldown/binding-linux-s390x-gnu": "1.0.
|
|
15702
|
-
"@rolldown/binding-linux-x64-gnu": "1.0.
|
|
15703
|
-
"@rolldown/binding-linux-x64-musl": "1.0.
|
|
15704
|
-
"@rolldown/binding-openharmony-arm64": "1.0.
|
|
15705
|
-
"@rolldown/binding-wasm32-wasi": "1.0.
|
|
15706
|
-
"@rolldown/binding-win32-arm64-msvc": "1.0.
|
|
15707
|
-
"@rolldown/binding-win32-x64-msvc": "1.0.
|
|
15245
|
+
"@rolldown/binding-android-arm64": "1.0.3",
|
|
15246
|
+
"@rolldown/binding-darwin-arm64": "1.0.3",
|
|
15247
|
+
"@rolldown/binding-darwin-x64": "1.0.3",
|
|
15248
|
+
"@rolldown/binding-freebsd-x64": "1.0.3",
|
|
15249
|
+
"@rolldown/binding-linux-arm-gnueabihf": "1.0.3",
|
|
15250
|
+
"@rolldown/binding-linux-arm64-gnu": "1.0.3",
|
|
15251
|
+
"@rolldown/binding-linux-arm64-musl": "1.0.3",
|
|
15252
|
+
"@rolldown/binding-linux-ppc64-gnu": "1.0.3",
|
|
15253
|
+
"@rolldown/binding-linux-s390x-gnu": "1.0.3",
|
|
15254
|
+
"@rolldown/binding-linux-x64-gnu": "1.0.3",
|
|
15255
|
+
"@rolldown/binding-linux-x64-musl": "1.0.3",
|
|
15256
|
+
"@rolldown/binding-openharmony-arm64": "1.0.3",
|
|
15257
|
+
"@rolldown/binding-wasm32-wasi": "1.0.3",
|
|
15258
|
+
"@rolldown/binding-win32-arm64-msvc": "1.0.3",
|
|
15259
|
+
"@rolldown/binding-win32-x64-msvc": "1.0.3"
|
|
15708
15260
|
}
|
|
15709
15261
|
},
|
|
15710
15262
|
"node_modules/rollup": {
|
|
@@ -16101,15 +15653,6 @@
|
|
|
16101
15653
|
"node": ">=4"
|
|
16102
15654
|
}
|
|
16103
15655
|
},
|
|
16104
|
-
"node_modules/shadcn/node_modules/zod": {
|
|
16105
|
-
"version": "3.25.76",
|
|
16106
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
16107
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
16108
|
-
"license": "MIT",
|
|
16109
|
-
"funding": {
|
|
16110
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
16111
|
-
}
|
|
16112
|
-
},
|
|
16113
15656
|
"node_modules/shade-generator": {
|
|
16114
15657
|
"version": "1.2.7",
|
|
16115
15658
|
"resolved": "https://registry.npmjs.org/shade-generator/-/shade-generator-1.2.7.tgz",
|
|
@@ -16914,9 +16457,9 @@
|
|
|
16914
16457
|
}
|
|
16915
16458
|
},
|
|
16916
16459
|
"node_modules/tinyglobby": {
|
|
16917
|
-
"version": "0.2.
|
|
16918
|
-
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.
|
|
16919
|
-
"integrity": "sha512-
|
|
16460
|
+
"version": "0.2.17",
|
|
16461
|
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
|
|
16462
|
+
"integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
|
|
16920
16463
|
"license": "MIT",
|
|
16921
16464
|
"dependencies": {
|
|
16922
16465
|
"fdir": "^6.5.0",
|
|
@@ -17715,16 +17258,16 @@
|
|
|
17715
17258
|
}
|
|
17716
17259
|
},
|
|
17717
17260
|
"node_modules/vite": {
|
|
17718
|
-
"version": "8.0.
|
|
17719
|
-
"resolved": "https://registry.npmjs.org/vite/-/vite-8.0.
|
|
17720
|
-
"integrity": "sha512-
|
|
17261
|
+
"version": "8.0.16",
|
|
17262
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-8.0.16.tgz",
|
|
17263
|
+
"integrity": "sha512-h9bXPmJichP5fLmVQo3PyaGSDE2n3aPuomeAlVRm0JLmt4rY6zmPKd59HYI4LNW8oTK7tlTsuC7l/m7awx9Jcw==",
|
|
17721
17264
|
"license": "MIT",
|
|
17722
17265
|
"dependencies": {
|
|
17723
17266
|
"lightningcss": "^1.32.0",
|
|
17724
17267
|
"picomatch": "^4.0.4",
|
|
17725
17268
|
"postcss": "^8.5.15",
|
|
17726
|
-
"rolldown": "1.0.
|
|
17727
|
-
"tinyglobby": "^0.2.
|
|
17269
|
+
"rolldown": "1.0.3",
|
|
17270
|
+
"tinyglobby": "^0.2.17"
|
|
17728
17271
|
},
|
|
17729
17272
|
"bin": {
|
|
17730
17273
|
"vite": "bin/vite.js"
|
|
@@ -18734,9 +18277,9 @@
|
|
|
18734
18277
|
}
|
|
18735
18278
|
},
|
|
18736
18279
|
"node_modules/zod": {
|
|
18737
|
-
"version": "
|
|
18738
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-
|
|
18739
|
-
"integrity": "sha512-
|
|
18280
|
+
"version": "3.25.76",
|
|
18281
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
18282
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
18740
18283
|
"license": "MIT",
|
|
18741
18284
|
"funding": {
|
|
18742
18285
|
"url": "https://github.com/sponsors/colinhacks"
|