A website inspired by Last.fm that will keep track of your listening statistics
lastfm music statistics
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add inertia go code and svelte code to project.

oscar345 4c18a99d 354265bb

+2725 -13
+33 -1
internal/server/server.go
··· 2 2 3 3 import ( 4 4 "database/sql" 5 + "html/template" 5 6 "log" 6 7 "net/http" 7 8 ··· 14 15 "github.com/oscar345/keeptrack/internal/services" 15 16 "github.com/oscar345/keeptrack/internal/web/router" 16 17 "github.com/oscar345/keeptrack/pkg/database" 18 + "github.com/oscar345/keeptrack/pkg/inertia" 17 19 storagesvc "github.com/oscar345/keeptrack/pkg/storage" 18 20 "github.com/oscar345/keeptrack/pkg/utilities" 19 21 ) ··· 46 48 47 49 services := s.services(musicbrainzDB, statisticsDB) 48 50 51 + inertia := setupInertia() 52 + 49 53 router := router. 50 - New(services.Artist, services.User, s.config). 54 + New(services.Artist, services.User, inertia, s.config). 51 55 Router() 52 56 53 57 server := http.Server{ ··· 85 89 ), 86 90 } 87 91 } 92 + 93 + func setupInertia() *inertia.Inertia { 94 + tmpl, err := template.New("root").Parse(root) 95 + if err != nil { 96 + log.Fatal(err) 97 + } 98 + return inertia.New(tmpl) 99 + } 100 + 101 + const root = /*html*/ ` 102 + <!DOCTYPE html> 103 + <html lang="en"> 104 + <head> 105 + <meta charset="UTF-8"> 106 + <meta name="viewport" content="width=device-width, initial-scale=1.0"> 107 + <title>Document</title> 108 + <script src="/assets/app.js" defer type="module"></script> 109 + <link rel="stylesheet" href="/assets/app.css"> 110 + <link rel="stylesheet" href="/assets/styles.css"> 111 + <script type="application/json" data-page="app"> 112 + {{ .Data }} 113 + </script> 114 + </head> 115 + <body id="app"> 116 + 117 + </body> 118 + </html> 119 + `
+8 -4
internal/web/router/router.go
··· 1 1 package router 2 2 3 3 import ( 4 - "fmt" 5 4 "net/http" 6 5 7 6 "github.com/ggicci/httpin" ··· 16 15 "github.com/oscar345/keeptrack/internal/web/requests" 17 16 "github.com/oscar345/keeptrack/internal/web/responses" 18 17 "github.com/oscar345/keeptrack/pkg/enum" 18 + "github.com/oscar345/keeptrack/pkg/inertia" 19 19 "github.com/oscar345/keeptrack/private" 20 20 ) 21 21 22 22 type Server struct { 23 23 artistService services.ArtistService 24 24 userService services.UserService 25 + inertia *inertia.Inertia 25 26 config *config.Config 26 27 } 27 28 28 29 func New( 29 30 artistService services.ArtistService, 30 31 userService services.UserService, 32 + inertia *inertia.Inertia, 31 33 config *config.Config, 32 34 ) *Server { 33 35 return &Server{ 34 36 artistService: artistService, 35 37 userService: userService, 38 + inertia: inertia, 36 39 config: config, 37 40 } 38 41 } ··· 51 54 chimiddleware.Logger, 52 55 chimiddleware.RequestID, 53 56 chimiddleware.CleanPath, 57 + inertia.Middleware, 54 58 csrf.Protect([]byte(s.config.Server.SecretKey)), 55 59 ) 56 60 ··· 67 71 68 72 return func(r chi.Router) { 69 73 r.Get("/", func(w http.ResponseWriter, r *http.Request) { 70 - fmt.Println("err from here", pages.Index.Execute(w, map[string]any{ 71 - "title": "Index from go", 72 - })) 74 + s.inertia.Render(w, r, "Index", inertia.Props{ 75 + "title": inertia.Always("Welcome"), 76 + }) 73 77 }) 74 78 75 79 r.Get("/about", func(w http.ResponseWriter, r *http.Request) {
+34
pkg/inertia/context.go
··· 1 + package inertia 2 + 3 + import ( 4 + "context" 5 + "net/http" 6 + ) 7 + 8 + type Context struct { 9 + props Props 10 + isInertiaRequest bool 11 + isPartialRequest bool 12 + version string 13 + url string 14 + location string 15 + partialOnlyProps []string 16 + partialExceptProps []string 17 + } 18 + 19 + func Middleware(next http.Handler) http.Handler { 20 + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { 21 + ctx := Context{ 22 + props: make(Props), 23 + isInertiaRequest: isInertiaRequest(r), 24 + isPartialRequest: isPartialRequest(r), 25 + version: getVersion(r), 26 + location: getLocation(r), 27 + url: r.URL.Path, 28 + partialOnlyProps: getPartialOnlyProps(r), 29 + partialExceptProps: getPartialExceptProps(r), 30 + } 31 + 32 + next.ServeHTTP(w, r.WithContext(context.WithValue(r.Context(), ContextKey, ctx))) 33 + }) 34 + }
+31
pkg/inertia/inertia.go
··· 1 + package inertia 2 + 3 + import ( 4 + "html/template" 5 + ) 6 + 7 + type Inertia struct { 8 + Version string 9 + Template *template.Template 10 + } 11 + 12 + func New(tmpl *template.Template, options ...NewInertiaOption) *Inertia { 13 + i := &Inertia{ 14 + Template: tmpl, 15 + Version: "1", 16 + } 17 + 18 + for _, option := range options { 19 + option(i) 20 + } 21 + 22 + return i 23 + } 24 + 25 + type NewInertiaOption func(*Inertia) 26 + 27 + func WithVersion(version string) NewInertiaOption { 28 + return func(i *Inertia) { 29 + i.Version = version 30 + } 31 + }
+9
pkg/inertia/page.go
··· 1 + package inertia 2 + 3 + type Page struct { 4 + Component string `json:"component"` 5 + Props map[string]any `json:"props"` 6 + URL string `json:"url"` 7 + Version string `json:"version"` 8 + DeferredProps map[string][]string `json:"deferredProps"` 9 + }
+104
pkg/inertia/prop.go
··· 1 + package inertia 2 + 3 + import ( 4 + "context" 5 + "net/http" 6 + "slices" 7 + ) 8 + 9 + type Props map[string]Prop 10 + 11 + type Prop struct { 12 + Value func() (any, error) 13 + Lazy bool 14 + Optional bool 15 + Always bool 16 + Deferred bool 17 + DeferredKey string 18 + Default bool 19 + isError bool 20 + } 21 + 22 + func (p *Prop) ShouldDefer() bool { 23 + return true 24 + } 25 + 26 + func (p *Prop) IsReturned(ctx Context, key string, only []string, except []string) bool { 27 + isFirstLoad := !ctx.isPartialRequest 28 + 29 + if isFirstLoad && p.Deferred { 30 + return false 31 + } 32 + 33 + if slices.Contains(except, key) { 34 + return false 35 + } 36 + 37 + if slices.Contains(only, key) { 38 + return true 39 + } 40 + 41 + if p.Always || p.Default { 42 + return true 43 + } 44 + 45 + if isFirstLoad && p.Lazy { 46 + return true 47 + } 48 + 49 + return false 50 + } 51 + 52 + const ContextKey = "INERTIA_KEY" 53 + 54 + type PropOption func(*Prop) 55 + 56 + // The value is always evaluated during a request, but can be left out of the response when 57 + // the request is a partial request. In other Inertia adapters this would be the same as just 58 + // passing the value. 59 + func Default(value any, opts ...PropOption) Prop { 60 + return Prop{Value: func() (any, error) { return value, nil }, Default: true} 61 + } 62 + 63 + // The value is evaluated and returned for the first request to a page. For all partial request 64 + // to that same page, the value is not evaluated and returned unless the property is specified 65 + // in the `X-Inertia-Partial-Data` header. In other Inertia adapters this would be the same as 66 + // passing a closure. 67 + func Lazy(valuefn func() (any, error), opts ...PropOption) Prop { 68 + return Prop{Value: valuefn, Lazy: true} 69 + } 70 + 71 + // The value is only evaluated during a request when the request is a partial request. The value 72 + // is never returned during the first request from a page. 73 + func Optional(valuefn func() (any, error), opts ...PropOption) Prop { 74 + return Prop{Value: valuefn, Optional: true} 75 + } 76 + 77 + // The value is always returned during a partial request, and the first request from a page. 78 + func Always(value any) Prop { 79 + return Prop{Value: func() (any, error) { return value, nil }, Always: true} 80 + } 81 + 82 + func WithDeferredKey(key string) PropOption { 83 + return func(p *Prop) { 84 + p.DeferredKey = key 85 + } 86 + } 87 + 88 + // Besides setting the props in the handler when rendering the page, you can also set props in the 89 + // middleware. This is useful when you want to set props that are available to all pages. One can 90 + // use the SetProp function to set props. The value will be stored in the request context and will 91 + // be retrieved when rendering the page. 92 + func SetProp(r *http.Request, key string, value Prop) { 93 + props, ok := r.Context().Value(ContextKey).(Props) 94 + 95 + if !ok { 96 + props = make(Props) 97 + } 98 + 99 + props[key] = value 100 + 101 + ctx := context.WithValue(r.Context(), ContextKey, props) 102 + 103 + *r = *r.WithContext(ctx) 104 + }
+41
pkg/inertia/request.go
··· 1 + package inertia 2 + 3 + import ( 4 + "net/http" 5 + "strings" 6 + ) 7 + 8 + type InertiaHeaderKey string 9 + 10 + const ( 11 + InertiaPartialDataHeader InertiaHeaderKey = "X-Inertia-Partial-Data" 12 + InertiaPartialComponentHeader InertiaHeaderKey = "X-Inertia-Partial-Component" 13 + InertiaPartialExceptHeader InertiaHeaderKey = "X-Inertia-Partial-Except" 14 + InertiaVersionHeader InertiaHeaderKey = "X-Inertia-Version" 15 + InertiaLocationHeader InertiaHeaderKey = "X-Inertia-Location" 16 + InertiaHeader InertiaHeaderKey = "X-Inertia" 17 + ) 18 + 19 + func isInertiaRequest(r *http.Request) bool { 20 + return r.Header.Get(string(InertiaHeader)) == "true" 21 + } 22 + 23 + func getPartialOnlyProps(r *http.Request) []string { 24 + return strings.Split(r.Header.Get(string(InertiaPartialDataHeader)), ",") 25 + } 26 + 27 + func getPartialExceptProps(r *http.Request) []string { 28 + return strings.Split(r.Header.Get(string(InertiaPartialExceptHeader)), ",") 29 + } 30 + 31 + func isPartialRequest(r *http.Request) bool { 32 + return r.Header.Get(string(InertiaPartialComponentHeader)) != "" 33 + } 34 + 35 + func getVersion(r *http.Request) string { 36 + return r.Header.Get(string(InertiaVersionHeader)) 37 + } 38 + 39 + func getLocation(r *http.Request) string { 40 + return r.Header.Get(string(InertiaLocationHeader)) 41 + }
+83
pkg/inertia/response.go
··· 1 + package inertia 2 + 3 + import ( 4 + "encoding/json" 5 + "html/template" 6 + "log" 7 + "maps" 8 + "net/http" 9 + ) 10 + 11 + func (in *Inertia) Render(w http.ResponseWriter, r *http.Request, view string, props Props) { 12 + var ( 13 + properties = make(map[string]any) 14 + deferred = make(map[string][]string) 15 + errors = make(map[string][]string) 16 + ) 17 + 18 + ctx, ok := r.Context().Value(ContextKey).(Context) 19 + if !ok { 20 + log.Fatalln("Failed to get inertia context, did you forget to use inertia middleware?") 21 + } 22 + 23 + maps.Copy(ctx.props, props) 24 + props = ctx.props 25 + 26 + for key, prop := range props { 27 + if !prop.IsReturned(ctx, key, ctx.partialOnlyProps, ctx.partialExceptProps) { 28 + if prop.ShouldDefer() { 29 + deferredKey := "default" 30 + if prop.DeferredKey != "" { 31 + deferredKey = prop.DeferredKey 32 + } 33 + deferred[deferredKey] = append(deferred[deferredKey], key) 34 + } 35 + continue 36 + } 37 + 38 + value, err := prop.Value() 39 + if err != nil { 40 + errors[key] = append(errors[key], err.Error()) 41 + continue 42 + } 43 + properties[key] = value 44 + } 45 + 46 + properties["errors"] = errors 47 + 48 + page := Page{ 49 + Component: view, 50 + Props: properties, 51 + URL: ctx.url, 52 + Version: in.Version, 53 + DeferredProps: deferred, 54 + } 55 + 56 + if ctx.isInertiaRequest { 57 + renderJSON(w, page) 58 + } 59 + 60 + renderHTML(in, w, page) 61 + } 62 + 63 + func renderHTML(in *Inertia, w http.ResponseWriter, page Page) error { 64 + data, err := json.Marshal(page) 65 + 66 + if err != nil { 67 + return err 68 + } 69 + 70 + w.Header().Set("Vary", "Accept") 71 + w.WriteHeader(http.StatusOK) 72 + 73 + return in.Template.Execute(w, map[string]any{"Data": template.JS(data)}) 74 + } 75 + 76 + func renderJSON(w http.ResponseWriter, page Page) error { 77 + w.Header().Set(string(InertiaHeader), "true") 78 + w.Header().Set("Vary", "Accept") 79 + w.Header().Set("Content-Type", "application/json") 80 + w.WriteHeader(http.StatusOK) 81 + 82 + return json.NewEncoder(w).Encode(page) 83 + }
+1
pkg/inertia/scroll.go
··· 1 + package inertia
+8 -8
taskfile.yml
··· 81 81 - duckdb private/database/statistics.dev.duckdb < scripts/seeds/statistics.sql 82 82 83 83 watch:css: 84 - dir: resources 85 - cmd: npx postcss css/main.css --config css --output ../private/assets/app.css --watch 84 + dir: web 85 + cmd: npm run watch:css 86 86 87 87 build:css: 88 - dir: resources 89 - cmd: npx postcss css/main.css --config css --output ../private/assets/app.css 88 + dir: web 89 + cmd: npm run build:css 90 90 91 91 watch:js: 92 - dir: resources 93 - cmd: npx esbuild js/main.js --bundle --outfile=../private/assets/app.js --watch 92 + dir: web 93 + cmd: npm run watch:js 94 94 95 95 build:js: 96 - dir: resources 97 - cmd: npx esbuild js/main.js --bundle --outfile=../private/assets/app.js --deploy 96 + dir: web 97 + cmd: npm run build:js 98 98 99 99 build:*: 100 100 cmd: go build -o bin/{{ index .MATCH 0 }} cmd/{{ index .MATCH 0 }}/main.go
+16
web/components/layouts/Layout.svelte
··· 1 + <script lang="ts"> 2 + import type { Snippet } from "svelte"; 3 + 4 + type Props = { 5 + children: Snippet; 6 + title: string; 7 + }; 8 + 9 + let { children, title }: Props = $props(); 10 + </script> 11 + 12 + <svelte:head> 13 + <title>{title} - KeepTrack</title> 14 + </svelte:head> 15 + 16 + {@render children()}
+11
web/components/layouts/web/Layout.svelte
··· 1 + <script lang="ts"> 2 + import type { Snippet } from "svelte"; 3 + 4 + type Props = { 5 + children: Snippet; 6 + }; 7 + 8 + let { children }: Props = $props(); 9 + </script> 10 + 11 + {@render children()}
+48
web/esbuild.config.ts
··· 1 + import { type BuildOptions, build, context } from "esbuild"; 2 + import svelte from "esbuild-svelte"; 3 + import { sveltePreprocess } from "svelte-preprocess"; 4 + 5 + const args = process.argv.slice(2); 6 + let watch = args.includes("--watch"); 7 + let deploy = args.includes("--deploy"); 8 + 9 + const options: BuildOptions = { 10 + bundle: true, 11 + minify: deploy, 12 + sourcemap: false, 13 + splitting: deploy, 14 + legalComments: "none", 15 + treeShaking: deploy, 16 + format: "esm", 17 + tsconfig: "tsconfig.json", 18 + target: "firefox118", 19 + outdir: "../private/assets", 20 + alias: { 21 + $components: "./components", 22 + $lib: "./lib", 23 + $routes: "./lib/.gen/routes", 24 + $schemas: "./lib/.gen/schemas", 25 + }, 26 + chunkNames: "chunks/[name]-[hash]", 27 + entryPoints: ["lib/app.ts"], 28 + conditions: ["svelte", "browser"], 29 + plugins: [ 30 + svelte({ 31 + compilerOptions: { 32 + css: "external", 33 + dev: !deploy, 34 + experimental: { 35 + async: true, 36 + }, 37 + }, 38 + preprocess: sveltePreprocess(), 39 + }), 40 + ], 41 + }; 42 + 43 + if (watch) { 44 + const ctx = await context(options); 45 + await ctx.watch(); 46 + } else { 47 + await build(options); 48 + }
+21
web/lib/app.ts
··· 1 + import { default as Base } from "$components/layouts/Layout.svelte"; 2 + import { default as Web } from "$components/layouts/web/Layout.svelte"; 3 + import { createInertiaApp } from "@inertiajs/svelte"; 4 + import { mount } from "svelte"; 5 + 6 + createInertiaApp({ 7 + id: "app", 8 + resolve: async (name) => { 9 + let page = await import(`../views/${name}.svelte`); 10 + return { default: page.default, layout: page.layout || [Base, Web] }; 11 + }, 12 + setup: ({ el, App, props }) => { 13 + mount(App, { target: el, props }); 14 + }, 15 + defaults: { 16 + future: { 17 + useDialogForErrorModal: true, 18 + useScriptElementForInitialPage: true, 19 + }, 20 + }, 21 + });
web/lib/types.ts

This is a binary file and will not be displayed.

+2216
web/package-lock.json
··· 1 + { 2 + "name": "web", 3 + "lockfileVersion": 3, 4 + "requires": true, 5 + "packages": { 6 + "": { 7 + "dependencies": { 8 + "@inertiajs/svelte": "2.3.8", 9 + "svelte": "^5.46.3", 10 + "tailwindcss": "^4.1.18" 11 + }, 12 + "devDependencies": { 13 + "@tailwindcss/cli": "^4.1.18", 14 + "@types/node": "^25.0.3", 15 + "esbuild": "0.27.2", 16 + "esbuild-svelte": "^0.9.4", 17 + "svelte-preprocess": "^6.0.3", 18 + "typescript": "^5.6.3" 19 + } 20 + }, 21 + "node_modules/@esbuild/aix-ppc64": { 22 + "version": "0.27.2", 23 + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.2.tgz", 24 + "integrity": "sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==", 25 + "cpu": [ 26 + "ppc64" 27 + ], 28 + "dev": true, 29 + "license": "MIT", 30 + "optional": true, 31 + "os": [ 32 + "aix" 33 + ], 34 + "engines": { 35 + "node": ">=18" 36 + } 37 + }, 38 + "node_modules/@esbuild/android-arm": { 39 + "version": "0.27.2", 40 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.2.tgz", 41 + "integrity": "sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==", 42 + "cpu": [ 43 + "arm" 44 + ], 45 + "dev": true, 46 + "license": "MIT", 47 + "optional": true, 48 + "os": [ 49 + "android" 50 + ], 51 + "engines": { 52 + "node": ">=18" 53 + } 54 + }, 55 + "node_modules/@esbuild/android-arm64": { 56 + "version": "0.27.2", 57 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.2.tgz", 58 + "integrity": "sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==", 59 + "cpu": [ 60 + "arm64" 61 + ], 62 + "dev": true, 63 + "license": "MIT", 64 + "optional": true, 65 + "os": [ 66 + "android" 67 + ], 68 + "engines": { 69 + "node": ">=18" 70 + } 71 + }, 72 + "node_modules/@esbuild/android-x64": { 73 + "version": "0.27.2", 74 + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.2.tgz", 75 + "integrity": "sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==", 76 + "cpu": [ 77 + "x64" 78 + ], 79 + "dev": true, 80 + "license": "MIT", 81 + "optional": true, 82 + "os": [ 83 + "android" 84 + ], 85 + "engines": { 86 + "node": ">=18" 87 + } 88 + }, 89 + "node_modules/@esbuild/darwin-arm64": { 90 + "version": "0.27.2", 91 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.2.tgz", 92 + "integrity": "sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==", 93 + "cpu": [ 94 + "arm64" 95 + ], 96 + "dev": true, 97 + "license": "MIT", 98 + "optional": true, 99 + "os": [ 100 + "darwin" 101 + ], 102 + "engines": { 103 + "node": ">=18" 104 + } 105 + }, 106 + "node_modules/@esbuild/darwin-x64": { 107 + "version": "0.27.2", 108 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.2.tgz", 109 + "integrity": "sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==", 110 + "cpu": [ 111 + "x64" 112 + ], 113 + "dev": true, 114 + "license": "MIT", 115 + "optional": true, 116 + "os": [ 117 + "darwin" 118 + ], 119 + "engines": { 120 + "node": ">=18" 121 + } 122 + }, 123 + "node_modules/@esbuild/freebsd-arm64": { 124 + "version": "0.27.2", 125 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.2.tgz", 126 + "integrity": "sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==", 127 + "cpu": [ 128 + "arm64" 129 + ], 130 + "dev": true, 131 + "license": "MIT", 132 + "optional": true, 133 + "os": [ 134 + "freebsd" 135 + ], 136 + "engines": { 137 + "node": ">=18" 138 + } 139 + }, 140 + "node_modules/@esbuild/freebsd-x64": { 141 + "version": "0.27.2", 142 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.2.tgz", 143 + "integrity": "sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==", 144 + "cpu": [ 145 + "x64" 146 + ], 147 + "dev": true, 148 + "license": "MIT", 149 + "optional": true, 150 + "os": [ 151 + "freebsd" 152 + ], 153 + "engines": { 154 + "node": ">=18" 155 + } 156 + }, 157 + "node_modules/@esbuild/linux-arm": { 158 + "version": "0.27.2", 159 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.2.tgz", 160 + "integrity": "sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==", 161 + "cpu": [ 162 + "arm" 163 + ], 164 + "dev": true, 165 + "license": "MIT", 166 + "optional": true, 167 + "os": [ 168 + "linux" 169 + ], 170 + "engines": { 171 + "node": ">=18" 172 + } 173 + }, 174 + "node_modules/@esbuild/linux-arm64": { 175 + "version": "0.27.2", 176 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.2.tgz", 177 + "integrity": "sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==", 178 + "cpu": [ 179 + "arm64" 180 + ], 181 + "dev": true, 182 + "license": "MIT", 183 + "optional": true, 184 + "os": [ 185 + "linux" 186 + ], 187 + "engines": { 188 + "node": ">=18" 189 + } 190 + }, 191 + "node_modules/@esbuild/linux-ia32": { 192 + "version": "0.27.2", 193 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.2.tgz", 194 + "integrity": "sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==", 195 + "cpu": [ 196 + "ia32" 197 + ], 198 + "dev": true, 199 + "license": "MIT", 200 + "optional": true, 201 + "os": [ 202 + "linux" 203 + ], 204 + "engines": { 205 + "node": ">=18" 206 + } 207 + }, 208 + "node_modules/@esbuild/linux-loong64": { 209 + "version": "0.27.2", 210 + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.2.tgz", 211 + "integrity": "sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==", 212 + "cpu": [ 213 + "loong64" 214 + ], 215 + "dev": true, 216 + "license": "MIT", 217 + "optional": true, 218 + "os": [ 219 + "linux" 220 + ], 221 + "engines": { 222 + "node": ">=18" 223 + } 224 + }, 225 + "node_modules/@esbuild/linux-mips64el": { 226 + "version": "0.27.2", 227 + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.2.tgz", 228 + "integrity": "sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==", 229 + "cpu": [ 230 + "mips64el" 231 + ], 232 + "dev": true, 233 + "license": "MIT", 234 + "optional": true, 235 + "os": [ 236 + "linux" 237 + ], 238 + "engines": { 239 + "node": ">=18" 240 + } 241 + }, 242 + "node_modules/@esbuild/linux-ppc64": { 243 + "version": "0.27.2", 244 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.2.tgz", 245 + "integrity": "sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==", 246 + "cpu": [ 247 + "ppc64" 248 + ], 249 + "dev": true, 250 + "license": "MIT", 251 + "optional": true, 252 + "os": [ 253 + "linux" 254 + ], 255 + "engines": { 256 + "node": ">=18" 257 + } 258 + }, 259 + "node_modules/@esbuild/linux-riscv64": { 260 + "version": "0.27.2", 261 + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.2.tgz", 262 + "integrity": "sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==", 263 + "cpu": [ 264 + "riscv64" 265 + ], 266 + "dev": true, 267 + "license": "MIT", 268 + "optional": true, 269 + "os": [ 270 + "linux" 271 + ], 272 + "engines": { 273 + "node": ">=18" 274 + } 275 + }, 276 + "node_modules/@esbuild/linux-s390x": { 277 + "version": "0.27.2", 278 + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.2.tgz", 279 + "integrity": "sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==", 280 + "cpu": [ 281 + "s390x" 282 + ], 283 + "dev": true, 284 + "license": "MIT", 285 + "optional": true, 286 + "os": [ 287 + "linux" 288 + ], 289 + "engines": { 290 + "node": ">=18" 291 + } 292 + }, 293 + "node_modules/@esbuild/linux-x64": { 294 + "version": "0.27.2", 295 + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.2.tgz", 296 + "integrity": "sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==", 297 + "cpu": [ 298 + "x64" 299 + ], 300 + "dev": true, 301 + "license": "MIT", 302 + "optional": true, 303 + "os": [ 304 + "linux" 305 + ], 306 + "engines": { 307 + "node": ">=18" 308 + } 309 + }, 310 + "node_modules/@esbuild/netbsd-arm64": { 311 + "version": "0.27.2", 312 + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.2.tgz", 313 + "integrity": "sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==", 314 + "cpu": [ 315 + "arm64" 316 + ], 317 + "dev": true, 318 + "license": "MIT", 319 + "optional": true, 320 + "os": [ 321 + "netbsd" 322 + ], 323 + "engines": { 324 + "node": ">=18" 325 + } 326 + }, 327 + "node_modules/@esbuild/netbsd-x64": { 328 + "version": "0.27.2", 329 + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.2.tgz", 330 + "integrity": "sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==", 331 + "cpu": [ 332 + "x64" 333 + ], 334 + "dev": true, 335 + "license": "MIT", 336 + "optional": true, 337 + "os": [ 338 + "netbsd" 339 + ], 340 + "engines": { 341 + "node": ">=18" 342 + } 343 + }, 344 + "node_modules/@esbuild/openbsd-arm64": { 345 + "version": "0.27.2", 346 + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.2.tgz", 347 + "integrity": "sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==", 348 + "cpu": [ 349 + "arm64" 350 + ], 351 + "dev": true, 352 + "license": "MIT", 353 + "optional": true, 354 + "os": [ 355 + "openbsd" 356 + ], 357 + "engines": { 358 + "node": ">=18" 359 + } 360 + }, 361 + "node_modules/@esbuild/openbsd-x64": { 362 + "version": "0.27.2", 363 + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.2.tgz", 364 + "integrity": "sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==", 365 + "cpu": [ 366 + "x64" 367 + ], 368 + "dev": true, 369 + "license": "MIT", 370 + "optional": true, 371 + "os": [ 372 + "openbsd" 373 + ], 374 + "engines": { 375 + "node": ">=18" 376 + } 377 + }, 378 + "node_modules/@esbuild/openharmony-arm64": { 379 + "version": "0.27.2", 380 + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.2.tgz", 381 + "integrity": "sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==", 382 + "cpu": [ 383 + "arm64" 384 + ], 385 + "dev": true, 386 + "license": "MIT", 387 + "optional": true, 388 + "os": [ 389 + "openharmony" 390 + ], 391 + "engines": { 392 + "node": ">=18" 393 + } 394 + }, 395 + "node_modules/@esbuild/sunos-x64": { 396 + "version": "0.27.2", 397 + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.2.tgz", 398 + "integrity": "sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==", 399 + "cpu": [ 400 + "x64" 401 + ], 402 + "dev": true, 403 + "license": "MIT", 404 + "optional": true, 405 + "os": [ 406 + "sunos" 407 + ], 408 + "engines": { 409 + "node": ">=18" 410 + } 411 + }, 412 + "node_modules/@esbuild/win32-arm64": { 413 + "version": "0.27.2", 414 + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.2.tgz", 415 + "integrity": "sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==", 416 + "cpu": [ 417 + "arm64" 418 + ], 419 + "dev": true, 420 + "license": "MIT", 421 + "optional": true, 422 + "os": [ 423 + "win32" 424 + ], 425 + "engines": { 426 + "node": ">=18" 427 + } 428 + }, 429 + "node_modules/@esbuild/win32-ia32": { 430 + "version": "0.27.2", 431 + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.2.tgz", 432 + "integrity": "sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==", 433 + "cpu": [ 434 + "ia32" 435 + ], 436 + "dev": true, 437 + "license": "MIT", 438 + "optional": true, 439 + "os": [ 440 + "win32" 441 + ], 442 + "engines": { 443 + "node": ">=18" 444 + } 445 + }, 446 + "node_modules/@esbuild/win32-x64": { 447 + "version": "0.27.2", 448 + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.2.tgz", 449 + "integrity": "sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==", 450 + "cpu": [ 451 + "x64" 452 + ], 453 + "dev": true, 454 + "license": "MIT", 455 + "optional": true, 456 + "os": [ 457 + "win32" 458 + ], 459 + "engines": { 460 + "node": ">=18" 461 + } 462 + }, 463 + "node_modules/@inertiajs/core": { 464 + "version": "2.3.8", 465 + "resolved": "https://registry.npmjs.org/@inertiajs/core/-/core-2.3.8.tgz", 466 + "integrity": "sha512-WIF/ea9FH+yR/nLLrOX9TNN20X2pcHZBLQJYCLZ/oLMaS6GSlnMtHZv5GtKNjmIpSiMvg2PiAqtDF/mvbnr+rQ==", 467 + "license": "MIT", 468 + "dependencies": { 469 + "@types/lodash-es": "^4.17.12", 470 + "axios": "^1.13.2", 471 + "laravel-precognition": "^1.0.0", 472 + "lodash-es": "^4.17.21", 473 + "qs": "^6.14.1" 474 + } 475 + }, 476 + "node_modules/@inertiajs/svelte": { 477 + "version": "2.3.8", 478 + "resolved": "https://registry.npmjs.org/@inertiajs/svelte/-/svelte-2.3.8.tgz", 479 + "integrity": "sha512-BbwAvhv9ltvg70K6tnfPUjt6qKV2Mk/doiquJeIHnnDyDAq10XuaI5221v2aZQH0nAl38izWwkYXsNIlSu5G1Q==", 480 + "license": "MIT", 481 + "dependencies": { 482 + "@inertiajs/core": "2.3.8", 483 + "@types/lodash-es": "^4.17.12", 484 + "laravel-precognition": "^1.0.0", 485 + "lodash-es": "^4.17.21" 486 + }, 487 + "peerDependencies": { 488 + "svelte": "^4.0.0 || ^5.0.0" 489 + } 490 + }, 491 + "node_modules/@jridgewell/gen-mapping": { 492 + "version": "0.3.13", 493 + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", 494 + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", 495 + "license": "MIT", 496 + "dependencies": { 497 + "@jridgewell/sourcemap-codec": "^1.5.0", 498 + "@jridgewell/trace-mapping": "^0.3.24" 499 + } 500 + }, 501 + "node_modules/@jridgewell/remapping": { 502 + "version": "2.3.5", 503 + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", 504 + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", 505 + "license": "MIT", 506 + "dependencies": { 507 + "@jridgewell/gen-mapping": "^0.3.5", 508 + "@jridgewell/trace-mapping": "^0.3.24" 509 + } 510 + }, 511 + "node_modules/@jridgewell/resolve-uri": { 512 + "version": "3.1.2", 513 + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 514 + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 515 + "license": "MIT", 516 + "engines": { 517 + "node": ">=6.0.0" 518 + } 519 + }, 520 + "node_modules/@jridgewell/sourcemap-codec": { 521 + "version": "1.5.5", 522 + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", 523 + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", 524 + "license": "MIT" 525 + }, 526 + "node_modules/@jridgewell/trace-mapping": { 527 + "version": "0.3.31", 528 + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", 529 + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", 530 + "license": "MIT", 531 + "dependencies": { 532 + "@jridgewell/resolve-uri": "^3.1.0", 533 + "@jridgewell/sourcemap-codec": "^1.4.14" 534 + } 535 + }, 536 + "node_modules/@parcel/watcher": { 537 + "version": "2.5.4", 538 + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.4.tgz", 539 + "integrity": "sha512-WYa2tUVV5HiArWPB3ydlOc4R2ivq0IDrlqhMi3l7mVsFEXNcTfxYFPIHXHXIh/ca/y/V5N4E1zecyxdIBjYnkQ==", 540 + "dev": true, 541 + "hasInstallScript": true, 542 + "license": "MIT", 543 + "dependencies": { 544 + "detect-libc": "^2.0.3", 545 + "is-glob": "^4.0.3", 546 + "node-addon-api": "^7.0.0", 547 + "picomatch": "^4.0.3" 548 + }, 549 + "engines": { 550 + "node": ">= 10.0.0" 551 + }, 552 + "funding": { 553 + "type": "opencollective", 554 + "url": "https://opencollective.com/parcel" 555 + }, 556 + "optionalDependencies": { 557 + "@parcel/watcher-android-arm64": "2.5.4", 558 + "@parcel/watcher-darwin-arm64": "2.5.4", 559 + "@parcel/watcher-darwin-x64": "2.5.4", 560 + "@parcel/watcher-freebsd-x64": "2.5.4", 561 + "@parcel/watcher-linux-arm-glibc": "2.5.4", 562 + "@parcel/watcher-linux-arm-musl": "2.5.4", 563 + "@parcel/watcher-linux-arm64-glibc": "2.5.4", 564 + "@parcel/watcher-linux-arm64-musl": "2.5.4", 565 + "@parcel/watcher-linux-x64-glibc": "2.5.4", 566 + "@parcel/watcher-linux-x64-musl": "2.5.4", 567 + "@parcel/watcher-win32-arm64": "2.5.4", 568 + "@parcel/watcher-win32-ia32": "2.5.4", 569 + "@parcel/watcher-win32-x64": "2.5.4" 570 + } 571 + }, 572 + "node_modules/@parcel/watcher-android-arm64": { 573 + "version": "2.5.4", 574 + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.4.tgz", 575 + "integrity": "sha512-hoh0vx4v+b3BNI7Cjoy2/B0ARqcwVNrzN/n7DLq9ZB4I3lrsvhrkCViJyfTj/Qi5xM9YFiH4AmHGK6pgH1ss7g==", 576 + "cpu": [ 577 + "arm64" 578 + ], 579 + "dev": true, 580 + "license": "MIT", 581 + "optional": true, 582 + "os": [ 583 + "android" 584 + ], 585 + "engines": { 586 + "node": ">= 10.0.0" 587 + }, 588 + "funding": { 589 + "type": "opencollective", 590 + "url": "https://opencollective.com/parcel" 591 + } 592 + }, 593 + "node_modules/@parcel/watcher-darwin-arm64": { 594 + "version": "2.5.4", 595 + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.4.tgz", 596 + "integrity": "sha512-kphKy377pZiWpAOyTgQYPE5/XEKVMaj6VUjKT5VkNyUJlr2qZAn8gIc7CPzx+kbhvqHDT9d7EqdOqRXT6vk0zw==", 597 + "cpu": [ 598 + "arm64" 599 + ], 600 + "dev": true, 601 + "license": "MIT", 602 + "optional": true, 603 + "os": [ 604 + "darwin" 605 + ], 606 + "engines": { 607 + "node": ">= 10.0.0" 608 + }, 609 + "funding": { 610 + "type": "opencollective", 611 + "url": "https://opencollective.com/parcel" 612 + } 613 + }, 614 + "node_modules/@parcel/watcher-darwin-x64": { 615 + "version": "2.5.4", 616 + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.4.tgz", 617 + "integrity": "sha512-UKaQFhCtNJW1A9YyVz3Ju7ydf6QgrpNQfRZ35wNKUhTQ3dxJ/3MULXN5JN/0Z80V/KUBDGa3RZaKq1EQT2a2gg==", 618 + "cpu": [ 619 + "x64" 620 + ], 621 + "dev": true, 622 + "license": "MIT", 623 + "optional": true, 624 + "os": [ 625 + "darwin" 626 + ], 627 + "engines": { 628 + "node": ">= 10.0.0" 629 + }, 630 + "funding": { 631 + "type": "opencollective", 632 + "url": "https://opencollective.com/parcel" 633 + } 634 + }, 635 + "node_modules/@parcel/watcher-freebsd-x64": { 636 + "version": "2.5.4", 637 + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.4.tgz", 638 + "integrity": "sha512-Dib0Wv3Ow/m2/ttvLdeI2DBXloO7t3Z0oCp4bAb2aqyqOjKPPGrg10pMJJAQ7tt8P4V2rwYwywkDhUia/FgS+Q==", 639 + "cpu": [ 640 + "x64" 641 + ], 642 + "dev": true, 643 + "license": "MIT", 644 + "optional": true, 645 + "os": [ 646 + "freebsd" 647 + ], 648 + "engines": { 649 + "node": ">= 10.0.0" 650 + }, 651 + "funding": { 652 + "type": "opencollective", 653 + "url": "https://opencollective.com/parcel" 654 + } 655 + }, 656 + "node_modules/@parcel/watcher-linux-arm-glibc": { 657 + "version": "2.5.4", 658 + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.4.tgz", 659 + "integrity": "sha512-I5Vb769pdf7Q7Sf4KNy8Pogl/URRCKu9ImMmnVKYayhynuyGYMzuI4UOWnegQNa2sGpsPSbzDsqbHNMyeyPCgw==", 660 + "cpu": [ 661 + "arm" 662 + ], 663 + "dev": true, 664 + "license": "MIT", 665 + "optional": true, 666 + "os": [ 667 + "linux" 668 + ], 669 + "engines": { 670 + "node": ">= 10.0.0" 671 + }, 672 + "funding": { 673 + "type": "opencollective", 674 + "url": "https://opencollective.com/parcel" 675 + } 676 + }, 677 + "node_modules/@parcel/watcher-linux-arm-musl": { 678 + "version": "2.5.4", 679 + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.4.tgz", 680 + "integrity": "sha512-kGO8RPvVrcAotV4QcWh8kZuHr9bXi9a3bSZw7kFarYR0+fGliU7hd/zevhjw8fnvIKG3J9EO5G6sXNGCSNMYPQ==", 681 + "cpu": [ 682 + "arm" 683 + ], 684 + "dev": true, 685 + "license": "MIT", 686 + "optional": true, 687 + "os": [ 688 + "linux" 689 + ], 690 + "engines": { 691 + "node": ">= 10.0.0" 692 + }, 693 + "funding": { 694 + "type": "opencollective", 695 + "url": "https://opencollective.com/parcel" 696 + } 697 + }, 698 + "node_modules/@parcel/watcher-linux-arm64-glibc": { 699 + "version": "2.5.4", 700 + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.4.tgz", 701 + "integrity": "sha512-KU75aooXhqGFY2W5/p8DYYHt4hrjHZod8AhcGAmhzPn/etTa+lYCDB2b1sJy3sWJ8ahFVTdy+EbqSBvMx3iFlw==", 702 + "cpu": [ 703 + "arm64" 704 + ], 705 + "dev": true, 706 + "license": "MIT", 707 + "optional": true, 708 + "os": [ 709 + "linux" 710 + ], 711 + "engines": { 712 + "node": ">= 10.0.0" 713 + }, 714 + "funding": { 715 + "type": "opencollective", 716 + "url": "https://opencollective.com/parcel" 717 + } 718 + }, 719 + "node_modules/@parcel/watcher-linux-arm64-musl": { 720 + "version": "2.5.4", 721 + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.4.tgz", 722 + "integrity": "sha512-Qx8uNiIekVutnzbVdrgSanM+cbpDD3boB1f8vMtnuG5Zau4/bdDbXyKwIn0ToqFhIuob73bcxV9NwRm04/hzHQ==", 723 + "cpu": [ 724 + "arm64" 725 + ], 726 + "dev": true, 727 + "license": "MIT", 728 + "optional": true, 729 + "os": [ 730 + "linux" 731 + ], 732 + "engines": { 733 + "node": ">= 10.0.0" 734 + }, 735 + "funding": { 736 + "type": "opencollective", 737 + "url": "https://opencollective.com/parcel" 738 + } 739 + }, 740 + "node_modules/@parcel/watcher-linux-x64-glibc": { 741 + "version": "2.5.4", 742 + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.4.tgz", 743 + "integrity": "sha512-UYBQvhYmgAv61LNUn24qGQdjtycFBKSK3EXr72DbJqX9aaLbtCOO8+1SkKhD/GNiJ97ExgcHBrukcYhVjrnogA==", 744 + "cpu": [ 745 + "x64" 746 + ], 747 + "dev": true, 748 + "license": "MIT", 749 + "optional": true, 750 + "os": [ 751 + "linux" 752 + ], 753 + "engines": { 754 + "node": ">= 10.0.0" 755 + }, 756 + "funding": { 757 + "type": "opencollective", 758 + "url": "https://opencollective.com/parcel" 759 + } 760 + }, 761 + "node_modules/@parcel/watcher-linux-x64-musl": { 762 + "version": "2.5.4", 763 + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.4.tgz", 764 + "integrity": "sha512-YoRWCVgxv8akZrMhdyVi6/TyoeeMkQ0PGGOf2E4omODrvd1wxniXP+DBynKoHryStks7l+fDAMUBRzqNHrVOpg==", 765 + "cpu": [ 766 + "x64" 767 + ], 768 + "dev": true, 769 + "license": "MIT", 770 + "optional": true, 771 + "os": [ 772 + "linux" 773 + ], 774 + "engines": { 775 + "node": ">= 10.0.0" 776 + }, 777 + "funding": { 778 + "type": "opencollective", 779 + "url": "https://opencollective.com/parcel" 780 + } 781 + }, 782 + "node_modules/@parcel/watcher-win32-arm64": { 783 + "version": "2.5.4", 784 + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.4.tgz", 785 + "integrity": "sha512-iby+D/YNXWkiQNYcIhg8P5hSjzXEHaQrk2SLrWOUD7VeC4Ohu0WQvmV+HDJokZVJ2UjJ4AGXW3bx7Lls9Ln4TQ==", 786 + "cpu": [ 787 + "arm64" 788 + ], 789 + "dev": true, 790 + "license": "MIT", 791 + "optional": true, 792 + "os": [ 793 + "win32" 794 + ], 795 + "engines": { 796 + "node": ">= 10.0.0" 797 + }, 798 + "funding": { 799 + "type": "opencollective", 800 + "url": "https://opencollective.com/parcel" 801 + } 802 + }, 803 + "node_modules/@parcel/watcher-win32-ia32": { 804 + "version": "2.5.4", 805 + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.4.tgz", 806 + "integrity": "sha512-vQN+KIReG0a2ZDpVv8cgddlf67J8hk1WfZMMP7sMeZmJRSmEax5xNDNWKdgqSe2brOKTQQAs3aCCUal2qBHAyg==", 807 + "cpu": [ 808 + "ia32" 809 + ], 810 + "dev": true, 811 + "license": "MIT", 812 + "optional": true, 813 + "os": [ 814 + "win32" 815 + ], 816 + "engines": { 817 + "node": ">= 10.0.0" 818 + }, 819 + "funding": { 820 + "type": "opencollective", 821 + "url": "https://opencollective.com/parcel" 822 + } 823 + }, 824 + "node_modules/@parcel/watcher-win32-x64": { 825 + "version": "2.5.4", 826 + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.4.tgz", 827 + "integrity": "sha512-3A6efb6BOKwyw7yk9ro2vus2YTt2nvcd56AuzxdMiVOxL9umDyN5PKkKfZ/gZ9row41SjVmTVQNWQhaRRGpOKw==", 828 + "cpu": [ 829 + "x64" 830 + ], 831 + "dev": true, 832 + "license": "MIT", 833 + "optional": true, 834 + "os": [ 835 + "win32" 836 + ], 837 + "engines": { 838 + "node": ">= 10.0.0" 839 + }, 840 + "funding": { 841 + "type": "opencollective", 842 + "url": "https://opencollective.com/parcel" 843 + } 844 + }, 845 + "node_modules/@sveltejs/acorn-typescript": { 846 + "version": "1.0.8", 847 + "resolved": "https://registry.npmjs.org/@sveltejs/acorn-typescript/-/acorn-typescript-1.0.8.tgz", 848 + "integrity": "sha512-esgN+54+q0NjB0Y/4BomT9samII7jGwNy/2a3wNZbT2A2RpmXsXwUt24LvLhx6jUq2gVk4cWEvcRO6MFQbOfNA==", 849 + "license": "MIT", 850 + "peerDependencies": { 851 + "acorn": "^8.9.0" 852 + } 853 + }, 854 + "node_modules/@tailwindcss/cli": { 855 + "version": "4.1.18", 856 + "resolved": "https://registry.npmjs.org/@tailwindcss/cli/-/cli-4.1.18.tgz", 857 + "integrity": "sha512-sMZ+lZbDyxwjD2E0L7oRUjJ01Ffjtme5OtjvvnC+cV4CEDcbqzbp25TCpxHj6kWLU9+DlqJOiNgSOgctC2aZmg==", 858 + "dev": true, 859 + "license": "MIT", 860 + "dependencies": { 861 + "@parcel/watcher": "^2.5.1", 862 + "@tailwindcss/node": "4.1.18", 863 + "@tailwindcss/oxide": "4.1.18", 864 + "enhanced-resolve": "^5.18.3", 865 + "mri": "^1.2.0", 866 + "picocolors": "^1.1.1", 867 + "tailwindcss": "4.1.18" 868 + }, 869 + "bin": { 870 + "tailwindcss": "dist/index.mjs" 871 + } 872 + }, 873 + "node_modules/@tailwindcss/node": { 874 + "version": "4.1.18", 875 + "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.18.tgz", 876 + "integrity": "sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==", 877 + "dev": true, 878 + "license": "MIT", 879 + "dependencies": { 880 + "@jridgewell/remapping": "^2.3.4", 881 + "enhanced-resolve": "^5.18.3", 882 + "jiti": "^2.6.1", 883 + "lightningcss": "1.30.2", 884 + "magic-string": "^0.30.21", 885 + "source-map-js": "^1.2.1", 886 + "tailwindcss": "4.1.18" 887 + } 888 + }, 889 + "node_modules/@tailwindcss/oxide": { 890 + "version": "4.1.18", 891 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.18.tgz", 892 + "integrity": "sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A==", 893 + "dev": true, 894 + "license": "MIT", 895 + "engines": { 896 + "node": ">= 10" 897 + }, 898 + "optionalDependencies": { 899 + "@tailwindcss/oxide-android-arm64": "4.1.18", 900 + "@tailwindcss/oxide-darwin-arm64": "4.1.18", 901 + "@tailwindcss/oxide-darwin-x64": "4.1.18", 902 + "@tailwindcss/oxide-freebsd-x64": "4.1.18", 903 + "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.18", 904 + "@tailwindcss/oxide-linux-arm64-gnu": "4.1.18", 905 + "@tailwindcss/oxide-linux-arm64-musl": "4.1.18", 906 + "@tailwindcss/oxide-linux-x64-gnu": "4.1.18", 907 + "@tailwindcss/oxide-linux-x64-musl": "4.1.18", 908 + "@tailwindcss/oxide-wasm32-wasi": "4.1.18", 909 + "@tailwindcss/oxide-win32-arm64-msvc": "4.1.18", 910 + "@tailwindcss/oxide-win32-x64-msvc": "4.1.18" 911 + } 912 + }, 913 + "node_modules/@tailwindcss/oxide-android-arm64": { 914 + "version": "4.1.18", 915 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.18.tgz", 916 + "integrity": "sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==", 917 + "cpu": [ 918 + "arm64" 919 + ], 920 + "dev": true, 921 + "license": "MIT", 922 + "optional": true, 923 + "os": [ 924 + "android" 925 + ], 926 + "engines": { 927 + "node": ">= 10" 928 + } 929 + }, 930 + "node_modules/@tailwindcss/oxide-darwin-arm64": { 931 + "version": "4.1.18", 932 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.18.tgz", 933 + "integrity": "sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A==", 934 + "cpu": [ 935 + "arm64" 936 + ], 937 + "dev": true, 938 + "license": "MIT", 939 + "optional": true, 940 + "os": [ 941 + "darwin" 942 + ], 943 + "engines": { 944 + "node": ">= 10" 945 + } 946 + }, 947 + "node_modules/@tailwindcss/oxide-darwin-x64": { 948 + "version": "4.1.18", 949 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.18.tgz", 950 + "integrity": "sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw==", 951 + "cpu": [ 952 + "x64" 953 + ], 954 + "dev": true, 955 + "license": "MIT", 956 + "optional": true, 957 + "os": [ 958 + "darwin" 959 + ], 960 + "engines": { 961 + "node": ">= 10" 962 + } 963 + }, 964 + "node_modules/@tailwindcss/oxide-freebsd-x64": { 965 + "version": "4.1.18", 966 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.18.tgz", 967 + "integrity": "sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA==", 968 + "cpu": [ 969 + "x64" 970 + ], 971 + "dev": true, 972 + "license": "MIT", 973 + "optional": true, 974 + "os": [ 975 + "freebsd" 976 + ], 977 + "engines": { 978 + "node": ">= 10" 979 + } 980 + }, 981 + "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { 982 + "version": "4.1.18", 983 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.18.tgz", 984 + "integrity": "sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA==", 985 + "cpu": [ 986 + "arm" 987 + ], 988 + "dev": true, 989 + "license": "MIT", 990 + "optional": true, 991 + "os": [ 992 + "linux" 993 + ], 994 + "engines": { 995 + "node": ">= 10" 996 + } 997 + }, 998 + "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { 999 + "version": "4.1.18", 1000 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.18.tgz", 1001 + "integrity": "sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw==", 1002 + "cpu": [ 1003 + "arm64" 1004 + ], 1005 + "dev": true, 1006 + "license": "MIT", 1007 + "optional": true, 1008 + "os": [ 1009 + "linux" 1010 + ], 1011 + "engines": { 1012 + "node": ">= 10" 1013 + } 1014 + }, 1015 + "node_modules/@tailwindcss/oxide-linux-arm64-musl": { 1016 + "version": "4.1.18", 1017 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.18.tgz", 1018 + "integrity": "sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==", 1019 + "cpu": [ 1020 + "arm64" 1021 + ], 1022 + "dev": true, 1023 + "license": "MIT", 1024 + "optional": true, 1025 + "os": [ 1026 + "linux" 1027 + ], 1028 + "engines": { 1029 + "node": ">= 10" 1030 + } 1031 + }, 1032 + "node_modules/@tailwindcss/oxide-linux-x64-gnu": { 1033 + "version": "4.1.18", 1034 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.18.tgz", 1035 + "integrity": "sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==", 1036 + "cpu": [ 1037 + "x64" 1038 + ], 1039 + "dev": true, 1040 + "license": "MIT", 1041 + "optional": true, 1042 + "os": [ 1043 + "linux" 1044 + ], 1045 + "engines": { 1046 + "node": ">= 10" 1047 + } 1048 + }, 1049 + "node_modules/@tailwindcss/oxide-linux-x64-musl": { 1050 + "version": "4.1.18", 1051 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.18.tgz", 1052 + "integrity": "sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==", 1053 + "cpu": [ 1054 + "x64" 1055 + ], 1056 + "dev": true, 1057 + "license": "MIT", 1058 + "optional": true, 1059 + "os": [ 1060 + "linux" 1061 + ], 1062 + "engines": { 1063 + "node": ">= 10" 1064 + } 1065 + }, 1066 + "node_modules/@tailwindcss/oxide-wasm32-wasi": { 1067 + "version": "4.1.18", 1068 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.18.tgz", 1069 + "integrity": "sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==", 1070 + "bundleDependencies": [ 1071 + "@napi-rs/wasm-runtime", 1072 + "@emnapi/core", 1073 + "@emnapi/runtime", 1074 + "@tybys/wasm-util", 1075 + "@emnapi/wasi-threads", 1076 + "tslib" 1077 + ], 1078 + "cpu": [ 1079 + "wasm32" 1080 + ], 1081 + "dev": true, 1082 + "license": "MIT", 1083 + "optional": true, 1084 + "dependencies": { 1085 + "@emnapi/core": "^1.7.1", 1086 + "@emnapi/runtime": "^1.7.1", 1087 + "@emnapi/wasi-threads": "^1.1.0", 1088 + "@napi-rs/wasm-runtime": "^1.1.0", 1089 + "@tybys/wasm-util": "^0.10.1", 1090 + "tslib": "^2.4.0" 1091 + }, 1092 + "engines": { 1093 + "node": ">=14.0.0" 1094 + } 1095 + }, 1096 + "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { 1097 + "version": "4.1.18", 1098 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.18.tgz", 1099 + "integrity": "sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA==", 1100 + "cpu": [ 1101 + "arm64" 1102 + ], 1103 + "dev": true, 1104 + "license": "MIT", 1105 + "optional": true, 1106 + "os": [ 1107 + "win32" 1108 + ], 1109 + "engines": { 1110 + "node": ">= 10" 1111 + } 1112 + }, 1113 + "node_modules/@tailwindcss/oxide-win32-x64-msvc": { 1114 + "version": "4.1.18", 1115 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.18.tgz", 1116 + "integrity": "sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q==", 1117 + "cpu": [ 1118 + "x64" 1119 + ], 1120 + "dev": true, 1121 + "license": "MIT", 1122 + "optional": true, 1123 + "os": [ 1124 + "win32" 1125 + ], 1126 + "engines": { 1127 + "node": ">= 10" 1128 + } 1129 + }, 1130 + "node_modules/@types/estree": { 1131 + "version": "1.0.8", 1132 + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", 1133 + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", 1134 + "license": "MIT" 1135 + }, 1136 + "node_modules/@types/lodash": { 1137 + "version": "4.17.23", 1138 + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.23.tgz", 1139 + "integrity": "sha512-RDvF6wTulMPjrNdCoYRC8gNR880JNGT8uB+REUpC2Ns4pRqQJhGz90wh7rgdXDPpCczF3VGktDuFGVnz8zP7HA==", 1140 + "license": "MIT" 1141 + }, 1142 + "node_modules/@types/lodash-es": { 1143 + "version": "4.17.12", 1144 + "resolved": "https://registry.npmjs.org/@types/lodash-es/-/lodash-es-4.17.12.tgz", 1145 + "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==", 1146 + "license": "MIT", 1147 + "dependencies": { 1148 + "@types/lodash": "*" 1149 + } 1150 + }, 1151 + "node_modules/@types/node": { 1152 + "version": "25.0.8", 1153 + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.0.8.tgz", 1154 + "integrity": "sha512-powIePYMmC3ibL0UJ2i2s0WIbq6cg6UyVFQxSCpaPxxzAaziRfimGivjdF943sSGV6RADVbk0Nvlm5P/FB44Zg==", 1155 + "dev": true, 1156 + "license": "MIT", 1157 + "dependencies": { 1158 + "undici-types": "~7.16.0" 1159 + } 1160 + }, 1161 + "node_modules/acorn": { 1162 + "version": "8.15.0", 1163 + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", 1164 + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", 1165 + "license": "MIT", 1166 + "bin": { 1167 + "acorn": "bin/acorn" 1168 + }, 1169 + "engines": { 1170 + "node": ">=0.4.0" 1171 + } 1172 + }, 1173 + "node_modules/aria-query": { 1174 + "version": "5.3.2", 1175 + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", 1176 + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", 1177 + "license": "Apache-2.0", 1178 + "engines": { 1179 + "node": ">= 0.4" 1180 + } 1181 + }, 1182 + "node_modules/asynckit": { 1183 + "version": "0.4.0", 1184 + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 1185 + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", 1186 + "license": "MIT" 1187 + }, 1188 + "node_modules/axios": { 1189 + "version": "1.13.2", 1190 + "resolved": "https://registry.npmjs.org/axios/-/axios-1.13.2.tgz", 1191 + "integrity": "sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==", 1192 + "license": "MIT", 1193 + "dependencies": { 1194 + "follow-redirects": "^1.15.6", 1195 + "form-data": "^4.0.4", 1196 + "proxy-from-env": "^1.1.0" 1197 + } 1198 + }, 1199 + "node_modules/axobject-query": { 1200 + "version": "4.1.0", 1201 + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", 1202 + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", 1203 + "license": "Apache-2.0", 1204 + "engines": { 1205 + "node": ">= 0.4" 1206 + } 1207 + }, 1208 + "node_modules/call-bind-apply-helpers": { 1209 + "version": "1.0.2", 1210 + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", 1211 + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", 1212 + "license": "MIT", 1213 + "dependencies": { 1214 + "es-errors": "^1.3.0", 1215 + "function-bind": "^1.1.2" 1216 + }, 1217 + "engines": { 1218 + "node": ">= 0.4" 1219 + } 1220 + }, 1221 + "node_modules/call-bound": { 1222 + "version": "1.0.4", 1223 + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", 1224 + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", 1225 + "license": "MIT", 1226 + "dependencies": { 1227 + "call-bind-apply-helpers": "^1.0.2", 1228 + "get-intrinsic": "^1.3.0" 1229 + }, 1230 + "engines": { 1231 + "node": ">= 0.4" 1232 + }, 1233 + "funding": { 1234 + "url": "https://github.com/sponsors/ljharb" 1235 + } 1236 + }, 1237 + "node_modules/clsx": { 1238 + "version": "2.1.1", 1239 + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", 1240 + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", 1241 + "license": "MIT", 1242 + "engines": { 1243 + "node": ">=6" 1244 + } 1245 + }, 1246 + "node_modules/combined-stream": { 1247 + "version": "1.0.8", 1248 + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 1249 + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 1250 + "license": "MIT", 1251 + "dependencies": { 1252 + "delayed-stream": "~1.0.0" 1253 + }, 1254 + "engines": { 1255 + "node": ">= 0.8" 1256 + } 1257 + }, 1258 + "node_modules/delayed-stream": { 1259 + "version": "1.0.0", 1260 + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 1261 + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", 1262 + "license": "MIT", 1263 + "engines": { 1264 + "node": ">=0.4.0" 1265 + } 1266 + }, 1267 + "node_modules/detect-libc": { 1268 + "version": "2.1.2", 1269 + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", 1270 + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", 1271 + "dev": true, 1272 + "license": "Apache-2.0", 1273 + "engines": { 1274 + "node": ">=8" 1275 + } 1276 + }, 1277 + "node_modules/devalue": { 1278 + "version": "5.6.1", 1279 + "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.6.1.tgz", 1280 + "integrity": "sha512-jDwizj+IlEZBunHcOuuFVBnIMPAEHvTsJj0BcIp94xYguLRVBcXO853px/MyIJvbVzWdsGvrRweIUWJw8hBP7A==", 1281 + "license": "MIT" 1282 + }, 1283 + "node_modules/dunder-proto": { 1284 + "version": "1.0.1", 1285 + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", 1286 + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", 1287 + "license": "MIT", 1288 + "dependencies": { 1289 + "call-bind-apply-helpers": "^1.0.1", 1290 + "es-errors": "^1.3.0", 1291 + "gopd": "^1.2.0" 1292 + }, 1293 + "engines": { 1294 + "node": ">= 0.4" 1295 + } 1296 + }, 1297 + "node_modules/enhanced-resolve": { 1298 + "version": "5.18.4", 1299 + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.4.tgz", 1300 + "integrity": "sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==", 1301 + "dev": true, 1302 + "license": "MIT", 1303 + "dependencies": { 1304 + "graceful-fs": "^4.2.4", 1305 + "tapable": "^2.2.0" 1306 + }, 1307 + "engines": { 1308 + "node": ">=10.13.0" 1309 + } 1310 + }, 1311 + "node_modules/es-define-property": { 1312 + "version": "1.0.1", 1313 + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", 1314 + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", 1315 + "license": "MIT", 1316 + "engines": { 1317 + "node": ">= 0.4" 1318 + } 1319 + }, 1320 + "node_modules/es-errors": { 1321 + "version": "1.3.0", 1322 + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 1323 + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 1324 + "license": "MIT", 1325 + "engines": { 1326 + "node": ">= 0.4" 1327 + } 1328 + }, 1329 + "node_modules/es-object-atoms": { 1330 + "version": "1.1.1", 1331 + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", 1332 + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", 1333 + "license": "MIT", 1334 + "dependencies": { 1335 + "es-errors": "^1.3.0" 1336 + }, 1337 + "engines": { 1338 + "node": ">= 0.4" 1339 + } 1340 + }, 1341 + "node_modules/es-set-tostringtag": { 1342 + "version": "2.1.0", 1343 + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", 1344 + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", 1345 + "license": "MIT", 1346 + "dependencies": { 1347 + "es-errors": "^1.3.0", 1348 + "get-intrinsic": "^1.2.6", 1349 + "has-tostringtag": "^1.0.2", 1350 + "hasown": "^2.0.2" 1351 + }, 1352 + "engines": { 1353 + "node": ">= 0.4" 1354 + } 1355 + }, 1356 + "node_modules/esbuild": { 1357 + "version": "0.27.2", 1358 + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.2.tgz", 1359 + "integrity": "sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==", 1360 + "dev": true, 1361 + "hasInstallScript": true, 1362 + "license": "MIT", 1363 + "bin": { 1364 + "esbuild": "bin/esbuild" 1365 + }, 1366 + "engines": { 1367 + "node": ">=18" 1368 + }, 1369 + "optionalDependencies": { 1370 + "@esbuild/aix-ppc64": "0.27.2", 1371 + "@esbuild/android-arm": "0.27.2", 1372 + "@esbuild/android-arm64": "0.27.2", 1373 + "@esbuild/android-x64": "0.27.2", 1374 + "@esbuild/darwin-arm64": "0.27.2", 1375 + "@esbuild/darwin-x64": "0.27.2", 1376 + "@esbuild/freebsd-arm64": "0.27.2", 1377 + "@esbuild/freebsd-x64": "0.27.2", 1378 + "@esbuild/linux-arm": "0.27.2", 1379 + "@esbuild/linux-arm64": "0.27.2", 1380 + "@esbuild/linux-ia32": "0.27.2", 1381 + "@esbuild/linux-loong64": "0.27.2", 1382 + "@esbuild/linux-mips64el": "0.27.2", 1383 + "@esbuild/linux-ppc64": "0.27.2", 1384 + "@esbuild/linux-riscv64": "0.27.2", 1385 + "@esbuild/linux-s390x": "0.27.2", 1386 + "@esbuild/linux-x64": "0.27.2", 1387 + "@esbuild/netbsd-arm64": "0.27.2", 1388 + "@esbuild/netbsd-x64": "0.27.2", 1389 + "@esbuild/openbsd-arm64": "0.27.2", 1390 + "@esbuild/openbsd-x64": "0.27.2", 1391 + "@esbuild/openharmony-arm64": "0.27.2", 1392 + "@esbuild/sunos-x64": "0.27.2", 1393 + "@esbuild/win32-arm64": "0.27.2", 1394 + "@esbuild/win32-ia32": "0.27.2", 1395 + "@esbuild/win32-x64": "0.27.2" 1396 + } 1397 + }, 1398 + "node_modules/esbuild-svelte": { 1399 + "version": "0.9.4", 1400 + "resolved": "https://registry.npmjs.org/esbuild-svelte/-/esbuild-svelte-0.9.4.tgz", 1401 + "integrity": "sha512-v/a0GjkKN06nal2QLluxjk2GXsei3fdtjIuHRa6pVnri5rQBZ6pj4a2WwjLfRojgRsLwDHl4xSeZ1BeUHsqQrw==", 1402 + "dev": true, 1403 + "license": "MIT", 1404 + "dependencies": { 1405 + "@jridgewell/trace-mapping": "^0.3.19" 1406 + }, 1407 + "engines": { 1408 + "node": ">=18" 1409 + }, 1410 + "peerDependencies": { 1411 + "esbuild": ">=0.17.0", 1412 + "svelte": ">=4.2.1 <6" 1413 + } 1414 + }, 1415 + "node_modules/esm-env": { 1416 + "version": "1.2.2", 1417 + "resolved": "https://registry.npmjs.org/esm-env/-/esm-env-1.2.2.tgz", 1418 + "integrity": "sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==", 1419 + "license": "MIT" 1420 + }, 1421 + "node_modules/esrap": { 1422 + "version": "2.2.1", 1423 + "resolved": "https://registry.npmjs.org/esrap/-/esrap-2.2.1.tgz", 1424 + "integrity": "sha512-GiYWG34AN/4CUyaWAgunGt0Rxvr1PTMlGC0vvEov/uOQYWne2bpN03Um+k8jT+q3op33mKouP2zeJ6OlM+qeUg==", 1425 + "license": "MIT", 1426 + "dependencies": { 1427 + "@jridgewell/sourcemap-codec": "^1.4.15" 1428 + } 1429 + }, 1430 + "node_modules/follow-redirects": { 1431 + "version": "1.15.11", 1432 + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz", 1433 + "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==", 1434 + "funding": [ 1435 + { 1436 + "type": "individual", 1437 + "url": "https://github.com/sponsors/RubenVerborgh" 1438 + } 1439 + ], 1440 + "license": "MIT", 1441 + "engines": { 1442 + "node": ">=4.0" 1443 + }, 1444 + "peerDependenciesMeta": { 1445 + "debug": { 1446 + "optional": true 1447 + } 1448 + } 1449 + }, 1450 + "node_modules/form-data": { 1451 + "version": "4.0.5", 1452 + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz", 1453 + "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==", 1454 + "license": "MIT", 1455 + "dependencies": { 1456 + "asynckit": "^0.4.0", 1457 + "combined-stream": "^1.0.8", 1458 + "es-set-tostringtag": "^2.1.0", 1459 + "hasown": "^2.0.2", 1460 + "mime-types": "^2.1.12" 1461 + }, 1462 + "engines": { 1463 + "node": ">= 6" 1464 + } 1465 + }, 1466 + "node_modules/function-bind": { 1467 + "version": "1.1.2", 1468 + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1469 + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1470 + "license": "MIT", 1471 + "funding": { 1472 + "url": "https://github.com/sponsors/ljharb" 1473 + } 1474 + }, 1475 + "node_modules/get-intrinsic": { 1476 + "version": "1.3.0", 1477 + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", 1478 + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", 1479 + "license": "MIT", 1480 + "dependencies": { 1481 + "call-bind-apply-helpers": "^1.0.2", 1482 + "es-define-property": "^1.0.1", 1483 + "es-errors": "^1.3.0", 1484 + "es-object-atoms": "^1.1.1", 1485 + "function-bind": "^1.1.2", 1486 + "get-proto": "^1.0.1", 1487 + "gopd": "^1.2.0", 1488 + "has-symbols": "^1.1.0", 1489 + "hasown": "^2.0.2", 1490 + "math-intrinsics": "^1.1.0" 1491 + }, 1492 + "engines": { 1493 + "node": ">= 0.4" 1494 + }, 1495 + "funding": { 1496 + "url": "https://github.com/sponsors/ljharb" 1497 + } 1498 + }, 1499 + "node_modules/get-proto": { 1500 + "version": "1.0.1", 1501 + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", 1502 + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", 1503 + "license": "MIT", 1504 + "dependencies": { 1505 + "dunder-proto": "^1.0.1", 1506 + "es-object-atoms": "^1.0.0" 1507 + }, 1508 + "engines": { 1509 + "node": ">= 0.4" 1510 + } 1511 + }, 1512 + "node_modules/gopd": { 1513 + "version": "1.2.0", 1514 + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", 1515 + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", 1516 + "license": "MIT", 1517 + "engines": { 1518 + "node": ">= 0.4" 1519 + }, 1520 + "funding": { 1521 + "url": "https://github.com/sponsors/ljharb" 1522 + } 1523 + }, 1524 + "node_modules/graceful-fs": { 1525 + "version": "4.2.11", 1526 + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1527 + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1528 + "dev": true, 1529 + "license": "ISC" 1530 + }, 1531 + "node_modules/has-symbols": { 1532 + "version": "1.1.0", 1533 + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", 1534 + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", 1535 + "license": "MIT", 1536 + "engines": { 1537 + "node": ">= 0.4" 1538 + }, 1539 + "funding": { 1540 + "url": "https://github.com/sponsors/ljharb" 1541 + } 1542 + }, 1543 + "node_modules/has-tostringtag": { 1544 + "version": "1.0.2", 1545 + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", 1546 + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", 1547 + "license": "MIT", 1548 + "dependencies": { 1549 + "has-symbols": "^1.0.3" 1550 + }, 1551 + "engines": { 1552 + "node": ">= 0.4" 1553 + }, 1554 + "funding": { 1555 + "url": "https://github.com/sponsors/ljharb" 1556 + } 1557 + }, 1558 + "node_modules/hasown": { 1559 + "version": "2.0.2", 1560 + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 1561 + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 1562 + "license": "MIT", 1563 + "dependencies": { 1564 + "function-bind": "^1.1.2" 1565 + }, 1566 + "engines": { 1567 + "node": ">= 0.4" 1568 + } 1569 + }, 1570 + "node_modules/is-extglob": { 1571 + "version": "2.1.1", 1572 + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1573 + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1574 + "dev": true, 1575 + "license": "MIT", 1576 + "engines": { 1577 + "node": ">=0.10.0" 1578 + } 1579 + }, 1580 + "node_modules/is-glob": { 1581 + "version": "4.0.3", 1582 + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1583 + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1584 + "dev": true, 1585 + "license": "MIT", 1586 + "dependencies": { 1587 + "is-extglob": "^2.1.1" 1588 + }, 1589 + "engines": { 1590 + "node": ">=0.10.0" 1591 + } 1592 + }, 1593 + "node_modules/is-reference": { 1594 + "version": "3.0.3", 1595 + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.3.tgz", 1596 + "integrity": "sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==", 1597 + "license": "MIT", 1598 + "dependencies": { 1599 + "@types/estree": "^1.0.6" 1600 + } 1601 + }, 1602 + "node_modules/jiti": { 1603 + "version": "2.6.1", 1604 + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz", 1605 + "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==", 1606 + "dev": true, 1607 + "license": "MIT", 1608 + "bin": { 1609 + "jiti": "lib/jiti-cli.mjs" 1610 + } 1611 + }, 1612 + "node_modules/laravel-precognition": { 1613 + "version": "1.0.0", 1614 + "resolved": "https://registry.npmjs.org/laravel-precognition/-/laravel-precognition-1.0.0.tgz", 1615 + "integrity": "sha512-hvXPT7dayCQAidxnsY0hab9Q+Y2rsh7xRpH9uiFtXN8Dekc3tIZt+NrxrOZ9N5SwHBmRBze/Bv+ElfXac0kD6g==", 1616 + "license": "MIT", 1617 + "dependencies": { 1618 + "axios": "^1.4.0", 1619 + "lodash-es": "^4.17.21" 1620 + } 1621 + }, 1622 + "node_modules/lightningcss": { 1623 + "version": "1.30.2", 1624 + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.2.tgz", 1625 + "integrity": "sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==", 1626 + "dev": true, 1627 + "license": "MPL-2.0", 1628 + "dependencies": { 1629 + "detect-libc": "^2.0.3" 1630 + }, 1631 + "engines": { 1632 + "node": ">= 12.0.0" 1633 + }, 1634 + "funding": { 1635 + "type": "opencollective", 1636 + "url": "https://opencollective.com/parcel" 1637 + }, 1638 + "optionalDependencies": { 1639 + "lightningcss-android-arm64": "1.30.2", 1640 + "lightningcss-darwin-arm64": "1.30.2", 1641 + "lightningcss-darwin-x64": "1.30.2", 1642 + "lightningcss-freebsd-x64": "1.30.2", 1643 + "lightningcss-linux-arm-gnueabihf": "1.30.2", 1644 + "lightningcss-linux-arm64-gnu": "1.30.2", 1645 + "lightningcss-linux-arm64-musl": "1.30.2", 1646 + "lightningcss-linux-x64-gnu": "1.30.2", 1647 + "lightningcss-linux-x64-musl": "1.30.2", 1648 + "lightningcss-win32-arm64-msvc": "1.30.2", 1649 + "lightningcss-win32-x64-msvc": "1.30.2" 1650 + } 1651 + }, 1652 + "node_modules/lightningcss-android-arm64": { 1653 + "version": "1.30.2", 1654 + "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.30.2.tgz", 1655 + "integrity": "sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==", 1656 + "cpu": [ 1657 + "arm64" 1658 + ], 1659 + "dev": true, 1660 + "license": "MPL-2.0", 1661 + "optional": true, 1662 + "os": [ 1663 + "android" 1664 + ], 1665 + "engines": { 1666 + "node": ">= 12.0.0" 1667 + }, 1668 + "funding": { 1669 + "type": "opencollective", 1670 + "url": "https://opencollective.com/parcel" 1671 + } 1672 + }, 1673 + "node_modules/lightningcss-darwin-arm64": { 1674 + "version": "1.30.2", 1675 + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.2.tgz", 1676 + "integrity": "sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==", 1677 + "cpu": [ 1678 + "arm64" 1679 + ], 1680 + "dev": true, 1681 + "license": "MPL-2.0", 1682 + "optional": true, 1683 + "os": [ 1684 + "darwin" 1685 + ], 1686 + "engines": { 1687 + "node": ">= 12.0.0" 1688 + }, 1689 + "funding": { 1690 + "type": "opencollective", 1691 + "url": "https://opencollective.com/parcel" 1692 + } 1693 + }, 1694 + "node_modules/lightningcss-darwin-x64": { 1695 + "version": "1.30.2", 1696 + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.2.tgz", 1697 + "integrity": "sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==", 1698 + "cpu": [ 1699 + "x64" 1700 + ], 1701 + "dev": true, 1702 + "license": "MPL-2.0", 1703 + "optional": true, 1704 + "os": [ 1705 + "darwin" 1706 + ], 1707 + "engines": { 1708 + "node": ">= 12.0.0" 1709 + }, 1710 + "funding": { 1711 + "type": "opencollective", 1712 + "url": "https://opencollective.com/parcel" 1713 + } 1714 + }, 1715 + "node_modules/lightningcss-freebsd-x64": { 1716 + "version": "1.30.2", 1717 + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.2.tgz", 1718 + "integrity": "sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==", 1719 + "cpu": [ 1720 + "x64" 1721 + ], 1722 + "dev": true, 1723 + "license": "MPL-2.0", 1724 + "optional": true, 1725 + "os": [ 1726 + "freebsd" 1727 + ], 1728 + "engines": { 1729 + "node": ">= 12.0.0" 1730 + }, 1731 + "funding": { 1732 + "type": "opencollective", 1733 + "url": "https://opencollective.com/parcel" 1734 + } 1735 + }, 1736 + "node_modules/lightningcss-linux-arm-gnueabihf": { 1737 + "version": "1.30.2", 1738 + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.2.tgz", 1739 + "integrity": "sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==", 1740 + "cpu": [ 1741 + "arm" 1742 + ], 1743 + "dev": true, 1744 + "license": "MPL-2.0", 1745 + "optional": true, 1746 + "os": [ 1747 + "linux" 1748 + ], 1749 + "engines": { 1750 + "node": ">= 12.0.0" 1751 + }, 1752 + "funding": { 1753 + "type": "opencollective", 1754 + "url": "https://opencollective.com/parcel" 1755 + } 1756 + }, 1757 + "node_modules/lightningcss-linux-arm64-gnu": { 1758 + "version": "1.30.2", 1759 + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.2.tgz", 1760 + "integrity": "sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==", 1761 + "cpu": [ 1762 + "arm64" 1763 + ], 1764 + "dev": true, 1765 + "license": "MPL-2.0", 1766 + "optional": true, 1767 + "os": [ 1768 + "linux" 1769 + ], 1770 + "engines": { 1771 + "node": ">= 12.0.0" 1772 + }, 1773 + "funding": { 1774 + "type": "opencollective", 1775 + "url": "https://opencollective.com/parcel" 1776 + } 1777 + }, 1778 + "node_modules/lightningcss-linux-arm64-musl": { 1779 + "version": "1.30.2", 1780 + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.2.tgz", 1781 + "integrity": "sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==", 1782 + "cpu": [ 1783 + "arm64" 1784 + ], 1785 + "dev": true, 1786 + "license": "MPL-2.0", 1787 + "optional": true, 1788 + "os": [ 1789 + "linux" 1790 + ], 1791 + "engines": { 1792 + "node": ">= 12.0.0" 1793 + }, 1794 + "funding": { 1795 + "type": "opencollective", 1796 + "url": "https://opencollective.com/parcel" 1797 + } 1798 + }, 1799 + "node_modules/lightningcss-linux-x64-gnu": { 1800 + "version": "1.30.2", 1801 + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.2.tgz", 1802 + "integrity": "sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==", 1803 + "cpu": [ 1804 + "x64" 1805 + ], 1806 + "dev": true, 1807 + "license": "MPL-2.0", 1808 + "optional": true, 1809 + "os": [ 1810 + "linux" 1811 + ], 1812 + "engines": { 1813 + "node": ">= 12.0.0" 1814 + }, 1815 + "funding": { 1816 + "type": "opencollective", 1817 + "url": "https://opencollective.com/parcel" 1818 + } 1819 + }, 1820 + "node_modules/lightningcss-linux-x64-musl": { 1821 + "version": "1.30.2", 1822 + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.2.tgz", 1823 + "integrity": "sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==", 1824 + "cpu": [ 1825 + "x64" 1826 + ], 1827 + "dev": true, 1828 + "license": "MPL-2.0", 1829 + "optional": true, 1830 + "os": [ 1831 + "linux" 1832 + ], 1833 + "engines": { 1834 + "node": ">= 12.0.0" 1835 + }, 1836 + "funding": { 1837 + "type": "opencollective", 1838 + "url": "https://opencollective.com/parcel" 1839 + } 1840 + }, 1841 + "node_modules/lightningcss-win32-arm64-msvc": { 1842 + "version": "1.30.2", 1843 + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.2.tgz", 1844 + "integrity": "sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==", 1845 + "cpu": [ 1846 + "arm64" 1847 + ], 1848 + "dev": true, 1849 + "license": "MPL-2.0", 1850 + "optional": true, 1851 + "os": [ 1852 + "win32" 1853 + ], 1854 + "engines": { 1855 + "node": ">= 12.0.0" 1856 + }, 1857 + "funding": { 1858 + "type": "opencollective", 1859 + "url": "https://opencollective.com/parcel" 1860 + } 1861 + }, 1862 + "node_modules/lightningcss-win32-x64-msvc": { 1863 + "version": "1.30.2", 1864 + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.2.tgz", 1865 + "integrity": "sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==", 1866 + "cpu": [ 1867 + "x64" 1868 + ], 1869 + "dev": true, 1870 + "license": "MPL-2.0", 1871 + "optional": true, 1872 + "os": [ 1873 + "win32" 1874 + ], 1875 + "engines": { 1876 + "node": ">= 12.0.0" 1877 + }, 1878 + "funding": { 1879 + "type": "opencollective", 1880 + "url": "https://opencollective.com/parcel" 1881 + } 1882 + }, 1883 + "node_modules/locate-character": { 1884 + "version": "3.0.0", 1885 + "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz", 1886 + "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==", 1887 + "license": "MIT" 1888 + }, 1889 + "node_modules/lodash-es": { 1890 + "version": "4.17.22", 1891 + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.22.tgz", 1892 + "integrity": "sha512-XEawp1t0gxSi9x01glktRZ5HDy0HXqrM0x5pXQM98EaI0NxO6jVM7omDOxsuEo5UIASAnm2bRp1Jt/e0a2XU8Q==", 1893 + "license": "MIT" 1894 + }, 1895 + "node_modules/magic-string": { 1896 + "version": "0.30.21", 1897 + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", 1898 + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", 1899 + "license": "MIT", 1900 + "dependencies": { 1901 + "@jridgewell/sourcemap-codec": "^1.5.5" 1902 + } 1903 + }, 1904 + "node_modules/math-intrinsics": { 1905 + "version": "1.1.0", 1906 + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", 1907 + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", 1908 + "license": "MIT", 1909 + "engines": { 1910 + "node": ">= 0.4" 1911 + } 1912 + }, 1913 + "node_modules/mime-db": { 1914 + "version": "1.52.0", 1915 + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 1916 + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 1917 + "license": "MIT", 1918 + "engines": { 1919 + "node": ">= 0.6" 1920 + } 1921 + }, 1922 + "node_modules/mime-types": { 1923 + "version": "2.1.35", 1924 + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 1925 + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 1926 + "license": "MIT", 1927 + "dependencies": { 1928 + "mime-db": "1.52.0" 1929 + }, 1930 + "engines": { 1931 + "node": ">= 0.6" 1932 + } 1933 + }, 1934 + "node_modules/mri": { 1935 + "version": "1.2.0", 1936 + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", 1937 + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", 1938 + "dev": true, 1939 + "license": "MIT", 1940 + "engines": { 1941 + "node": ">=4" 1942 + } 1943 + }, 1944 + "node_modules/node-addon-api": { 1945 + "version": "7.1.1", 1946 + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", 1947 + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", 1948 + "dev": true, 1949 + "license": "MIT" 1950 + }, 1951 + "node_modules/object-inspect": { 1952 + "version": "1.13.4", 1953 + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", 1954 + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", 1955 + "license": "MIT", 1956 + "engines": { 1957 + "node": ">= 0.4" 1958 + }, 1959 + "funding": { 1960 + "url": "https://github.com/sponsors/ljharb" 1961 + } 1962 + }, 1963 + "node_modules/picocolors": { 1964 + "version": "1.1.1", 1965 + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 1966 + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 1967 + "dev": true, 1968 + "license": "ISC" 1969 + }, 1970 + "node_modules/picomatch": { 1971 + "version": "4.0.3", 1972 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", 1973 + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", 1974 + "dev": true, 1975 + "license": "MIT", 1976 + "engines": { 1977 + "node": ">=12" 1978 + }, 1979 + "funding": { 1980 + "url": "https://github.com/sponsors/jonschlinkert" 1981 + } 1982 + }, 1983 + "node_modules/proxy-from-env": { 1984 + "version": "1.1.0", 1985 + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", 1986 + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", 1987 + "license": "MIT" 1988 + }, 1989 + "node_modules/qs": { 1990 + "version": "6.14.1", 1991 + "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.1.tgz", 1992 + "integrity": "sha512-4EK3+xJl8Ts67nLYNwqw/dsFVnCf+qR7RgXSK9jEEm9unao3njwMDdmsdvoKBKHzxd7tCYz5e5M+SnMjdtXGQQ==", 1993 + "license": "BSD-3-Clause", 1994 + "dependencies": { 1995 + "side-channel": "^1.1.0" 1996 + }, 1997 + "engines": { 1998 + "node": ">=0.6" 1999 + }, 2000 + "funding": { 2001 + "url": "https://github.com/sponsors/ljharb" 2002 + } 2003 + }, 2004 + "node_modules/side-channel": { 2005 + "version": "1.1.0", 2006 + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", 2007 + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", 2008 + "license": "MIT", 2009 + "dependencies": { 2010 + "es-errors": "^1.3.0", 2011 + "object-inspect": "^1.13.3", 2012 + "side-channel-list": "^1.0.0", 2013 + "side-channel-map": "^1.0.1", 2014 + "side-channel-weakmap": "^1.0.2" 2015 + }, 2016 + "engines": { 2017 + "node": ">= 0.4" 2018 + }, 2019 + "funding": { 2020 + "url": "https://github.com/sponsors/ljharb" 2021 + } 2022 + }, 2023 + "node_modules/side-channel-list": { 2024 + "version": "1.0.0", 2025 + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", 2026 + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", 2027 + "license": "MIT", 2028 + "dependencies": { 2029 + "es-errors": "^1.3.0", 2030 + "object-inspect": "^1.13.3" 2031 + }, 2032 + "engines": { 2033 + "node": ">= 0.4" 2034 + }, 2035 + "funding": { 2036 + "url": "https://github.com/sponsors/ljharb" 2037 + } 2038 + }, 2039 + "node_modules/side-channel-map": { 2040 + "version": "1.0.1", 2041 + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", 2042 + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", 2043 + "license": "MIT", 2044 + "dependencies": { 2045 + "call-bound": "^1.0.2", 2046 + "es-errors": "^1.3.0", 2047 + "get-intrinsic": "^1.2.5", 2048 + "object-inspect": "^1.13.3" 2049 + }, 2050 + "engines": { 2051 + "node": ">= 0.4" 2052 + }, 2053 + "funding": { 2054 + "url": "https://github.com/sponsors/ljharb" 2055 + } 2056 + }, 2057 + "node_modules/side-channel-weakmap": { 2058 + "version": "1.0.2", 2059 + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", 2060 + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", 2061 + "license": "MIT", 2062 + "dependencies": { 2063 + "call-bound": "^1.0.2", 2064 + "es-errors": "^1.3.0", 2065 + "get-intrinsic": "^1.2.5", 2066 + "object-inspect": "^1.13.3", 2067 + "side-channel-map": "^1.0.1" 2068 + }, 2069 + "engines": { 2070 + "node": ">= 0.4" 2071 + }, 2072 + "funding": { 2073 + "url": "https://github.com/sponsors/ljharb" 2074 + } 2075 + }, 2076 + "node_modules/source-map-js": { 2077 + "version": "1.2.1", 2078 + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 2079 + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 2080 + "dev": true, 2081 + "license": "BSD-3-Clause", 2082 + "engines": { 2083 + "node": ">=0.10.0" 2084 + } 2085 + }, 2086 + "node_modules/svelte": { 2087 + "version": "5.46.3", 2088 + "resolved": "https://registry.npmjs.org/svelte/-/svelte-5.46.3.tgz", 2089 + "integrity": "sha512-Y5juST3x+/ySty5tYJCVWa6Corkxpt25bUZQHqOceg9xfMUtDsFx6rCsG6cYf1cA6vzDi66HIvaki0byZZX95A==", 2090 + "license": "MIT", 2091 + "dependencies": { 2092 + "@jridgewell/remapping": "^2.3.4", 2093 + "@jridgewell/sourcemap-codec": "^1.5.0", 2094 + "@sveltejs/acorn-typescript": "^1.0.5", 2095 + "@types/estree": "^1.0.5", 2096 + "acorn": "^8.12.1", 2097 + "aria-query": "^5.3.1", 2098 + "axobject-query": "^4.1.0", 2099 + "clsx": "^2.1.1", 2100 + "devalue": "^5.5.0", 2101 + "esm-env": "^1.2.1", 2102 + "esrap": "^2.2.1", 2103 + "is-reference": "^3.0.3", 2104 + "locate-character": "^3.0.0", 2105 + "magic-string": "^0.30.11", 2106 + "zimmerframe": "^1.1.2" 2107 + }, 2108 + "engines": { 2109 + "node": ">=18" 2110 + } 2111 + }, 2112 + "node_modules/svelte-preprocess": { 2113 + "version": "6.0.3", 2114 + "resolved": "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-6.0.3.tgz", 2115 + "integrity": "sha512-PLG2k05qHdhmRG7zR/dyo5qKvakhm8IJ+hD2eFRQmMLHp7X3eJnjeupUtvuRpbNiF31RjVw45W+abDwHEmP5OA==", 2116 + "dev": true, 2117 + "hasInstallScript": true, 2118 + "license": "MIT", 2119 + "engines": { 2120 + "node": ">= 18.0.0" 2121 + }, 2122 + "peerDependencies": { 2123 + "@babel/core": "^7.10.2", 2124 + "coffeescript": "^2.5.1", 2125 + "less": "^3.11.3 || ^4.0.0", 2126 + "postcss": "^7 || ^8", 2127 + "postcss-load-config": ">=3", 2128 + "pug": "^3.0.0", 2129 + "sass": "^1.26.8", 2130 + "stylus": ">=0.55", 2131 + "sugarss": "^2.0.0 || ^3.0.0 || ^4.0.0", 2132 + "svelte": "^4.0.0 || ^5.0.0-next.100 || ^5.0.0", 2133 + "typescript": "^5.0.0" 2134 + }, 2135 + "peerDependenciesMeta": { 2136 + "@babel/core": { 2137 + "optional": true 2138 + }, 2139 + "coffeescript": { 2140 + "optional": true 2141 + }, 2142 + "less": { 2143 + "optional": true 2144 + }, 2145 + "postcss": { 2146 + "optional": true 2147 + }, 2148 + "postcss-load-config": { 2149 + "optional": true 2150 + }, 2151 + "pug": { 2152 + "optional": true 2153 + }, 2154 + "sass": { 2155 + "optional": true 2156 + }, 2157 + "stylus": { 2158 + "optional": true 2159 + }, 2160 + "sugarss": { 2161 + "optional": true 2162 + }, 2163 + "typescript": { 2164 + "optional": true 2165 + } 2166 + } 2167 + }, 2168 + "node_modules/tailwindcss": { 2169 + "version": "4.1.18", 2170 + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.18.tgz", 2171 + "integrity": "sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==", 2172 + "license": "MIT" 2173 + }, 2174 + "node_modules/tapable": { 2175 + "version": "2.3.0", 2176 + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz", 2177 + "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==", 2178 + "dev": true, 2179 + "license": "MIT", 2180 + "engines": { 2181 + "node": ">=6" 2182 + }, 2183 + "funding": { 2184 + "type": "opencollective", 2185 + "url": "https://opencollective.com/webpack" 2186 + } 2187 + }, 2188 + "node_modules/typescript": { 2189 + "version": "5.9.3", 2190 + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", 2191 + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", 2192 + "dev": true, 2193 + "license": "Apache-2.0", 2194 + "bin": { 2195 + "tsc": "bin/tsc", 2196 + "tsserver": "bin/tsserver" 2197 + }, 2198 + "engines": { 2199 + "node": ">=14.17" 2200 + } 2201 + }, 2202 + "node_modules/undici-types": { 2203 + "version": "7.16.0", 2204 + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", 2205 + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", 2206 + "dev": true, 2207 + "license": "MIT" 2208 + }, 2209 + "node_modules/zimmerframe": { 2210 + "version": "1.1.4", 2211 + "resolved": "https://registry.npmjs.org/zimmerframe/-/zimmerframe-1.1.4.tgz", 2212 + "integrity": "sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==", 2213 + "license": "MIT" 2214 + } 2215 + } 2216 + }
+22
web/package.json
··· 1 + { 2 + "devDependencies": { 3 + "@types/node": "^25.0.3", 4 + "esbuild": "0.27.2", 5 + "esbuild-svelte": "^0.9.4", 6 + "svelte-preprocess": "^6.0.3", 7 + "typescript": "^5.6.3", 8 + "@tailwindcss/cli": "^4.1.18" 9 + }, 10 + "dependencies": { 11 + "@inertiajs/svelte": "2.3.8", 12 + "svelte": "^5.46.3", 13 + "tailwindcss": "^4.1.18" 14 + }, 15 + "scripts": { 16 + "watch:js": "node esbuild.config.ts --watch", 17 + "build:js": "node esbuild.config.ts --deploy", 18 + "watch:css": "tailwindcss -i styles/app.css -o ../private/assets/styles.css --watch", 19 + "build:css": "tailwindcss -i styles/app.css -o ../private/assets/styles.css --minify" 20 + }, 21 + "type": "module" 22 + }
+9
web/styles/app.css
··· 1 + @layer theme, base, components, utilities; 2 + 3 + @import "tailwindcss/theme.css" layer(theme); 4 + @import "tailwindcss/preflight.css" layer(base); 5 + @import "tailwindcss/utilities.css" layer(utilities); 6 + 7 + body { 8 + background-color: red; 9 + }
+19
web/tsconfig.json
··· 1 + { 2 + "compilerOptions": { 3 + "module": "es2022", 4 + "target": "es2022", 5 + "moduleResolution": "bundler", 6 + "isolatedModules": true, 7 + "verbatimModuleSyntax": true, 8 + "lib": ["esnext", "DOM", "DOM.Iterable"], 9 + "skipLibCheck": true, 10 + "baseUrl": ".", 11 + "paths": { 12 + "$lib/*": ["lib/*"], 13 + "$components/*": ["./components/*"], 14 + "$routes/*": ["lib/.gen/routes/*"], 15 + "$schemas/*": ["lib/.gen/schemas/*"], 16 + }, 17 + }, 18 + "exclude": ["./node_modules/**"], 19 + }
+11
web/views/Index.svelte
··· 1 + <script lang="ts"> 2 + type Props = {}; 3 + </script> 4 + 5 + <h1>Home</h1> 6 + 7 + <style> 8 + h1 { 9 + font-size: var(--text-xs); 10 + } 11 + </style>
web/views/library/Artists.svelte

This is a binary file and will not be displayed.

web/views/library/Index.svelte

This is a binary file and will not be displayed.