create-pixi-vn 2.0.11 → 2.0.13
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/tasks.json +18 -15
- package/template-react-vite-muijoy-ink/.vscode/extensions.json +2 -1
- package/template-react-vite-muijoy-ink/.vscode/settings.json +6 -1
- package/template-react-vite-muijoy-ink/.vscode/tasks.json +18 -15
- package/template-react-vite-muijoy-ink/_gitignore +1 -0
- package/template-react-vite-muijoy-ink/ink/second_part.ink +571 -0
- package/template-react-vite-muijoy-ink/ink/start.ink +214 -0
- package/template-react-vite-muijoy-ink/package-lock.json +230 -4
- package/template-react-vite-muijoy-ink/package.json +3 -1
- package/template-react-vite-muijoy-ink/src/App.tsx +25 -25
- package/template-react-vite-muijoy-ink/src/assets/index.ts +2 -4
- package/template-react-vite-muijoy-ink/src/assets/ink-manifest.gen.json +4 -1
- package/template-react-vite-muijoy-ink/src/content/ink/hashtag-commands.ts +38 -0
- package/template-react-vite-muijoy-ink/src/content/ink/text-replaces.ts +19 -0
- package/template-react-vite-muijoy-ink/src/lib/hooks/ink-hooks.tsx +12 -0
- package/template-react-vite-muijoy-ink/src/lib/i18n.ts +22 -1
- package/template-react-vite-muijoy-ink/src/pixi-vn-keys.gen.d.ts +2 -0
- package/template-react-vite-muijoy-ink/src/routes/__root.tsx +4 -0
- package/template-react-vite-muijoy-ink/vite.config.ts +6 -0
- package/template-react-vite-muijoy-ink-tauri/.assetpack.ts +9 -0
- package/template-react-vite-muijoy-ink-tauri/.vscode/extensions.json +5 -1
- package/template-react-vite-muijoy-ink-tauri/.vscode/launch.json +11 -0
- package/template-react-vite-muijoy-ink-tauri/.vscode/settings.json +6 -1
- package/template-react-vite-muijoy-ink-tauri/.vscode/tasks.json +61 -11
- package/template-react-vite-muijoy-ink-tauri/README.md +3 -3
- package/template-react-vite-muijoy-ink-tauri/_github/workflows/desktop.yml +188 -0
- package/template-react-vite-muijoy-ink-tauri/_github/workflows/mobile.yml +270 -0
- package/template-react-vite-muijoy-ink-tauri/_gitignore +11 -0
- package/template-react-vite-muijoy-ink-tauri/ink/second_part.ink +571 -0
- package/template-react-vite-muijoy-ink-tauri/ink/start.ink +214 -0
- package/template-react-vite-muijoy-ink-tauri/package-lock.json +480 -4
- package/template-react-vite-muijoy-ink-tauri/package.json +13 -2
- package/template-react-vite-muijoy-ink-tauri/src/App.tsx +25 -25
- package/template-react-vite-muijoy-ink-tauri/src/assets/index.ts +2 -4
- package/template-react-vite-muijoy-ink-tauri/src/assets/ink-manifest.gen.json +4 -1
- package/template-react-vite-muijoy-ink-tauri/src/components/menus/main-menu.tsx +16 -1
- package/template-react-vite-muijoy-ink-tauri/src/components/menus/settings/quick-menus.tsx +17 -1
- package/template-react-vite-muijoy-ink-tauri/src/components/menus/settings/system-controls.tsx +11 -1
- package/template-react-vite-muijoy-ink-tauri/src/content/ink/hashtag-commands.ts +55 -0
- package/template-react-vite-muijoy-ink-tauri/src/content/ink/text-replaces.ts +19 -0
- package/template-react-vite-muijoy-ink-tauri/src/lib/hooks/ink-hooks.tsx +12 -0
- package/template-react-vite-muijoy-ink-tauri/src/lib/hooks/quit-hooks.ts +24 -0
- package/template-react-vite-muijoy-ink-tauri/src/lib/i18n.ts +22 -1
- package/template-react-vite-muijoy-ink-tauri/src/lib/query/settings-query.ts +7 -1
- package/template-react-vite-muijoy-ink-tauri/src/lib/steam.ts +143 -0
- package/template-react-vite-muijoy-ink-tauri/src/pixi-vn-keys.gen.d.ts +2 -0
- package/template-react-vite-muijoy-ink-tauri/src/routes/__root.tsx +4 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/Cargo.toml +50 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/build.rs +46 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/capabilities/default.json +21 -0
- 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 +64 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/src/main.rs +6 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/src/steam.rs +238 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/tauri.conf.json +50 -0
- package/template-react-vite-muijoy-ink-tauri/vite.config.ts +30 -0
- package/template-react-vite-muijoy-tauri/.assetpack.ts +9 -0
- package/template-react-vite-muijoy-tauri/.vscode/extensions.json +4 -1
- package/template-react-vite-muijoy-tauri/.vscode/launch.json +11 -0
- package/template-react-vite-muijoy-tauri/.vscode/tasks.json +61 -11
- package/template-react-vite-muijoy-tauri/README.md +3 -3
- package/template-react-vite-muijoy-tauri/_github/workflows/desktop.yml +188 -0
- package/template-react-vite-muijoy-tauri/_github/workflows/mobile.yml +270 -0
- package/template-react-vite-muijoy-tauri/_gitignore +10 -0
- package/template-react-vite-muijoy-tauri/package-lock.json +250 -0
- package/template-react-vite-muijoy-tauri/package.json +10 -1
- package/template-react-vite-muijoy-tauri/src/components/menus/main-menu.tsx +16 -1
- package/template-react-vite-muijoy-tauri/src/components/menus/settings/quick-menus.tsx +17 -1
- package/template-react-vite-muijoy-tauri/src/components/menus/settings/system-controls.tsx +11 -1
- package/template-react-vite-muijoy-tauri/src/lib/hooks/quit-hooks.ts +24 -0
- package/template-react-vite-muijoy-tauri/src/lib/query/settings-query.ts +7 -1
- package/template-react-vite-muijoy-tauri/src/lib/steam.ts +143 -0
- package/template-react-vite-muijoy-tauri/src-tauri/Cargo.toml +50 -0
- package/template-react-vite-muijoy-tauri/src-tauri/build.rs +46 -0
- package/template-react-vite-muijoy-tauri/src-tauri/capabilities/default.json +21 -0
- 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 +64 -0
- package/template-react-vite-muijoy-tauri/src-tauri/src/main.rs +6 -0
- package/template-react-vite-muijoy-tauri/src-tauri/src/steam.rs +238 -0
- package/template-react-vite-muijoy-tauri/src-tauri/tauri.conf.json +50 -0
- package/template-react-vite-muijoy-tauri/vite.config.ts +24 -0
- package/template-react-vite-muijoy-ink/src/content/labels/second.label.ts +0 -1207
- package/template-react-vite-muijoy-ink/src/content/labels/start.label.ts +0 -566
- package/template-react-vite-muijoy-ink-tauri/src/content/labels/second.label.ts +0 -1207
- package/template-react-vite-muijoy-ink-tauri/src/content/labels/start.label.ts +0 -566
|
@@ -11,6 +11,7 @@
|
|
|
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",
|
|
14
15
|
"@drincs/pixi-vn-spine": "^0.2.1",
|
|
15
16
|
"@tailwindcss/vite": "^4.3.0",
|
|
16
17
|
"@tanstack/hotkeys": "^0.8.0",
|
|
@@ -26,6 +27,8 @@
|
|
|
26
27
|
"@tanstack/react-store": "latest",
|
|
27
28
|
"@tanstack/router-plugin": "latest",
|
|
28
29
|
"@tanstack/store": "latest",
|
|
30
|
+
"@tauri-apps/api": "^2",
|
|
31
|
+
"@tauri-apps/plugin-opener": "^2",
|
|
29
32
|
"@unpic/react": "^1.0.2",
|
|
30
33
|
"class-variance-authority": "^0.7.1",
|
|
31
34
|
"clsx": "^2.1.1",
|
|
@@ -52,13 +55,16 @@
|
|
|
52
55
|
"tailwind-merge": "^3.6.0",
|
|
53
56
|
"tailwindcss": "^4.3.0",
|
|
54
57
|
"tw-animate-css": "^1.4.0",
|
|
55
|
-
"vaul": "^1.1.2"
|
|
58
|
+
"vaul": "^1.1.2",
|
|
59
|
+
"zod": "^4.4.3"
|
|
56
60
|
},
|
|
57
61
|
"devDependencies": {
|
|
58
62
|
"@assetpack/core": "^1.7.0",
|
|
59
63
|
"@biomejs/biome": "latest",
|
|
60
64
|
"@tailwindcss/typography": "^0.5.19",
|
|
61
65
|
"@tanstack/devtools-vite": "latest",
|
|
66
|
+
"@tauri-apps/cli": "^2",
|
|
67
|
+
"@tauri-apps/plugin-process": "^2.3.1",
|
|
62
68
|
"@types/node": "^25.9.1",
|
|
63
69
|
"@types/react": "^19.2.15",
|
|
64
70
|
"@types/react-dom": "^19.2.3",
|
|
@@ -2140,6 +2146,43 @@
|
|
|
2140
2146
|
}
|
|
2141
2147
|
}
|
|
2142
2148
|
},
|
|
2149
|
+
"node_modules/@drincs/pixi-vn-ink": {
|
|
2150
|
+
"version": "1.0.5",
|
|
2151
|
+
"resolved": "https://registry.npmjs.org/@drincs/pixi-vn-ink/-/pixi-vn-ink-1.0.5.tgz",
|
|
2152
|
+
"integrity": "sha512-oYp4xkp2MQJHebyDfnD90U3dtSZ/9ARwMehg1OvMwR7MRbpske9NNM6OJ9ijA68j/1TPJP/LUuDPpdNmDQwcRQ==",
|
|
2153
|
+
"license": "LGPL-2.1",
|
|
2154
|
+
"workspaces": [
|
|
2155
|
+
"playground"
|
|
2156
|
+
],
|
|
2157
|
+
"dependencies": {
|
|
2158
|
+
"@drincs/pixi-vn-json": "^1.13.9"
|
|
2159
|
+
},
|
|
2160
|
+
"funding": {
|
|
2161
|
+
"url": "https://github.com/DRincs-Productions/pixi-vn?sponsor=1"
|
|
2162
|
+
},
|
|
2163
|
+
"peerDependencies": {
|
|
2164
|
+
"@drincs/pixi-vn": ">=1.8.0",
|
|
2165
|
+
"zod": ">=4.4.0"
|
|
2166
|
+
},
|
|
2167
|
+
"peerDependenciesMeta": {
|
|
2168
|
+
"vite": {
|
|
2169
|
+
"optional": true
|
|
2170
|
+
}
|
|
2171
|
+
}
|
|
2172
|
+
},
|
|
2173
|
+
"node_modules/@drincs/pixi-vn-json": {
|
|
2174
|
+
"version": "1.13.9",
|
|
2175
|
+
"resolved": "https://registry.npmjs.org/@drincs/pixi-vn-json/-/pixi-vn-json-1.13.9.tgz",
|
|
2176
|
+
"integrity": "sha512-l3pXcQBEfR/5ZBKI5Foo5hoRXGP6J73iU+84r2fB4lMIc/+oT6vuU/qws0vtf/pTJ4JR/fAU2eN1yHlY0HgpEQ==",
|
|
2177
|
+
"license": "LGPL-2.1",
|
|
2178
|
+
"funding": {
|
|
2179
|
+
"url": "https://github.com/DRincs-Productions/pixi-vn?sponsor=1"
|
|
2180
|
+
},
|
|
2181
|
+
"peerDependencies": {
|
|
2182
|
+
"@drincs/pixi-vn": ">=1.8.0",
|
|
2183
|
+
"zod": ">=4.4.0"
|
|
2184
|
+
}
|
|
2185
|
+
},
|
|
2143
2186
|
"node_modules/@drincs/pixi-vn-spine": {
|
|
2144
2187
|
"version": "0.2.1",
|
|
2145
2188
|
"resolved": "https://registry.npmjs.org/@drincs/pixi-vn-spine/-/pixi-vn-spine-0.2.1.tgz",
|
|
@@ -3231,6 +3274,16 @@
|
|
|
3231
3274
|
"node": ">=18"
|
|
3232
3275
|
}
|
|
3233
3276
|
},
|
|
3277
|
+
"node_modules/@jimp/plugin-blit/node_modules/zod": {
|
|
3278
|
+
"version": "3.25.76",
|
|
3279
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3280
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3281
|
+
"dev": true,
|
|
3282
|
+
"license": "MIT",
|
|
3283
|
+
"funding": {
|
|
3284
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3285
|
+
}
|
|
3286
|
+
},
|
|
3234
3287
|
"node_modules/@jimp/plugin-blur": {
|
|
3235
3288
|
"version": "1.6.1",
|
|
3236
3289
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-blur/-/plugin-blur-1.6.1.tgz",
|
|
@@ -3259,6 +3312,16 @@
|
|
|
3259
3312
|
"node": ">=18"
|
|
3260
3313
|
}
|
|
3261
3314
|
},
|
|
3315
|
+
"node_modules/@jimp/plugin-circle/node_modules/zod": {
|
|
3316
|
+
"version": "3.25.76",
|
|
3317
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3318
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3319
|
+
"dev": true,
|
|
3320
|
+
"license": "MIT",
|
|
3321
|
+
"funding": {
|
|
3322
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3323
|
+
}
|
|
3324
|
+
},
|
|
3262
3325
|
"node_modules/@jimp/plugin-color": {
|
|
3263
3326
|
"version": "1.6.1",
|
|
3264
3327
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-color/-/plugin-color-1.6.1.tgz",
|
|
@@ -3276,6 +3339,16 @@
|
|
|
3276
3339
|
"node": ">=18"
|
|
3277
3340
|
}
|
|
3278
3341
|
},
|
|
3342
|
+
"node_modules/@jimp/plugin-color/node_modules/zod": {
|
|
3343
|
+
"version": "3.25.76",
|
|
3344
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3345
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3346
|
+
"dev": true,
|
|
3347
|
+
"license": "MIT",
|
|
3348
|
+
"funding": {
|
|
3349
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3350
|
+
}
|
|
3351
|
+
},
|
|
3279
3352
|
"node_modules/@jimp/plugin-contain": {
|
|
3280
3353
|
"version": "1.6.1",
|
|
3281
3354
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-contain/-/plugin-contain-1.6.1.tgz",
|
|
@@ -3294,6 +3367,16 @@
|
|
|
3294
3367
|
"node": ">=18"
|
|
3295
3368
|
}
|
|
3296
3369
|
},
|
|
3370
|
+
"node_modules/@jimp/plugin-contain/node_modules/zod": {
|
|
3371
|
+
"version": "3.25.76",
|
|
3372
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3373
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3374
|
+
"dev": true,
|
|
3375
|
+
"license": "MIT",
|
|
3376
|
+
"funding": {
|
|
3377
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3378
|
+
}
|
|
3379
|
+
},
|
|
3297
3380
|
"node_modules/@jimp/plugin-cover": {
|
|
3298
3381
|
"version": "1.6.1",
|
|
3299
3382
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-cover/-/plugin-cover-1.6.1.tgz",
|
|
@@ -3311,6 +3394,16 @@
|
|
|
3311
3394
|
"node": ">=18"
|
|
3312
3395
|
}
|
|
3313
3396
|
},
|
|
3397
|
+
"node_modules/@jimp/plugin-cover/node_modules/zod": {
|
|
3398
|
+
"version": "3.25.76",
|
|
3399
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3400
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3401
|
+
"dev": true,
|
|
3402
|
+
"license": "MIT",
|
|
3403
|
+
"funding": {
|
|
3404
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3405
|
+
}
|
|
3406
|
+
},
|
|
3314
3407
|
"node_modules/@jimp/plugin-crop": {
|
|
3315
3408
|
"version": "1.6.1",
|
|
3316
3409
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-crop/-/plugin-crop-1.6.1.tgz",
|
|
@@ -3327,6 +3420,16 @@
|
|
|
3327
3420
|
"node": ">=18"
|
|
3328
3421
|
}
|
|
3329
3422
|
},
|
|
3423
|
+
"node_modules/@jimp/plugin-crop/node_modules/zod": {
|
|
3424
|
+
"version": "3.25.76",
|
|
3425
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3426
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3427
|
+
"dev": true,
|
|
3428
|
+
"license": "MIT",
|
|
3429
|
+
"funding": {
|
|
3430
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3431
|
+
}
|
|
3432
|
+
},
|
|
3330
3433
|
"node_modules/@jimp/plugin-displace": {
|
|
3331
3434
|
"version": "1.6.1",
|
|
3332
3435
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-displace/-/plugin-displace-1.6.1.tgz",
|
|
@@ -3342,6 +3445,16 @@
|
|
|
3342
3445
|
"node": ">=18"
|
|
3343
3446
|
}
|
|
3344
3447
|
},
|
|
3448
|
+
"node_modules/@jimp/plugin-displace/node_modules/zod": {
|
|
3449
|
+
"version": "3.25.76",
|
|
3450
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3451
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3452
|
+
"dev": true,
|
|
3453
|
+
"license": "MIT",
|
|
3454
|
+
"funding": {
|
|
3455
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3456
|
+
}
|
|
3457
|
+
},
|
|
3345
3458
|
"node_modules/@jimp/plugin-dither": {
|
|
3346
3459
|
"version": "1.6.1",
|
|
3347
3460
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-dither/-/plugin-dither-1.6.1.tgz",
|
|
@@ -3370,6 +3483,16 @@
|
|
|
3370
3483
|
"node": ">=18"
|
|
3371
3484
|
}
|
|
3372
3485
|
},
|
|
3486
|
+
"node_modules/@jimp/plugin-fisheye/node_modules/zod": {
|
|
3487
|
+
"version": "3.25.76",
|
|
3488
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3489
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3490
|
+
"dev": true,
|
|
3491
|
+
"license": "MIT",
|
|
3492
|
+
"funding": {
|
|
3493
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3494
|
+
}
|
|
3495
|
+
},
|
|
3373
3496
|
"node_modules/@jimp/plugin-flip": {
|
|
3374
3497
|
"version": "1.6.1",
|
|
3375
3498
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-flip/-/plugin-flip-1.6.1.tgz",
|
|
@@ -3384,6 +3507,16 @@
|
|
|
3384
3507
|
"node": ">=18"
|
|
3385
3508
|
}
|
|
3386
3509
|
},
|
|
3510
|
+
"node_modules/@jimp/plugin-flip/node_modules/zod": {
|
|
3511
|
+
"version": "3.25.76",
|
|
3512
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3513
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3514
|
+
"dev": true,
|
|
3515
|
+
"license": "MIT",
|
|
3516
|
+
"funding": {
|
|
3517
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3518
|
+
}
|
|
3519
|
+
},
|
|
3387
3520
|
"node_modules/@jimp/plugin-hash": {
|
|
3388
3521
|
"version": "1.6.1",
|
|
3389
3522
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-hash/-/plugin-hash-1.6.1.tgz",
|
|
@@ -3420,6 +3553,16 @@
|
|
|
3420
3553
|
"node": ">=18"
|
|
3421
3554
|
}
|
|
3422
3555
|
},
|
|
3556
|
+
"node_modules/@jimp/plugin-mask/node_modules/zod": {
|
|
3557
|
+
"version": "3.25.76",
|
|
3558
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3559
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3560
|
+
"dev": true,
|
|
3561
|
+
"license": "MIT",
|
|
3562
|
+
"funding": {
|
|
3563
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3564
|
+
}
|
|
3565
|
+
},
|
|
3423
3566
|
"node_modules/@jimp/plugin-print": {
|
|
3424
3567
|
"version": "1.6.1",
|
|
3425
3568
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-print/-/plugin-print-1.6.1.tgz",
|
|
@@ -3442,6 +3585,16 @@
|
|
|
3442
3585
|
"node": ">=18"
|
|
3443
3586
|
}
|
|
3444
3587
|
},
|
|
3588
|
+
"node_modules/@jimp/plugin-print/node_modules/zod": {
|
|
3589
|
+
"version": "3.25.76",
|
|
3590
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3591
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3592
|
+
"dev": true,
|
|
3593
|
+
"license": "MIT",
|
|
3594
|
+
"funding": {
|
|
3595
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3596
|
+
}
|
|
3597
|
+
},
|
|
3445
3598
|
"node_modules/@jimp/plugin-quantize": {
|
|
3446
3599
|
"version": "1.6.1",
|
|
3447
3600
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-quantize/-/plugin-quantize-1.6.1.tgz",
|
|
@@ -3456,6 +3609,16 @@
|
|
|
3456
3609
|
"node": ">=18"
|
|
3457
3610
|
}
|
|
3458
3611
|
},
|
|
3612
|
+
"node_modules/@jimp/plugin-quantize/node_modules/zod": {
|
|
3613
|
+
"version": "3.25.76",
|
|
3614
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3615
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3616
|
+
"dev": true,
|
|
3617
|
+
"license": "MIT",
|
|
3618
|
+
"funding": {
|
|
3619
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3620
|
+
}
|
|
3621
|
+
},
|
|
3459
3622
|
"node_modules/@jimp/plugin-resize": {
|
|
3460
3623
|
"version": "1.6.1",
|
|
3461
3624
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-resize/-/plugin-resize-1.6.1.tgz",
|
|
@@ -3471,6 +3634,16 @@
|
|
|
3471
3634
|
"node": ">=18"
|
|
3472
3635
|
}
|
|
3473
3636
|
},
|
|
3637
|
+
"node_modules/@jimp/plugin-resize/node_modules/zod": {
|
|
3638
|
+
"version": "3.25.76",
|
|
3639
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3640
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3641
|
+
"dev": true,
|
|
3642
|
+
"license": "MIT",
|
|
3643
|
+
"funding": {
|
|
3644
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3645
|
+
}
|
|
3646
|
+
},
|
|
3474
3647
|
"node_modules/@jimp/plugin-rotate": {
|
|
3475
3648
|
"version": "1.6.1",
|
|
3476
3649
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-rotate/-/plugin-rotate-1.6.1.tgz",
|
|
@@ -3489,6 +3662,16 @@
|
|
|
3489
3662
|
"node": ">=18"
|
|
3490
3663
|
}
|
|
3491
3664
|
},
|
|
3665
|
+
"node_modules/@jimp/plugin-rotate/node_modules/zod": {
|
|
3666
|
+
"version": "3.25.76",
|
|
3667
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3668
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3669
|
+
"dev": true,
|
|
3670
|
+
"license": "MIT",
|
|
3671
|
+
"funding": {
|
|
3672
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3673
|
+
}
|
|
3674
|
+
},
|
|
3492
3675
|
"node_modules/@jimp/plugin-threshold": {
|
|
3493
3676
|
"version": "1.6.1",
|
|
3494
3677
|
"resolved": "https://registry.npmjs.org/@jimp/plugin-threshold/-/plugin-threshold-1.6.1.tgz",
|
|
@@ -3507,6 +3690,16 @@
|
|
|
3507
3690
|
"node": ">=18"
|
|
3508
3691
|
}
|
|
3509
3692
|
},
|
|
3693
|
+
"node_modules/@jimp/plugin-threshold/node_modules/zod": {
|
|
3694
|
+
"version": "3.25.76",
|
|
3695
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3696
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3697
|
+
"dev": true,
|
|
3698
|
+
"license": "MIT",
|
|
3699
|
+
"funding": {
|
|
3700
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3701
|
+
}
|
|
3702
|
+
},
|
|
3510
3703
|
"node_modules/@jimp/types": {
|
|
3511
3704
|
"version": "1.6.1",
|
|
3512
3705
|
"resolved": "https://registry.npmjs.org/@jimp/types/-/types-1.6.1.tgz",
|
|
@@ -3520,6 +3713,16 @@
|
|
|
3520
3713
|
"node": ">=18"
|
|
3521
3714
|
}
|
|
3522
3715
|
},
|
|
3716
|
+
"node_modules/@jimp/types/node_modules/zod": {
|
|
3717
|
+
"version": "3.25.76",
|
|
3718
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
3719
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
3720
|
+
"dev": true,
|
|
3721
|
+
"license": "MIT",
|
|
3722
|
+
"funding": {
|
|
3723
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3724
|
+
}
|
|
3725
|
+
},
|
|
3523
3726
|
"node_modules/@jimp/utils": {
|
|
3524
3727
|
"version": "1.6.1",
|
|
3525
3728
|
"resolved": "https://registry.npmjs.org/@jimp/utils/-/utils-1.6.1.tgz",
|
|
@@ -6494,6 +6697,15 @@
|
|
|
6494
6697
|
"url": "https://github.com/sponsors/tannerlinsley"
|
|
6495
6698
|
}
|
|
6496
6699
|
},
|
|
6700
|
+
"node_modules/@tanstack/router-generator/node_modules/zod": {
|
|
6701
|
+
"version": "3.25.76",
|
|
6702
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
6703
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
6704
|
+
"license": "MIT",
|
|
6705
|
+
"funding": {
|
|
6706
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
6707
|
+
}
|
|
6708
|
+
},
|
|
6497
6709
|
"node_modules/@tanstack/router-plugin": {
|
|
6498
6710
|
"version": "1.167.35",
|
|
6499
6711
|
"resolved": "https://registry.npmjs.org/@tanstack/router-plugin/-/router-plugin-1.167.35.tgz",
|
|
@@ -6594,6 +6806,15 @@
|
|
|
6594
6806
|
"node": ">=8.10.0"
|
|
6595
6807
|
}
|
|
6596
6808
|
},
|
|
6809
|
+
"node_modules/@tanstack/router-plugin/node_modules/zod": {
|
|
6810
|
+
"version": "3.25.76",
|
|
6811
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
6812
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
6813
|
+
"license": "MIT",
|
|
6814
|
+
"funding": {
|
|
6815
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
6816
|
+
}
|
|
6817
|
+
},
|
|
6597
6818
|
"node_modules/@tanstack/router-utils": {
|
|
6598
6819
|
"version": "1.161.8",
|
|
6599
6820
|
"resolved": "https://registry.npmjs.org/@tanstack/router-utils/-/router-utils-1.161.8.tgz",
|
|
@@ -6660,6 +6881,252 @@
|
|
|
6660
6881
|
"url": "https://github.com/sponsors/tannerlinsley"
|
|
6661
6882
|
}
|
|
6662
6883
|
},
|
|
6884
|
+
"node_modules/@tauri-apps/api": {
|
|
6885
|
+
"version": "2.11.0",
|
|
6886
|
+
"resolved": "https://registry.npmjs.org/@tauri-apps/api/-/api-2.11.0.tgz",
|
|
6887
|
+
"integrity": "sha512-7CinYODhky9lmO23xHnUFv0Xt43fbtWMyxZcLcRBlFkcgXKuEirBvHpmtJ89YMhyeGcq20Wuc47Fa4XjyniywA==",
|
|
6888
|
+
"license": "Apache-2.0 OR MIT",
|
|
6889
|
+
"funding": {
|
|
6890
|
+
"type": "opencollective",
|
|
6891
|
+
"url": "https://opencollective.com/tauri"
|
|
6892
|
+
}
|
|
6893
|
+
},
|
|
6894
|
+
"node_modules/@tauri-apps/cli": {
|
|
6895
|
+
"version": "2.11.2",
|
|
6896
|
+
"resolved": "https://registry.npmjs.org/@tauri-apps/cli/-/cli-2.11.2.tgz",
|
|
6897
|
+
"integrity": "sha512-bk3HemqvGRoy+5D/dVMUQHKMYLglD0jVnMm/0iGMH6ufZ+p8r14m6BpIixwij3PBvZdvORUp1YifTD8QxVZ1Nw==",
|
|
6898
|
+
"dev": true,
|
|
6899
|
+
"license": "Apache-2.0 OR MIT",
|
|
6900
|
+
"bin": {
|
|
6901
|
+
"tauri": "tauri.js"
|
|
6902
|
+
},
|
|
6903
|
+
"engines": {
|
|
6904
|
+
"node": ">= 10"
|
|
6905
|
+
},
|
|
6906
|
+
"funding": {
|
|
6907
|
+
"type": "opencollective",
|
|
6908
|
+
"url": "https://opencollective.com/tauri"
|
|
6909
|
+
},
|
|
6910
|
+
"optionalDependencies": {
|
|
6911
|
+
"@tauri-apps/cli-darwin-arm64": "2.11.2",
|
|
6912
|
+
"@tauri-apps/cli-darwin-x64": "2.11.2",
|
|
6913
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "2.11.2",
|
|
6914
|
+
"@tauri-apps/cli-linux-arm64-gnu": "2.11.2",
|
|
6915
|
+
"@tauri-apps/cli-linux-arm64-musl": "2.11.2",
|
|
6916
|
+
"@tauri-apps/cli-linux-riscv64-gnu": "2.11.2",
|
|
6917
|
+
"@tauri-apps/cli-linux-x64-gnu": "2.11.2",
|
|
6918
|
+
"@tauri-apps/cli-linux-x64-musl": "2.11.2",
|
|
6919
|
+
"@tauri-apps/cli-win32-arm64-msvc": "2.11.2",
|
|
6920
|
+
"@tauri-apps/cli-win32-ia32-msvc": "2.11.2",
|
|
6921
|
+
"@tauri-apps/cli-win32-x64-msvc": "2.11.2"
|
|
6922
|
+
}
|
|
6923
|
+
},
|
|
6924
|
+
"node_modules/@tauri-apps/cli-darwin-arm64": {
|
|
6925
|
+
"version": "2.11.2",
|
|
6926
|
+
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-2.11.2.tgz",
|
|
6927
|
+
"integrity": "sha512-+4UZzLt+eOAEQCwgd+TqKgyUJMrvx+BgdXLLaqJYmPqzP+nE6YZr/hY6CWLYGQb8jFn99jEkmC6uA3tNvamA1w==",
|
|
6928
|
+
"cpu": [
|
|
6929
|
+
"arm64"
|
|
6930
|
+
],
|
|
6931
|
+
"dev": true,
|
|
6932
|
+
"license": "Apache-2.0 OR MIT",
|
|
6933
|
+
"optional": true,
|
|
6934
|
+
"os": [
|
|
6935
|
+
"darwin"
|
|
6936
|
+
],
|
|
6937
|
+
"engines": {
|
|
6938
|
+
"node": ">= 10"
|
|
6939
|
+
}
|
|
6940
|
+
},
|
|
6941
|
+
"node_modules/@tauri-apps/cli-darwin-x64": {
|
|
6942
|
+
"version": "2.11.2",
|
|
6943
|
+
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-2.11.2.tgz",
|
|
6944
|
+
"integrity": "sha512-VjYYtZUPqDMLutSfJEyxFE3Bz+DPi7c8wC3imckgvciLDZLq4qwKJxBicg0BXGhXjJsl8vKWgWRFNMPELQ+Xyg==",
|
|
6945
|
+
"cpu": [
|
|
6946
|
+
"x64"
|
|
6947
|
+
],
|
|
6948
|
+
"dev": true,
|
|
6949
|
+
"license": "Apache-2.0 OR MIT",
|
|
6950
|
+
"optional": true,
|
|
6951
|
+
"os": [
|
|
6952
|
+
"darwin"
|
|
6953
|
+
],
|
|
6954
|
+
"engines": {
|
|
6955
|
+
"node": ">= 10"
|
|
6956
|
+
}
|
|
6957
|
+
},
|
|
6958
|
+
"node_modules/@tauri-apps/cli-linux-arm-gnueabihf": {
|
|
6959
|
+
"version": "2.11.2",
|
|
6960
|
+
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-2.11.2.tgz",
|
|
6961
|
+
"integrity": "sha512-yMemD6f4i95AQriS8EazyOFzbE34yjnP16i3IOzpHGQvBoy2DjypFMFBq0NtPuITURv/cOGguRtHR5d79/9CSA==",
|
|
6962
|
+
"cpu": [
|
|
6963
|
+
"arm"
|
|
6964
|
+
],
|
|
6965
|
+
"dev": true,
|
|
6966
|
+
"license": "Apache-2.0 OR MIT",
|
|
6967
|
+
"optional": true,
|
|
6968
|
+
"os": [
|
|
6969
|
+
"linux"
|
|
6970
|
+
],
|
|
6971
|
+
"engines": {
|
|
6972
|
+
"node": ">= 10"
|
|
6973
|
+
}
|
|
6974
|
+
},
|
|
6975
|
+
"node_modules/@tauri-apps/cli-linux-arm64-gnu": {
|
|
6976
|
+
"version": "2.11.2",
|
|
6977
|
+
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-2.11.2.tgz",
|
|
6978
|
+
"integrity": "sha512-cgI91D2wL8GSgoWwZXDqt+DwnuZCP2/bz03QAE4TrhgAKIsrB4hX26W/H1EONPUUNkqrsgeCD0wU6pcNjV/5kw==",
|
|
6979
|
+
"cpu": [
|
|
6980
|
+
"arm64"
|
|
6981
|
+
],
|
|
6982
|
+
"dev": true,
|
|
6983
|
+
"license": "Apache-2.0 OR MIT",
|
|
6984
|
+
"optional": true,
|
|
6985
|
+
"os": [
|
|
6986
|
+
"linux"
|
|
6987
|
+
],
|
|
6988
|
+
"engines": {
|
|
6989
|
+
"node": ">= 10"
|
|
6990
|
+
}
|
|
6991
|
+
},
|
|
6992
|
+
"node_modules/@tauri-apps/cli-linux-arm64-musl": {
|
|
6993
|
+
"version": "2.11.2",
|
|
6994
|
+
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-2.11.2.tgz",
|
|
6995
|
+
"integrity": "sha512-X1rm0BERqAAggtYTESSgXrS3sz4Sb/OiPiz54UqISlXW+GkR3vNIGnsy/lejNmoXGVqri3Q53BCfQiclOIyRPw==",
|
|
6996
|
+
"cpu": [
|
|
6997
|
+
"arm64"
|
|
6998
|
+
],
|
|
6999
|
+
"dev": true,
|
|
7000
|
+
"license": "Apache-2.0 OR MIT",
|
|
7001
|
+
"optional": true,
|
|
7002
|
+
"os": [
|
|
7003
|
+
"linux"
|
|
7004
|
+
],
|
|
7005
|
+
"engines": {
|
|
7006
|
+
"node": ">= 10"
|
|
7007
|
+
}
|
|
7008
|
+
},
|
|
7009
|
+
"node_modules/@tauri-apps/cli-linux-riscv64-gnu": {
|
|
7010
|
+
"version": "2.11.2",
|
|
7011
|
+
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-riscv64-gnu/-/cli-linux-riscv64-gnu-2.11.2.tgz",
|
|
7012
|
+
"integrity": "sha512-usbMLJbT3KtkOrBMDVeGYNM35aTHXx38SJSzTMSqqjeUIOQ+iVPjb2yAGNAE+KqmBbAx4FOFIyMeKXx2M/JKGQ==",
|
|
7013
|
+
"cpu": [
|
|
7014
|
+
"riscv64"
|
|
7015
|
+
],
|
|
7016
|
+
"dev": true,
|
|
7017
|
+
"license": "Apache-2.0 OR MIT",
|
|
7018
|
+
"optional": true,
|
|
7019
|
+
"os": [
|
|
7020
|
+
"linux"
|
|
7021
|
+
],
|
|
7022
|
+
"engines": {
|
|
7023
|
+
"node": ">= 10"
|
|
7024
|
+
}
|
|
7025
|
+
},
|
|
7026
|
+
"node_modules/@tauri-apps/cli-linux-x64-gnu": {
|
|
7027
|
+
"version": "2.11.2",
|
|
7028
|
+
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-2.11.2.tgz",
|
|
7029
|
+
"integrity": "sha512-Ru4gwJKPG0ctVGchRGpRup4Y4lW2SSfFnrbQcyHhCliKy4g8Qz97TrUgCur4CbWyAgKxvGh3SjrkA0LDYzDGiw==",
|
|
7030
|
+
"cpu": [
|
|
7031
|
+
"x64"
|
|
7032
|
+
],
|
|
7033
|
+
"dev": true,
|
|
7034
|
+
"license": "Apache-2.0 OR MIT",
|
|
7035
|
+
"optional": true,
|
|
7036
|
+
"os": [
|
|
7037
|
+
"linux"
|
|
7038
|
+
],
|
|
7039
|
+
"engines": {
|
|
7040
|
+
"node": ">= 10"
|
|
7041
|
+
}
|
|
7042
|
+
},
|
|
7043
|
+
"node_modules/@tauri-apps/cli-linux-x64-musl": {
|
|
7044
|
+
"version": "2.11.2",
|
|
7045
|
+
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-2.11.2.tgz",
|
|
7046
|
+
"integrity": "sha512-eUm7T6clN1MMmNSRQ9gaWsQdyehQx2Gmn5hht/QUlqZQI/qcP2OJK5dnaxqwFzCr2HdsEo9ydxaqcS1oJzMvUw==",
|
|
7047
|
+
"cpu": [
|
|
7048
|
+
"x64"
|
|
7049
|
+
],
|
|
7050
|
+
"dev": true,
|
|
7051
|
+
"license": "Apache-2.0 OR MIT",
|
|
7052
|
+
"optional": true,
|
|
7053
|
+
"os": [
|
|
7054
|
+
"linux"
|
|
7055
|
+
],
|
|
7056
|
+
"engines": {
|
|
7057
|
+
"node": ">= 10"
|
|
7058
|
+
}
|
|
7059
|
+
},
|
|
7060
|
+
"node_modules/@tauri-apps/cli-win32-arm64-msvc": {
|
|
7061
|
+
"version": "2.11.2",
|
|
7062
|
+
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-arm64-msvc/-/cli-win32-arm64-msvc-2.11.2.tgz",
|
|
7063
|
+
"integrity": "sha512-HeeZW80jU+gVTOEX4X/hC6NVSAdDVXajwP5fxIZ/3z9WvUC7qrudX2GMTilYq6Dg0e0sk0XgsAJD1hZ5wPBXUA==",
|
|
7064
|
+
"cpu": [
|
|
7065
|
+
"arm64"
|
|
7066
|
+
],
|
|
7067
|
+
"dev": true,
|
|
7068
|
+
"license": "Apache-2.0 OR MIT",
|
|
7069
|
+
"optional": true,
|
|
7070
|
+
"os": [
|
|
7071
|
+
"win32"
|
|
7072
|
+
],
|
|
7073
|
+
"engines": {
|
|
7074
|
+
"node": ">= 10"
|
|
7075
|
+
}
|
|
7076
|
+
},
|
|
7077
|
+
"node_modules/@tauri-apps/cli-win32-ia32-msvc": {
|
|
7078
|
+
"version": "2.11.2",
|
|
7079
|
+
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-2.11.2.tgz",
|
|
7080
|
+
"integrity": "sha512-YhjQNZcXfbkCLyazSv1nPnJ9iRFE1wm6kc51FDbU10/Dk09io+6PAGMLjkxnX2GdM0qMnDmTjstY8mTDVvtKeA==",
|
|
7081
|
+
"cpu": [
|
|
7082
|
+
"ia32"
|
|
7083
|
+
],
|
|
7084
|
+
"dev": true,
|
|
7085
|
+
"license": "Apache-2.0 OR MIT",
|
|
7086
|
+
"optional": true,
|
|
7087
|
+
"os": [
|
|
7088
|
+
"win32"
|
|
7089
|
+
],
|
|
7090
|
+
"engines": {
|
|
7091
|
+
"node": ">= 10"
|
|
7092
|
+
}
|
|
7093
|
+
},
|
|
7094
|
+
"node_modules/@tauri-apps/cli-win32-x64-msvc": {
|
|
7095
|
+
"version": "2.11.2",
|
|
7096
|
+
"resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-2.11.2.tgz",
|
|
7097
|
+
"integrity": "sha512-d2JchlFIpZevZVReyqhQOekJmb1UH3rhZ5VX6sH3ty9ETE0TKQavpihvoScUXfKKpW6HZC0MrFGRU0ZtD+w3gA==",
|
|
7098
|
+
"cpu": [
|
|
7099
|
+
"x64"
|
|
7100
|
+
],
|
|
7101
|
+
"dev": true,
|
|
7102
|
+
"license": "Apache-2.0 OR MIT",
|
|
7103
|
+
"optional": true,
|
|
7104
|
+
"os": [
|
|
7105
|
+
"win32"
|
|
7106
|
+
],
|
|
7107
|
+
"engines": {
|
|
7108
|
+
"node": ">= 10"
|
|
7109
|
+
}
|
|
7110
|
+
},
|
|
7111
|
+
"node_modules/@tauri-apps/plugin-opener": {
|
|
7112
|
+
"version": "2.5.4",
|
|
7113
|
+
"resolved": "https://registry.npmjs.org/@tauri-apps/plugin-opener/-/plugin-opener-2.5.4.tgz",
|
|
7114
|
+
"integrity": "sha512-1HnPkb+AmgO29HBazm4uPLKB+r7zzcTBW1d0fyYp1uP+jwtpoiNDGKMMzz58SFp49nOIrxdE3aUJtT57lfO9CQ==",
|
|
7115
|
+
"license": "MIT OR Apache-2.0",
|
|
7116
|
+
"dependencies": {
|
|
7117
|
+
"@tauri-apps/api": "^2.11.0"
|
|
7118
|
+
}
|
|
7119
|
+
},
|
|
7120
|
+
"node_modules/@tauri-apps/plugin-process": {
|
|
7121
|
+
"version": "2.3.1",
|
|
7122
|
+
"resolved": "https://registry.npmjs.org/@tauri-apps/plugin-process/-/plugin-process-2.3.1.tgz",
|
|
7123
|
+
"integrity": "sha512-nCa4fGVaDL/B9ai03VyPOjfAHRHSBz5v6F/ObsB73r/dA3MHHhZtldaDMIc0V/pnUw9ehzr2iEG+XkSEyC0JJA==",
|
|
7124
|
+
"dev": true,
|
|
7125
|
+
"license": "MIT OR Apache-2.0",
|
|
7126
|
+
"dependencies": {
|
|
7127
|
+
"@tauri-apps/api": "^2.8.0"
|
|
7128
|
+
}
|
|
7129
|
+
},
|
|
6663
7130
|
"node_modules/@tokenizer/inflate": {
|
|
6664
7131
|
"version": "0.4.1",
|
|
6665
7132
|
"resolved": "https://registry.npmjs.org/@tokenizer/inflate/-/inflate-0.4.1.tgz",
|
|
@@ -15653,6 +16120,15 @@
|
|
|
15653
16120
|
"node": ">=4"
|
|
15654
16121
|
}
|
|
15655
16122
|
},
|
|
16123
|
+
"node_modules/shadcn/node_modules/zod": {
|
|
16124
|
+
"version": "3.25.76",
|
|
16125
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
16126
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
16127
|
+
"license": "MIT",
|
|
16128
|
+
"funding": {
|
|
16129
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
16130
|
+
}
|
|
16131
|
+
},
|
|
15656
16132
|
"node_modules/shade-generator": {
|
|
15657
16133
|
"version": "1.2.7",
|
|
15658
16134
|
"resolved": "https://registry.npmjs.org/shade-generator/-/shade-generator-1.2.7.tgz",
|
|
@@ -18277,9 +18753,9 @@
|
|
|
18277
18753
|
}
|
|
18278
18754
|
},
|
|
18279
18755
|
"node_modules/zod": {
|
|
18280
|
-
"version": "
|
|
18281
|
-
"resolved": "https://registry.npmjs.org/zod/-/zod-
|
|
18282
|
-
"integrity": "sha512-
|
|
18756
|
+
"version": "4.4.3",
|
|
18757
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz",
|
|
18758
|
+
"integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==",
|
|
18283
18759
|
"license": "MIT",
|
|
18284
18760
|
"funding": {
|
|
18285
18761
|
"url": "https://github.com/sponsors/colinhacks"
|