victor HF Staff commited on
Commit
dac6daa
·
0 Parent(s):

Initial commit

Browse files
.gitignore ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ node_modules
2
+
3
+ # Output
4
+ .output
5
+ .vercel
6
+ /.svelte-kit
7
+ /build
8
+
9
+ # OS
10
+ .DS_Store
11
+ Thumbs.db
12
+
13
+ # Env
14
+ .env
15
+ .env.*
16
+ !.env.example
17
+ !.env.test
18
+
19
+ # Vite
20
+ vite.config.js.timestamp-*
21
+ vite.config.ts.timestamp-*
.npmrc ADDED
@@ -0,0 +1 @@
 
 
1
+ engine-strict=true
.prettierignore ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ # Package Managers
2
+ package-lock.json
3
+ pnpm-lock.yaml
4
+ yarn.lock
.prettierrc ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "useTabs": true,
3
+ "singleQuote": true,
4
+ "trailingComma": "none",
5
+ "printWidth": 100,
6
+ "plugins": ["prettier-plugin-svelte"],
7
+ "overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
8
+ }
README.md ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # create-svelte
2
+
3
+ Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/main/packages/create-svelte).
4
+
5
+ ## Creating a project
6
+
7
+ If you're seeing this, you've probably already done this step. Congrats!
8
+
9
+ ```bash
10
+ # create a new project in the current directory
11
+ npm create svelte@latest
12
+
13
+ # create a new project in my-app
14
+ npm create svelte@latest my-app
15
+ ```
16
+
17
+ ## Developing
18
+
19
+ Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
20
+
21
+ ```bash
22
+ npm run dev
23
+
24
+ # or start the server and open the app in a new browser tab
25
+ npm run dev -- --open
26
+ ```
27
+
28
+ ## Building
29
+
30
+ To create a production version of your app:
31
+
32
+ ```bash
33
+ npm run build
34
+ ```
35
+
36
+ You can preview the production build with `npm run preview`.
37
+
38
+ > To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.
package.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "inference-playground",
3
+ "version": "0.0.1",
4
+ "private": true,
5
+ "scripts": {
6
+ "dev": "vite dev",
7
+ "build": "vite build",
8
+ "preview": "vite preview",
9
+ "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
10
+ "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
11
+ "lint": "prettier --check .",
12
+ "format": "prettier --write ."
13
+ },
14
+ "devDependencies": {
15
+ "@sveltejs/adapter-auto": "^3.0.0",
16
+ "@sveltejs/kit": "^2.0.0",
17
+ "@sveltejs/vite-plugin-svelte": "^3.0.0",
18
+ "prettier": "^3.1.1",
19
+ "prettier-plugin-svelte": "^3.1.2",
20
+ "svelte": "^4.2.7",
21
+ "svelte-check": "^3.6.0",
22
+ "tslib": "^2.4.1",
23
+ "typescript": "^5.0.0",
24
+ "vite": "^5.0.3"
25
+ },
26
+ "type": "module"
27
+ }
pnpm-lock.yaml ADDED
@@ -0,0 +1,1159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ lockfileVersion: '6.0'
2
+
3
+ settings:
4
+ autoInstallPeers: true
5
+ excludeLinksFromLockfile: false
6
+
7
+ devDependencies:
8
+ '@sveltejs/adapter-auto':
9
+ specifier: ^3.0.0
10
+ version: 3.2.2(@sveltejs/[email protected])
11
+ '@sveltejs/kit':
12
+ specifier: ^2.0.0
13
14
+ '@sveltejs/vite-plugin-svelte':
15
+ specifier: ^3.0.0
16
17
+ prettier:
18
+ specifier: ^3.1.1
19
+ version: 3.3.2
20
+ prettier-plugin-svelte:
21
+ specifier: ^3.1.2
22
23
+ svelte:
24
+ specifier: ^4.2.7
25
+ version: 4.2.18
26
+ svelte-check:
27
+ specifier: ^3.6.0
28
+ version: 3.8.4([email protected])
29
+ tslib:
30
+ specifier: ^2.4.1
31
+ version: 2.6.3
32
+ typescript:
33
+ specifier: ^5.0.0
34
+ version: 5.5.2
35
+ vite:
36
+ specifier: ^5.0.3
37
+ version: 5.3.1
38
+
39
+ packages:
40
+
41
+ /@ampproject/[email protected]:
42
+ resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
43
+ engines: {node: '>=6.0.0'}
44
+ dependencies:
45
+ '@jridgewell/gen-mapping': 0.3.5
46
+ '@jridgewell/trace-mapping': 0.3.25
47
+ dev: true
48
+
49
+ /@esbuild/[email protected]:
50
+ resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
51
+ engines: {node: '>=12'}
52
+ cpu: [ppc64]
53
+ os: [aix]
54
+ requiresBuild: true
55
+ dev: true
56
+ optional: true
57
+
58
+ /@esbuild/[email protected]:
59
+ resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
60
+ engines: {node: '>=12'}
61
+ cpu: [arm64]
62
+ os: [android]
63
+ requiresBuild: true
64
+ dev: true
65
+ optional: true
66
+
67
+ /@esbuild/[email protected]:
68
+ resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
69
+ engines: {node: '>=12'}
70
+ cpu: [arm]
71
+ os: [android]
72
+ requiresBuild: true
73
+ dev: true
74
+ optional: true
75
+
76
+ /@esbuild/[email protected]:
77
+ resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
78
+ engines: {node: '>=12'}
79
+ cpu: [x64]
80
+ os: [android]
81
+ requiresBuild: true
82
+ dev: true
83
+ optional: true
84
+
85
+ /@esbuild/[email protected]:
86
+ resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
87
+ engines: {node: '>=12'}
88
+ cpu: [arm64]
89
+ os: [darwin]
90
+ requiresBuild: true
91
+ dev: true
92
+ optional: true
93
+
94
+ /@esbuild/[email protected]:
95
+ resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
96
+ engines: {node: '>=12'}
97
+ cpu: [x64]
98
+ os: [darwin]
99
+ requiresBuild: true
100
+ dev: true
101
+ optional: true
102
+
103
+ /@esbuild/[email protected]:
104
+ resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
105
+ engines: {node: '>=12'}
106
+ cpu: [arm64]
107
+ os: [freebsd]
108
+ requiresBuild: true
109
+ dev: true
110
+ optional: true
111
+
112
+ /@esbuild/[email protected]:
113
+ resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
114
+ engines: {node: '>=12'}
115
+ cpu: [x64]
116
+ os: [freebsd]
117
+ requiresBuild: true
118
+ dev: true
119
+ optional: true
120
+
121
+ /@esbuild/[email protected]:
122
+ resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
123
+ engines: {node: '>=12'}
124
+ cpu: [arm64]
125
+ os: [linux]
126
+ requiresBuild: true
127
+ dev: true
128
+ optional: true
129
+
130
+ /@esbuild/[email protected]:
131
+ resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
132
+ engines: {node: '>=12'}
133
+ cpu: [arm]
134
+ os: [linux]
135
+ requiresBuild: true
136
+ dev: true
137
+ optional: true
138
+
139
+ /@esbuild/[email protected]:
140
+ resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
141
+ engines: {node: '>=12'}
142
+ cpu: [ia32]
143
+ os: [linux]
144
+ requiresBuild: true
145
+ dev: true
146
+ optional: true
147
+
148
+ /@esbuild/[email protected]:
149
+ resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
150
+ engines: {node: '>=12'}
151
+ cpu: [loong64]
152
+ os: [linux]
153
+ requiresBuild: true
154
+ dev: true
155
+ optional: true
156
+
157
+ /@esbuild/[email protected]:
158
+ resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
159
+ engines: {node: '>=12'}
160
+ cpu: [mips64el]
161
+ os: [linux]
162
+ requiresBuild: true
163
+ dev: true
164
+ optional: true
165
+
166
+ /@esbuild/[email protected]:
167
+ resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
168
+ engines: {node: '>=12'}
169
+ cpu: [ppc64]
170
+ os: [linux]
171
+ requiresBuild: true
172
+ dev: true
173
+ optional: true
174
+
175
+ /@esbuild/[email protected]:
176
+ resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
177
+ engines: {node: '>=12'}
178
+ cpu: [riscv64]
179
+ os: [linux]
180
+ requiresBuild: true
181
+ dev: true
182
+ optional: true
183
+
184
+ /@esbuild/[email protected]:
185
+ resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
186
+ engines: {node: '>=12'}
187
+ cpu: [s390x]
188
+ os: [linux]
189
+ requiresBuild: true
190
+ dev: true
191
+ optional: true
192
+
193
+ /@esbuild/[email protected]:
194
+ resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
195
+ engines: {node: '>=12'}
196
+ cpu: [x64]
197
+ os: [linux]
198
+ requiresBuild: true
199
+ dev: true
200
+ optional: true
201
+
202
+ /@esbuild/[email protected]:
203
+ resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
204
+ engines: {node: '>=12'}
205
+ cpu: [x64]
206
+ os: [netbsd]
207
+ requiresBuild: true
208
+ dev: true
209
+ optional: true
210
+
211
+ /@esbuild/[email protected]:
212
+ resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
213
+ engines: {node: '>=12'}
214
+ cpu: [x64]
215
+ os: [openbsd]
216
+ requiresBuild: true
217
+ dev: true
218
+ optional: true
219
+
220
+ /@esbuild/[email protected]:
221
+ resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
222
+ engines: {node: '>=12'}
223
+ cpu: [x64]
224
+ os: [sunos]
225
+ requiresBuild: true
226
+ dev: true
227
+ optional: true
228
+
229
+ /@esbuild/[email protected]:
230
+ resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
231
+ engines: {node: '>=12'}
232
+ cpu: [arm64]
233
+ os: [win32]
234
+ requiresBuild: true
235
+ dev: true
236
+ optional: true
237
+
238
+ /@esbuild/[email protected]:
239
+ resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
240
+ engines: {node: '>=12'}
241
+ cpu: [ia32]
242
+ os: [win32]
243
+ requiresBuild: true
244
+ dev: true
245
+ optional: true
246
+
247
+ /@esbuild/[email protected]:
248
+ resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
249
+ engines: {node: '>=12'}
250
+ cpu: [x64]
251
+ os: [win32]
252
+ requiresBuild: true
253
+ dev: true
254
+ optional: true
255
+
256
+ /@jridgewell/[email protected]:
257
+ resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
258
+ engines: {node: '>=6.0.0'}
259
+ dependencies:
260
+ '@jridgewell/set-array': 1.2.1
261
+ '@jridgewell/sourcemap-codec': 1.4.15
262
+ '@jridgewell/trace-mapping': 0.3.25
263
+ dev: true
264
+
265
+ /@jridgewell/[email protected]:
266
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
267
+ engines: {node: '>=6.0.0'}
268
+ dev: true
269
+
270
+ /@jridgewell/[email protected]:
271
+ resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
272
+ engines: {node: '>=6.0.0'}
273
+ dev: true
274
+
275
+ /@jridgewell/[email protected]:
276
+ resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
277
+ dev: true
278
+
279
+ /@jridgewell/[email protected]:
280
+ resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
281
+ dependencies:
282
+ '@jridgewell/resolve-uri': 3.1.2
283
+ '@jridgewell/sourcemap-codec': 1.4.15
284
+ dev: true
285
+
286
+ /@polka/[email protected]:
287
+ resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
288
+ dev: true
289
+
290
+ /@rollup/[email protected]:
291
+ resolution: {integrity: sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==}
292
+ cpu: [arm]
293
+ os: [android]
294
+ requiresBuild: true
295
+ dev: true
296
+ optional: true
297
+
298
+ /@rollup/[email protected]:
299
+ resolution: {integrity: sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==}
300
+ cpu: [arm64]
301
+ os: [android]
302
+ requiresBuild: true
303
+ dev: true
304
+ optional: true
305
+
306
+ /@rollup/[email protected]:
307
+ resolution: {integrity: sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==}
308
+ cpu: [arm64]
309
+ os: [darwin]
310
+ requiresBuild: true
311
+ dev: true
312
+ optional: true
313
+
314
+ /@rollup/[email protected]:
315
+ resolution: {integrity: sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==}
316
+ cpu: [x64]
317
+ os: [darwin]
318
+ requiresBuild: true
319
+ dev: true
320
+ optional: true
321
+
322
+ /@rollup/[email protected]:
323
+ resolution: {integrity: sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==}
324
+ cpu: [arm]
325
+ os: [linux]
326
+ requiresBuild: true
327
+ dev: true
328
+ optional: true
329
+
330
+ /@rollup/[email protected]:
331
+ resolution: {integrity: sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==}
332
+ cpu: [arm]
333
+ os: [linux]
334
+ requiresBuild: true
335
+ dev: true
336
+ optional: true
337
+
338
+ /@rollup/[email protected]:
339
+ resolution: {integrity: sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==}
340
+ cpu: [arm64]
341
+ os: [linux]
342
+ requiresBuild: true
343
+ dev: true
344
+ optional: true
345
+
346
+ /@rollup/[email protected]:
347
+ resolution: {integrity: sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==}
348
+ cpu: [arm64]
349
+ os: [linux]
350
+ requiresBuild: true
351
+ dev: true
352
+ optional: true
353
+
354
+ /@rollup/[email protected]:
355
+ resolution: {integrity: sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==}
356
+ cpu: [ppc64]
357
+ os: [linux]
358
+ requiresBuild: true
359
+ dev: true
360
+ optional: true
361
+
362
+ /@rollup/[email protected]:
363
+ resolution: {integrity: sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==}
364
+ cpu: [riscv64]
365
+ os: [linux]
366
+ requiresBuild: true
367
+ dev: true
368
+ optional: true
369
+
370
+ /@rollup/[email protected]:
371
+ resolution: {integrity: sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==}
372
+ cpu: [s390x]
373
+ os: [linux]
374
+ requiresBuild: true
375
+ dev: true
376
+ optional: true
377
+
378
+ /@rollup/[email protected]:
379
+ resolution: {integrity: sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==}
380
+ cpu: [x64]
381
+ os: [linux]
382
+ requiresBuild: true
383
+ dev: true
384
+ optional: true
385
+
386
+ /@rollup/[email protected]:
387
+ resolution: {integrity: sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==}
388
+ cpu: [x64]
389
+ os: [linux]
390
+ requiresBuild: true
391
+ dev: true
392
+ optional: true
393
+
394
+ /@rollup/[email protected]:
395
+ resolution: {integrity: sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==}
396
+ cpu: [arm64]
397
+ os: [win32]
398
+ requiresBuild: true
399
+ dev: true
400
+ optional: true
401
+
402
+ /@rollup/[email protected]:
403
+ resolution: {integrity: sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==}
404
+ cpu: [ia32]
405
+ os: [win32]
406
+ requiresBuild: true
407
+ dev: true
408
+ optional: true
409
+
410
+ /@rollup/[email protected]:
411
+ resolution: {integrity: sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==}
412
+ cpu: [x64]
413
+ os: [win32]
414
+ requiresBuild: true
415
+ dev: true
416
+ optional: true
417
+
418
+ /@sveltejs/[email protected](@sveltejs/[email protected]):
419
+ resolution: {integrity: sha512-Mso5xPCA8zgcKrv+QioVlqMZkyUQ5MjDJiEPuG/Z7cV/5tmwV7LmcVWk5tZ+H0NCOV1x12AsoSpt/CwFwuVXMA==}
420
+ peerDependencies:
421
+ '@sveltejs/kit': ^2.0.0
422
+ dependencies:
423
+ '@sveltejs/kit': 2.5.17(@sveltejs/[email protected])([email protected])([email protected])
424
+ import-meta-resolve: 4.1.0
425
+ dev: true
426
+
427
428
+ resolution: {integrity: sha512-wiADwq7VreR3ctOyxilAZOfPz3Jiy2IIp2C8gfafhTdQaVuGIHllfqQm8dXZKADymKr3uShxzgLZFT+a+CM4kA==}
429
+ engines: {node: '>=18.13'}
430
+ hasBin: true
431
+ requiresBuild: true
432
+ peerDependencies:
433
+ '@sveltejs/vite-plugin-svelte': ^3.0.0
434
+ svelte: ^4.0.0 || ^5.0.0-next.0
435
+ vite: ^5.0.3
436
+ dependencies:
437
+ '@sveltejs/vite-plugin-svelte': 3.1.1([email protected])([email protected])
438
+ '@types/cookie': 0.6.0
439
+ cookie: 0.6.0
440
+ devalue: 5.0.0
441
+ esm-env: 1.0.0
442
+ import-meta-resolve: 4.1.0
443
+ kleur: 4.1.5
444
+ magic-string: 0.30.10
445
+ mrmime: 2.0.0
446
+ sade: 1.8.1
447
+ set-cookie-parser: 2.6.0
448
+ sirv: 2.0.4
449
+ svelte: 4.2.18
450
+ tiny-glob: 0.2.9
451
+ vite: 5.3.1
452
+ dev: true
453
+
454
455
+ resolution: {integrity: sha512-9QX28IymvBlSCqsCll5t0kQVxipsfhFFL+L2t3nTWfXnddYwxBuAEtTtlaVQpRz9c37BhJjltSeY4AJSC03SSg==}
456
+ engines: {node: ^18.0.0 || >=20}
457
+ peerDependencies:
458
+ '@sveltejs/vite-plugin-svelte': ^3.0.0
459
+ svelte: ^4.0.0 || ^5.0.0-next.0
460
+ vite: ^5.0.0
461
+ dependencies:
462
+ '@sveltejs/vite-plugin-svelte': 3.1.1([email protected])([email protected])
463
+ debug: 4.3.5
464
+ svelte: 4.2.18
465
+ vite: 5.3.1
466
+ transitivePeerDependencies:
467
+ - supports-color
468
+ dev: true
469
+
470
471
+ resolution: {integrity: sha512-rimpFEAboBBHIlzISibg94iP09k/KYdHgVhJlcsTfn7KMBhc70jFX/GRWkRdFCc2fdnk+4+Bdfej23cMDnJS6A==}
472
+ engines: {node: ^18.0.0 || >=20}
473
+ peerDependencies:
474
+ svelte: ^4.0.0 || ^5.0.0-next.0
475
+ vite: ^5.0.0
476
+ dependencies:
477
+ '@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/[email protected])([email protected])([email protected])
478
+ debug: 4.3.5
479
+ deepmerge: 4.3.1
480
+ kleur: 4.1.5
481
+ magic-string: 0.30.10
482
+ svelte: 4.2.18
483
+ svelte-hmr: 0.16.0([email protected])
484
+ vite: 5.3.1
485
+ vitefu: 0.2.5([email protected])
486
+ transitivePeerDependencies:
487
+ - supports-color
488
+ dev: true
489
+
490
+ /@types/[email protected]:
491
+ resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==}
492
+ dev: true
493
+
494
+ /@types/[email protected]:
495
+ resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
496
+ dev: true
497
+
498
+ /@types/[email protected]:
499
+ resolution: {integrity: sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==}
500
+ dev: true
501
+
502
503
+ resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==}
504
+ engines: {node: '>=0.4.0'}
505
+ hasBin: true
506
+ dev: true
507
+
508
509
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
510
+ engines: {node: '>= 8'}
511
+ dependencies:
512
+ normalize-path: 3.0.0
513
+ picomatch: 2.3.1
514
+ dev: true
515
+
516
517
+ resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
518
+ dependencies:
519
+ dequal: 2.0.3
520
+ dev: true
521
+
522
523
+ resolution: {integrity: sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==}
524
+ dependencies:
525
+ dequal: 2.0.3
526
+ dev: true
527
+
528
529
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
530
+ dev: true
531
+
532
533
+ resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
534
+ engines: {node: '>=8'}
535
+ dev: true
536
+
537
538
+ resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
539
+ dependencies:
540
+ balanced-match: 1.0.2
541
+ concat-map: 0.0.1
542
+ dev: true
543
+
544
545
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
546
+ engines: {node: '>=8'}
547
+ dependencies:
548
+ fill-range: 7.1.1
549
+ dev: true
550
+
551
552
+ resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==}
553
+ engines: {node: '>=8.0.0'}
554
+ dev: true
555
+
556
557
+ resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
558
+ engines: {node: '>= 8.10.0'}
559
+ dependencies:
560
+ anymatch: 3.1.3
561
+ braces: 3.0.3
562
+ glob-parent: 5.1.2
563
+ is-binary-path: 2.1.0
564
+ is-glob: 4.0.3
565
+ normalize-path: 3.0.0
566
+ readdirp: 3.6.0
567
+ optionalDependencies:
568
+ fsevents: 2.3.3
569
+ dev: true
570
+
571
572
+ resolution: {integrity: sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==}
573
+ dependencies:
574
+ '@jridgewell/sourcemap-codec': 1.4.15
575
+ '@types/estree': 1.0.5
576
+ acorn: 8.12.0
577
+ estree-walker: 3.0.3
578
+ periscopic: 3.1.0
579
+ dev: true
580
+
581
582
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
583
+ dev: true
584
+
585
586
+ resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
587
+ engines: {node: '>= 0.6'}
588
+ dev: true
589
+
590
591
+ resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
592
+ engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
593
+ dependencies:
594
+ mdn-data: 2.0.30
595
+ source-map-js: 1.2.0
596
+ dev: true
597
+
598
599
+ resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
600
+ engines: {node: '>=6.0'}
601
+ peerDependencies:
602
+ supports-color: '*'
603
+ peerDependenciesMeta:
604
+ supports-color:
605
+ optional: true
606
+ dependencies:
607
+ ms: 2.1.2
608
+ dev: true
609
+
610
611
+ resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
612
+ engines: {node: '>=0.10.0'}
613
+ dev: true
614
+
615
616
+ resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
617
+ engines: {node: '>=6'}
618
+ dev: true
619
+
620
621
+ resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
622
+ engines: {node: '>=8'}
623
+ dev: true
624
+
625
626
+ resolution: {integrity: sha512-gO+/OMXF7488D+u3ue+G7Y4AA3ZmUnB3eHJXmBTgNHvr4ZNzl36A0ZtG+XCRNYCkYx/bFmw4qtkoFLa+wSrwAA==}
627
+ dev: true
628
+
629
630
+ resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==}
631
+ dev: true
632
+
633
634
+ resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
635
+ engines: {node: '>=12'}
636
+ hasBin: true
637
+ requiresBuild: true
638
+ optionalDependencies:
639
+ '@esbuild/aix-ppc64': 0.21.5
640
+ '@esbuild/android-arm': 0.21.5
641
+ '@esbuild/android-arm64': 0.21.5
642
+ '@esbuild/android-x64': 0.21.5
643
+ '@esbuild/darwin-arm64': 0.21.5
644
+ '@esbuild/darwin-x64': 0.21.5
645
+ '@esbuild/freebsd-arm64': 0.21.5
646
+ '@esbuild/freebsd-x64': 0.21.5
647
+ '@esbuild/linux-arm': 0.21.5
648
+ '@esbuild/linux-arm64': 0.21.5
649
+ '@esbuild/linux-ia32': 0.21.5
650
+ '@esbuild/linux-loong64': 0.21.5
651
+ '@esbuild/linux-mips64el': 0.21.5
652
+ '@esbuild/linux-ppc64': 0.21.5
653
+ '@esbuild/linux-riscv64': 0.21.5
654
+ '@esbuild/linux-s390x': 0.21.5
655
+ '@esbuild/linux-x64': 0.21.5
656
+ '@esbuild/netbsd-x64': 0.21.5
657
+ '@esbuild/openbsd-x64': 0.21.5
658
+ '@esbuild/sunos-x64': 0.21.5
659
+ '@esbuild/win32-arm64': 0.21.5
660
+ '@esbuild/win32-ia32': 0.21.5
661
+ '@esbuild/win32-x64': 0.21.5
662
+ dev: true
663
+
664
665
+ resolution: {integrity: sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==}
666
+ dev: true
667
+
668
669
+ resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
670
+ dependencies:
671
+ '@types/estree': 1.0.5
672
+ dev: true
673
+
674
675
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
676
+ engines: {node: '>=8'}
677
+ dependencies:
678
+ to-regex-range: 5.0.1
679
+ dev: true
680
+
681
682
+ resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
683
+ dev: true
684
+
685
686
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
687
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
688
+ os: [darwin]
689
+ requiresBuild: true
690
+ dev: true
691
+ optional: true
692
+
693
694
+ resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
695
+ engines: {node: '>= 6'}
696
+ dependencies:
697
+ is-glob: 4.0.3
698
+ dev: true
699
+
700
701
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
702
+ deprecated: Glob versions prior to v9 are no longer supported
703
+ dependencies:
704
+ fs.realpath: 1.0.0
705
+ inflight: 1.0.6
706
+ inherits: 2.0.4
707
+ minimatch: 3.1.2
708
+ once: 1.4.0
709
+ path-is-absolute: 1.0.1
710
+ dev: true
711
+
712
713
+ resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
714
+ dev: true
715
+
716
717
+ resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
718
+ dev: true
719
+
720
721
+ resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
722
+ dev: true
723
+
724
725
+ resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==}
726
+ dev: true
727
+
728
729
+ resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
730
+ deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
731
+ dependencies:
732
+ once: 1.4.0
733
+ wrappy: 1.0.2
734
+ dev: true
735
+
736
737
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
738
+ dev: true
739
+
740
741
+ resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
742
+ engines: {node: '>=8'}
743
+ dependencies:
744
+ binary-extensions: 2.3.0
745
+ dev: true
746
+
747
748
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
749
+ engines: {node: '>=0.10.0'}
750
+ dev: true
751
+
752
753
+ resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
754
+ engines: {node: '>=0.10.0'}
755
+ dependencies:
756
+ is-extglob: 2.1.1
757
+ dev: true
758
+
759
760
+ resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
761
+ engines: {node: '>=0.12.0'}
762
+ dev: true
763
+
764
765
+ resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==}
766
+ dependencies:
767
+ '@types/estree': 1.0.5
768
+ dev: true
769
+
770
771
+ resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
772
+ engines: {node: '>=6'}
773
+ dev: true
774
+
775
776
+ resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==}
777
+ dev: true
778
+
779
780
+ resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
781
+ dependencies:
782
+ '@jridgewell/sourcemap-codec': 1.4.15
783
+ dev: true
784
+
785
786
+ resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
787
+ dev: true
788
+
789
790
+ resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
791
+ engines: {node: '>=4'}
792
+ dev: true
793
+
794
795
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
796
+ dependencies:
797
+ brace-expansion: 1.1.11
798
+ dev: true
799
+
800
801
+ resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
802
+ dev: true
803
+
804
805
+ resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
806
+ hasBin: true
807
+ dependencies:
808
+ minimist: 1.2.8
809
+ dev: true
810
+
811
812
+ resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
813
+ engines: {node: '>=4'}
814
+ dev: true
815
+
816
817
+ resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
818
+ engines: {node: '>=10'}
819
+ dev: true
820
+
821
822
+ resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
823
+ dev: true
824
+
825
826
+ resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
827
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
828
+ hasBin: true
829
+ dev: true
830
+
831
832
+ resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
833
+ engines: {node: '>=0.10.0'}
834
+ dev: true
835
+
836
837
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
838
+ dependencies:
839
+ wrappy: 1.0.2
840
+ dev: true
841
+
842
843
+ resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
844
+ engines: {node: '>=0.10.0'}
845
+ dev: true
846
+
847
848
+ resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
849
+ dependencies:
850
+ '@types/estree': 1.0.5
851
+ estree-walker: 3.0.3
852
+ is-reference: 3.0.2
853
+ dev: true
854
+
855
856
+ resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
857
+ dev: true
858
+
859
860
+ resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
861
+ engines: {node: '>=8.6'}
862
+ dev: true
863
+
864
865
+ resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
866
+ engines: {node: ^10 || ^12 || >=14}
867
+ dependencies:
868
+ nanoid: 3.3.7
869
+ picocolors: 1.0.1
870
+ source-map-js: 1.2.0
871
+ dev: true
872
+
873
874
+ resolution: {integrity: sha512-vP/M/Goc8z4iVIvrwXwbrYVjJgA0Hf8PO1G4LBh/ocSt6vUP6sLvyu9F3ABEGr+dbKyxZjEKLkeFsWy/yYl0HQ==}
875
+ peerDependencies:
876
+ prettier: ^3.0.0
877
+ svelte: ^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0
878
+ dependencies:
879
+ prettier: 3.3.2
880
+ svelte: 4.2.18
881
+ dev: true
882
+
883
884
+ resolution: {integrity: sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==}
885
+ engines: {node: '>=14'}
886
+ hasBin: true
887
+ dev: true
888
+
889
890
+ resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
891
+ engines: {node: '>=8.10.0'}
892
+ dependencies:
893
+ picomatch: 2.3.1
894
+ dev: true
895
+
896
897
+ resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
898
+ deprecated: Rimraf versions prior to v4 are no longer supported
899
+ hasBin: true
900
+ dependencies:
901
+ glob: 7.2.3
902
+ dev: true
903
+
904
905
+ resolution: {integrity: sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==}
906
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
907
+ hasBin: true
908
+ dependencies:
909
+ '@types/estree': 1.0.5
910
+ optionalDependencies:
911
+ '@rollup/rollup-android-arm-eabi': 4.18.0
912
+ '@rollup/rollup-android-arm64': 4.18.0
913
+ '@rollup/rollup-darwin-arm64': 4.18.0
914
+ '@rollup/rollup-darwin-x64': 4.18.0
915
+ '@rollup/rollup-linux-arm-gnueabihf': 4.18.0
916
+ '@rollup/rollup-linux-arm-musleabihf': 4.18.0
917
+ '@rollup/rollup-linux-arm64-gnu': 4.18.0
918
+ '@rollup/rollup-linux-arm64-musl': 4.18.0
919
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.18.0
920
+ '@rollup/rollup-linux-riscv64-gnu': 4.18.0
921
+ '@rollup/rollup-linux-s390x-gnu': 4.18.0
922
+ '@rollup/rollup-linux-x64-gnu': 4.18.0
923
+ '@rollup/rollup-linux-x64-musl': 4.18.0
924
+ '@rollup/rollup-win32-arm64-msvc': 4.18.0
925
+ '@rollup/rollup-win32-ia32-msvc': 4.18.0
926
+ '@rollup/rollup-win32-x64-msvc': 4.18.0
927
+ fsevents: 2.3.3
928
+ dev: true
929
+
930
931
+ resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
932
+ engines: {node: '>=6'}
933
+ dependencies:
934
+ mri: 1.2.0
935
+ dev: true
936
+
937
938
+ resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==}
939
+ dependencies:
940
+ es6-promise: 3.3.1
941
+ graceful-fs: 4.2.11
942
+ mkdirp: 0.5.6
943
+ rimraf: 2.7.1
944
+ dev: true
945
+
946
947
+ resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==}
948
+ dev: true
949
+
950
951
+ resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
952
+ engines: {node: '>= 10'}
953
+ dependencies:
954
+ '@polka/url': 1.0.0-next.25
955
+ mrmime: 2.0.0
956
+ totalist: 3.0.1
957
+ dev: true
958
+
959
960
+ resolution: {integrity: sha512-o7npfeJE6wi6J9l0/5LKshFzZ2rMatRiCDwYeDQaOzqdzRJwALhX7mk/A/ecg6wjMu7wdZbmXfD2S/vpOg0bdQ==}
961
+ hasBin: true
962
+ dependencies:
963
+ '@jridgewell/sourcemap-codec': 1.4.15
964
+ buffer-crc32: 1.0.0
965
+ minimist: 1.2.8
966
+ sander: 0.5.1
967
+ dev: true
968
+
969
970
+ resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
971
+ engines: {node: '>=0.10.0'}
972
+ dev: true
973
+
974
975
+ resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
976
+ engines: {node: '>=8'}
977
+ dependencies:
978
+ min-indent: 1.0.1
979
+ dev: true
980
+
981
982
+ resolution: {integrity: sha512-61aHMkdinWyH8BkkTX9jPLYxYzaAAz/FK/VQqdr2FiCQQ/q04WCwDlpGbHff1GdrMYTmW8chlTFvRWL9k0A8vg==}
983
+ hasBin: true
984
+ peerDependencies:
985
+ svelte: ^3.55.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0
986
+ dependencies:
987
+ '@jridgewell/trace-mapping': 0.3.25
988
+ chokidar: 3.6.0
989
+ picocolors: 1.0.1
990
+ sade: 1.8.1
991
+ svelte: 4.2.18
992
+ svelte-preprocess: 5.1.4([email protected])([email protected])
993
+ typescript: 5.5.2
994
+ transitivePeerDependencies:
995
+ - '@babel/core'
996
+ - coffeescript
997
+ - less
998
+ - postcss
999
+ - postcss-load-config
1000
+ - pug
1001
+ - sass
1002
+ - stylus
1003
+ - sugarss
1004
+ dev: true
1005
+
1006
1007
+ resolution: {integrity: sha512-Gyc7cOS3VJzLlfj7wKS0ZnzDVdv3Pn2IuVeJPk9m2skfhcu5bq3wtIZyQGggr7/Iim5rH5cncyQft/kRLupcnA==}
1008
+ engines: {node: ^12.20 || ^14.13.1 || >= 16}
1009
+ peerDependencies:
1010
+ svelte: ^3.19.0 || ^4.0.0
1011
+ dependencies:
1012
+ svelte: 4.2.18
1013
+ dev: true
1014
+
1015
1016
+ resolution: {integrity: sha512-IvnbQ6D6Ao3Gg6ftiM5tdbR6aAETwjhHV+UKGf5bHGYR69RQvF1ho0JKPcbUON4vy4R7zom13jPjgdOWCQ5hDA==}
1017
+ engines: {node: '>= 16.0.0'}
1018
+ requiresBuild: true
1019
+ peerDependencies:
1020
+ '@babel/core': ^7.10.2
1021
+ coffeescript: ^2.5.1
1022
+ less: ^3.11.3 || ^4.0.0
1023
+ postcss: ^7 || ^8
1024
+ postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0
1025
+ pug: ^3.0.0
1026
+ sass: ^1.26.8
1027
+ stylus: ^0.55.0
1028
+ sugarss: ^2.0.0 || ^3.0.0 || ^4.0.0
1029
+ svelte: ^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0
1030
+ typescript: '>=3.9.5 || ^4.0.0 || ^5.0.0'
1031
+ peerDependenciesMeta:
1032
+ '@babel/core':
1033
+ optional: true
1034
+ coffeescript:
1035
+ optional: true
1036
+ less:
1037
+ optional: true
1038
+ postcss:
1039
+ optional: true
1040
+ postcss-load-config:
1041
+ optional: true
1042
+ pug:
1043
+ optional: true
1044
+ sass:
1045
+ optional: true
1046
+ stylus:
1047
+ optional: true
1048
+ sugarss:
1049
+ optional: true
1050
+ typescript:
1051
+ optional: true
1052
+ dependencies:
1053
+ '@types/pug': 2.0.10
1054
+ detect-indent: 6.1.0
1055
+ magic-string: 0.30.10
1056
+ sorcery: 0.11.1
1057
+ strip-indent: 3.0.0
1058
+ svelte: 4.2.18
1059
+ typescript: 5.5.2
1060
+ dev: true
1061
+
1062
1063
+ resolution: {integrity: sha512-d0FdzYIiAePqRJEb90WlJDkjUEx42xhivxN8muUBmfZnP+tzUgz12DJ2hRJi8sIHCME7jeK1PTMgKPSfTd8JrA==}
1064
+ engines: {node: '>=16'}
1065
+ dependencies:
1066
+ '@ampproject/remapping': 2.3.0
1067
+ '@jridgewell/sourcemap-codec': 1.4.15
1068
+ '@jridgewell/trace-mapping': 0.3.25
1069
+ '@types/estree': 1.0.5
1070
+ acorn: 8.12.0
1071
+ aria-query: 5.3.0
1072
+ axobject-query: 4.0.0
1073
+ code-red: 1.0.4
1074
+ css-tree: 2.3.1
1075
+ estree-walker: 3.0.3
1076
+ is-reference: 3.0.2
1077
+ locate-character: 3.0.0
1078
+ magic-string: 0.30.10
1079
+ periscopic: 3.1.0
1080
+ dev: true
1081
+
1082
1083
+ resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==}
1084
+ dependencies:
1085
+ globalyzer: 0.1.0
1086
+ globrex: 0.1.2
1087
+ dev: true
1088
+
1089
1090
+ resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
1091
+ engines: {node: '>=8.0'}
1092
+ dependencies:
1093
+ is-number: 7.0.0
1094
+ dev: true
1095
+
1096
1097
+ resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
1098
+ engines: {node: '>=6'}
1099
+ dev: true
1100
+
1101
1102
+ resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
1103
+ dev: true
1104
+
1105
1106
+ resolution: {integrity: sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==}
1107
+ engines: {node: '>=14.17'}
1108
+ hasBin: true
1109
+ dev: true
1110
+
1111
1112
+ resolution: {integrity: sha512-XBmSKRLXLxiaPYamLv3/hnP/KXDai1NDexN0FpkTaZXTfycHvkRHoenpgl/fvuK/kPbB6xAgoyiryAhQNxYmAQ==}
1113
+ engines: {node: ^18.0.0 || >=20.0.0}
1114
+ hasBin: true
1115
+ peerDependencies:
1116
+ '@types/node': ^18.0.0 || >=20.0.0
1117
+ less: '*'
1118
+ lightningcss: ^1.21.0
1119
+ sass: '*'
1120
+ stylus: '*'
1121
+ sugarss: '*'
1122
+ terser: ^5.4.0
1123
+ peerDependenciesMeta:
1124
+ '@types/node':
1125
+ optional: true
1126
+ less:
1127
+ optional: true
1128
+ lightningcss:
1129
+ optional: true
1130
+ sass:
1131
+ optional: true
1132
+ stylus:
1133
+ optional: true
1134
+ sugarss:
1135
+ optional: true
1136
+ terser:
1137
+ optional: true
1138
+ dependencies:
1139
+ esbuild: 0.21.5
1140
+ postcss: 8.4.38
1141
+ rollup: 4.18.0
1142
+ optionalDependencies:
1143
+ fsevents: 2.3.3
1144
+ dev: true
1145
+
1146
1147
+ resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==}
1148
+ peerDependencies:
1149
+ vite: ^3.0.0 || ^4.0.0 || ^5.0.0
1150
+ peerDependenciesMeta:
1151
+ vite:
1152
+ optional: true
1153
+ dependencies:
1154
+ vite: 5.3.1
1155
+ dev: true
1156
+
1157
1158
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
1159
+ dev: true
src/app.d.ts ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // See https://kit.svelte.dev/docs/types#app
2
+ // for information about these interfaces
3
+ declare global {
4
+ namespace App {
5
+ // interface Error {}
6
+ // interface Locals {}
7
+ // interface PageData {}
8
+ // interface PageState {}
9
+ // interface Platform {}
10
+ }
11
+ }
12
+
13
+ export {};
src/app.html ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <link rel="icon" href="%sveltekit.assets%/favicon.png" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
7
+ %sveltekit.head%
8
+ </head>
9
+ <body data-sveltekit-preload-data="hover">
10
+ <div style="display: contents">%sveltekit.body%</div>
11
+ </body>
12
+ </html>
src/lib/index.ts ADDED
@@ -0,0 +1 @@
 
 
1
+ // place files you want to import through the `$lib` alias in this folder.
src/routes/+page.svelte ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ <h1>Welcome to SvelteKit</h1>
2
+ <p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p>
static/favicon.png ADDED
svelte.config.js ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import adapter from '@sveltejs/adapter-auto';
2
+ import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
3
+
4
+ /** @type {import('@sveltejs/kit').Config} */
5
+ const config = {
6
+ // Consult https://kit.svelte.dev/docs/integrations#preprocessors
7
+ // for more information about preprocessors
8
+ preprocess: vitePreprocess(),
9
+
10
+ kit: {
11
+ // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
12
+ // If your environment is not supported, or you settled on a specific environment, switch out the adapter.
13
+ // See https://kit.svelte.dev/docs/adapters for more information about adapters.
14
+ adapter: adapter()
15
+ }
16
+ };
17
+
18
+ export default config;
tsconfig.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "extends": "./.svelte-kit/tsconfig.json",
3
+ "compilerOptions": {
4
+ "allowJs": true,
5
+ "checkJs": true,
6
+ "esModuleInterop": true,
7
+ "forceConsistentCasingInFileNames": true,
8
+ "resolveJsonModule": true,
9
+ "skipLibCheck": true,
10
+ "sourceMap": true,
11
+ "strict": true,
12
+ "moduleResolution": "bundler"
13
+ }
14
+ // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
15
+ // except $lib which is handled by https://kit.svelte.dev/docs/configuration#files
16
+ //
17
+ // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
18
+ // from the referenced tsconfig.json - TypeScript does not merge them in
19
+ }
vite.config.ts ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import { sveltekit } from '@sveltejs/kit/vite';
2
+ import { defineConfig } from 'vite';
3
+
4
+ export default defineConfig({
5
+ plugins: [sveltekit()]
6
+ });