a standard.site publication renderer for SvelteKit.

init: library template setup

+1783
+24
.gitignore
··· 1 + node_modules 2 + 3 + # Output 4 + .output 5 + .vercel 6 + .netlify 7 + .wrangler 8 + /.svelte-kit 9 + /build 10 + /dist 11 + 12 + # OS 13 + .DS_Store 14 + Thumbs.db 15 + 16 + # Env 17 + .env 18 + .env.* 19 + !.env.example 20 + !.env.test 21 + 22 + # Vite 23 + vite.config.js.timestamp-* 24 + vite.config.ts.timestamp-*
+1
.npmrc
··· 1 + engine-strict=true
+9
.prettierignore
··· 1 + # Package Managers 2 + package-lock.json 3 + pnpm-lock.yaml 4 + yarn.lock 5 + bun.lock 6 + bun.lockb 7 + 8 + # Miscellaneous 9 + /static/
+16
.prettierrc
··· 1 + { 2 + "useTabs": true, 3 + "singleQuote": true, 4 + "trailingComma": "none", 5 + "printWidth": 100, 6 + "plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"], 7 + "overrides": [ 8 + { 9 + "files": "*.svelte", 10 + "options": { 11 + "parser": "svelte" 12 + } 13 + } 14 + ], 15 + "tailwindStylesheet": "./src/routes/layout.css" 16 + }
+5
.vscode/settings.json
··· 1 + { 2 + "files.associations": { 3 + "*.css": "tailwindcss" 4 + } 5 + }
+58
README.md
··· 1 + # Svelte library 2 + 3 + Everything you need to build a Svelte library, powered by [`sv`](https://npmjs.com/package/sv). 4 + 5 + Read more about creating a library [in the docs](https://svelte.dev/docs/kit/packaging). 6 + 7 + ## Creating a project 8 + 9 + If you're seeing this, you've probably already done this step. Congrats! 10 + 11 + ```sh 12 + # create a new project in the current directory 13 + npx sv create 14 + 15 + # create a new project in my-app 16 + npx sv create my-app 17 + ``` 18 + 19 + ## Developing 20 + 21 + Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: 22 + 23 + ```sh 24 + npm run dev 25 + 26 + # or start the server and open the app in a new browser tab 27 + npm run dev -- --open 28 + ``` 29 + 30 + Everything inside `src/lib` is part of your library, everything inside `src/routes` can be used as a showcase or preview app. 31 + 32 + ## Building 33 + 34 + To build your library: 35 + 36 + ```sh 37 + npm pack 38 + ``` 39 + 40 + To create a production version of your showcase app: 41 + 42 + ```sh 43 + npm run build 44 + ``` 45 + 46 + You can preview the production build with `npm run preview`. 47 + 48 + > To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment. 49 + 50 + ## Publishing 51 + 52 + Go into the `package.json` and give your package the desired name through the `"name"` option. Also consider adding a `"license"` field and point it to a `LICENSE` file which you can create from a template (one popular option is the [MIT license](https://opensource.org/license/mit/)). 53 + 54 + To publish your library to [npm](https://www.npmjs.com): 55 + 56 + ```sh 57 + npm publish 58 + ```
+55
package.json
··· 1 + { 2 + "name": "svelte-standard-site", 3 + "version": "0.0.1", 4 + "scripts": { 5 + "dev": "vite dev", 6 + "build": "vite build && npm run prepack", 7 + "preview": "vite preview", 8 + "prepare": "svelte-kit sync || echo ''", 9 + "prepack": "svelte-kit sync && svelte-package && publint", 10 + "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", 11 + "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", 12 + "format": "prettier --write .", 13 + "lint": "prettier --check ." 14 + }, 15 + "files": [ 16 + "dist", 17 + "!dist/**/*.test.*", 18 + "!dist/**/*.spec.*" 19 + ], 20 + "sideEffects": [ 21 + "**/*.css" 22 + ], 23 + "svelte": "./dist/index.js", 24 + "types": "./dist/index.d.ts", 25 + "type": "module", 26 + "exports": { 27 + ".": { 28 + "types": "./dist/index.d.ts", 29 + "svelte": "./dist/index.js" 30 + } 31 + }, 32 + "peerDependencies": { 33 + "svelte": "^5.0.0" 34 + }, 35 + "devDependencies": { 36 + "@sveltejs/adapter-auto": "^7.0.0", 37 + "@sveltejs/kit": "^2.49.1", 38 + "@sveltejs/package": "^2.5.7", 39 + "@sveltejs/vite-plugin-svelte": "^6.2.1", 40 + "@tailwindcss/typography": "^0.5.19", 41 + "@tailwindcss/vite": "^4.1.17", 42 + "prettier": "^3.7.4", 43 + "prettier-plugin-svelte": "^3.4.0", 44 + "prettier-plugin-tailwindcss": "^0.7.2", 45 + "publint": "^0.3.15", 46 + "svelte": "^5.45.6", 47 + "svelte-check": "^4.3.4", 48 + "tailwindcss": "^4.1.17", 49 + "typescript": "^5.9.3", 50 + "vite": "^7.2.6" 51 + }, 52 + "keywords": [ 53 + "svelte" 54 + ] 55 + }
+1536
pnpm-lock.yaml
··· 1 + lockfileVersion: '9.0' 2 + 3 + settings: 4 + autoInstallPeers: true 5 + excludeLinksFromLockfile: false 6 + 7 + importers: 8 + 9 + .: 10 + devDependencies: 11 + '@sveltejs/adapter-auto': 12 + specifier: ^7.0.0 13 + version: 7.0.0(@sveltejs/kit@2.50.0(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.46.4)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)))(svelte@5.46.4)(typescript@5.9.3)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2))) 14 + '@sveltejs/kit': 15 + specifier: ^2.49.1 16 + version: 2.50.0(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.46.4)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)))(svelte@5.46.4)(typescript@5.9.3)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)) 17 + '@sveltejs/package': 18 + specifier: ^2.5.7 19 + version: 2.5.7(svelte@5.46.4)(typescript@5.9.3) 20 + '@sveltejs/vite-plugin-svelte': 21 + specifier: ^6.2.1 22 + version: 6.2.4(svelte@5.46.4)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)) 23 + '@tailwindcss/typography': 24 + specifier: ^0.5.19 25 + version: 0.5.19(tailwindcss@4.1.18) 26 + '@tailwindcss/vite': 27 + specifier: ^4.1.17 28 + version: 4.1.18(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)) 29 + prettier: 30 + specifier: ^3.7.4 31 + version: 3.8.0 32 + prettier-plugin-svelte: 33 + specifier: ^3.4.0 34 + version: 3.4.1(prettier@3.8.0)(svelte@5.46.4) 35 + prettier-plugin-tailwindcss: 36 + specifier: ^0.7.2 37 + version: 0.7.2(prettier-plugin-svelte@3.4.1(prettier@3.8.0)(svelte@5.46.4))(prettier@3.8.0) 38 + publint: 39 + specifier: ^0.3.15 40 + version: 0.3.16 41 + svelte: 42 + specifier: ^5.45.6 43 + version: 5.46.4 44 + svelte-check: 45 + specifier: ^4.3.4 46 + version: 4.3.5(picomatch@4.0.3)(svelte@5.46.4)(typescript@5.9.3) 47 + tailwindcss: 48 + specifier: ^4.1.17 49 + version: 4.1.18 50 + typescript: 51 + specifier: ^5.9.3 52 + version: 5.9.3 53 + vite: 54 + specifier: ^7.2.6 55 + version: 7.3.1(jiti@2.6.1)(lightningcss@1.30.2) 56 + 57 + packages: 58 + 59 + '@esbuild/aix-ppc64@0.27.2': 60 + resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==} 61 + engines: {node: '>=18'} 62 + cpu: [ppc64] 63 + os: [aix] 64 + 65 + '@esbuild/android-arm64@0.27.2': 66 + resolution: {integrity: sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==} 67 + engines: {node: '>=18'} 68 + cpu: [arm64] 69 + os: [android] 70 + 71 + '@esbuild/android-arm@0.27.2': 72 + resolution: {integrity: sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==} 73 + engines: {node: '>=18'} 74 + cpu: [arm] 75 + os: [android] 76 + 77 + '@esbuild/android-x64@0.27.2': 78 + resolution: {integrity: sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==} 79 + engines: {node: '>=18'} 80 + cpu: [x64] 81 + os: [android] 82 + 83 + '@esbuild/darwin-arm64@0.27.2': 84 + resolution: {integrity: sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==} 85 + engines: {node: '>=18'} 86 + cpu: [arm64] 87 + os: [darwin] 88 + 89 + '@esbuild/darwin-x64@0.27.2': 90 + resolution: {integrity: sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==} 91 + engines: {node: '>=18'} 92 + cpu: [x64] 93 + os: [darwin] 94 + 95 + '@esbuild/freebsd-arm64@0.27.2': 96 + resolution: {integrity: sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==} 97 + engines: {node: '>=18'} 98 + cpu: [arm64] 99 + os: [freebsd] 100 + 101 + '@esbuild/freebsd-x64@0.27.2': 102 + resolution: {integrity: sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==} 103 + engines: {node: '>=18'} 104 + cpu: [x64] 105 + os: [freebsd] 106 + 107 + '@esbuild/linux-arm64@0.27.2': 108 + resolution: {integrity: sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==} 109 + engines: {node: '>=18'} 110 + cpu: [arm64] 111 + os: [linux] 112 + 113 + '@esbuild/linux-arm@0.27.2': 114 + resolution: {integrity: sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==} 115 + engines: {node: '>=18'} 116 + cpu: [arm] 117 + os: [linux] 118 + 119 + '@esbuild/linux-ia32@0.27.2': 120 + resolution: {integrity: sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==} 121 + engines: {node: '>=18'} 122 + cpu: [ia32] 123 + os: [linux] 124 + 125 + '@esbuild/linux-loong64@0.27.2': 126 + resolution: {integrity: sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==} 127 + engines: {node: '>=18'} 128 + cpu: [loong64] 129 + os: [linux] 130 + 131 + '@esbuild/linux-mips64el@0.27.2': 132 + resolution: {integrity: sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==} 133 + engines: {node: '>=18'} 134 + cpu: [mips64el] 135 + os: [linux] 136 + 137 + '@esbuild/linux-ppc64@0.27.2': 138 + resolution: {integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==} 139 + engines: {node: '>=18'} 140 + cpu: [ppc64] 141 + os: [linux] 142 + 143 + '@esbuild/linux-riscv64@0.27.2': 144 + resolution: {integrity: sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==} 145 + engines: {node: '>=18'} 146 + cpu: [riscv64] 147 + os: [linux] 148 + 149 + '@esbuild/linux-s390x@0.27.2': 150 + resolution: {integrity: sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==} 151 + engines: {node: '>=18'} 152 + cpu: [s390x] 153 + os: [linux] 154 + 155 + '@esbuild/linux-x64@0.27.2': 156 + resolution: {integrity: sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==} 157 + engines: {node: '>=18'} 158 + cpu: [x64] 159 + os: [linux] 160 + 161 + '@esbuild/netbsd-arm64@0.27.2': 162 + resolution: {integrity: sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==} 163 + engines: {node: '>=18'} 164 + cpu: [arm64] 165 + os: [netbsd] 166 + 167 + '@esbuild/netbsd-x64@0.27.2': 168 + resolution: {integrity: sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==} 169 + engines: {node: '>=18'} 170 + cpu: [x64] 171 + os: [netbsd] 172 + 173 + '@esbuild/openbsd-arm64@0.27.2': 174 + resolution: {integrity: sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==} 175 + engines: {node: '>=18'} 176 + cpu: [arm64] 177 + os: [openbsd] 178 + 179 + '@esbuild/openbsd-x64@0.27.2': 180 + resolution: {integrity: sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==} 181 + engines: {node: '>=18'} 182 + cpu: [x64] 183 + os: [openbsd] 184 + 185 + '@esbuild/openharmony-arm64@0.27.2': 186 + resolution: {integrity: sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==} 187 + engines: {node: '>=18'} 188 + cpu: [arm64] 189 + os: [openharmony] 190 + 191 + '@esbuild/sunos-x64@0.27.2': 192 + resolution: {integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==} 193 + engines: {node: '>=18'} 194 + cpu: [x64] 195 + os: [sunos] 196 + 197 + '@esbuild/win32-arm64@0.27.2': 198 + resolution: {integrity: sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==} 199 + engines: {node: '>=18'} 200 + cpu: [arm64] 201 + os: [win32] 202 + 203 + '@esbuild/win32-ia32@0.27.2': 204 + resolution: {integrity: sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==} 205 + engines: {node: '>=18'} 206 + cpu: [ia32] 207 + os: [win32] 208 + 209 + '@esbuild/win32-x64@0.27.2': 210 + resolution: {integrity: sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==} 211 + engines: {node: '>=18'} 212 + cpu: [x64] 213 + os: [win32] 214 + 215 + '@jridgewell/gen-mapping@0.3.13': 216 + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} 217 + 218 + '@jridgewell/remapping@2.3.5': 219 + resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} 220 + 221 + '@jridgewell/resolve-uri@3.1.2': 222 + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 223 + engines: {node: '>=6.0.0'} 224 + 225 + '@jridgewell/sourcemap-codec@1.5.5': 226 + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} 227 + 228 + '@jridgewell/trace-mapping@0.3.31': 229 + resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} 230 + 231 + '@polka/url@1.0.0-next.29': 232 + resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==} 233 + 234 + '@publint/pack@0.1.2': 235 + resolution: {integrity: sha512-S+9ANAvUmjutrshV4jZjaiG8XQyuJIZ8a4utWmN/vW1sgQ9IfBnPndwkmQYw53QmouOIytT874u65HEmu6H5jw==} 236 + engines: {node: '>=18'} 237 + 238 + '@rollup/rollup-android-arm-eabi@4.55.1': 239 + resolution: {integrity: sha512-9R0DM/ykwfGIlNu6+2U09ga0WXeZ9MRC2Ter8jnz8415VbuIykVuc6bhdrbORFZANDmTDvq26mJrEVTl8TdnDg==} 240 + cpu: [arm] 241 + os: [android] 242 + 243 + '@rollup/rollup-android-arm64@4.55.1': 244 + resolution: {integrity: sha512-eFZCb1YUqhTysgW3sj/55du5cG57S7UTNtdMjCW7LwVcj3dTTcowCsC8p7uBdzKsZYa8J7IDE8lhMI+HX1vQvg==} 245 + cpu: [arm64] 246 + os: [android] 247 + 248 + '@rollup/rollup-darwin-arm64@4.55.1': 249 + resolution: {integrity: sha512-p3grE2PHcQm2e8PSGZdzIhCKbMCw/xi9XvMPErPhwO17vxtvCN5FEA2mSLgmKlCjHGMQTP6phuQTYWUnKewwGg==} 250 + cpu: [arm64] 251 + os: [darwin] 252 + 253 + '@rollup/rollup-darwin-x64@4.55.1': 254 + resolution: {integrity: sha512-rDUjG25C9qoTm+e02Esi+aqTKSBYwVTaoS1wxcN47/Luqef57Vgp96xNANwt5npq9GDxsH7kXxNkJVEsWEOEaQ==} 255 + cpu: [x64] 256 + os: [darwin] 257 + 258 + '@rollup/rollup-freebsd-arm64@4.55.1': 259 + resolution: {integrity: sha512-+JiU7Jbp5cdxekIgdte0jfcu5oqw4GCKr6i3PJTlXTCU5H5Fvtkpbs4XJHRmWNXF+hKmn4v7ogI5OQPaupJgOg==} 260 + cpu: [arm64] 261 + os: [freebsd] 262 + 263 + '@rollup/rollup-freebsd-x64@4.55.1': 264 + resolution: {integrity: sha512-V5xC1tOVWtLLmr3YUk2f6EJK4qksksOYiz/TCsFHu/R+woubcLWdC9nZQmwjOAbmExBIVKsm1/wKmEy4z4u4Bw==} 265 + cpu: [x64] 266 + os: [freebsd] 267 + 268 + '@rollup/rollup-linux-arm-gnueabihf@4.55.1': 269 + resolution: {integrity: sha512-Rn3n+FUk2J5VWx+ywrG/HGPTD9jXNbicRtTM11e/uorplArnXZYsVifnPPqNNP5BsO3roI4n8332ukpY/zN7rQ==} 270 + cpu: [arm] 271 + os: [linux] 272 + 273 + '@rollup/rollup-linux-arm-musleabihf@4.55.1': 274 + resolution: {integrity: sha512-grPNWydeKtc1aEdrJDWk4opD7nFtQbMmV7769hiAaYyUKCT1faPRm2av8CX1YJsZ4TLAZcg9gTR1KvEzoLjXkg==} 275 + cpu: [arm] 276 + os: [linux] 277 + 278 + '@rollup/rollup-linux-arm64-gnu@4.55.1': 279 + resolution: {integrity: sha512-a59mwd1k6x8tXKcUxSyISiquLwB5pX+fJW9TkWU46lCqD/GRDe9uDN31jrMmVP3feI3mhAdvcCClhV8V5MhJFQ==} 280 + cpu: [arm64] 281 + os: [linux] 282 + 283 + '@rollup/rollup-linux-arm64-musl@4.55.1': 284 + resolution: {integrity: sha512-puS1MEgWX5GsHSoiAsF0TYrpomdvkaXm0CofIMG5uVkP6IBV+ZO9xhC5YEN49nsgYo1DuuMquF9+7EDBVYu4uA==} 285 + cpu: [arm64] 286 + os: [linux] 287 + 288 + '@rollup/rollup-linux-loong64-gnu@4.55.1': 289 + resolution: {integrity: sha512-r3Wv40in+lTsULSb6nnoudVbARdOwb2u5fpeoOAZjFLznp6tDU8kd+GTHmJoqZ9lt6/Sys33KdIHUaQihFcu7g==} 290 + cpu: [loong64] 291 + os: [linux] 292 + 293 + '@rollup/rollup-linux-loong64-musl@4.55.1': 294 + resolution: {integrity: sha512-MR8c0+UxAlB22Fq4R+aQSPBayvYa3+9DrwG/i1TKQXFYEaoW3B5b/rkSRIypcZDdWjWnpcvxbNaAJDcSbJU3Lw==} 295 + cpu: [loong64] 296 + os: [linux] 297 + 298 + '@rollup/rollup-linux-ppc64-gnu@4.55.1': 299 + resolution: {integrity: sha512-3KhoECe1BRlSYpMTeVrD4sh2Pw2xgt4jzNSZIIPLFEsnQn9gAnZagW9+VqDqAHgm1Xc77LzJOo2LdigS5qZ+gw==} 300 + cpu: [ppc64] 301 + os: [linux] 302 + 303 + '@rollup/rollup-linux-ppc64-musl@4.55.1': 304 + resolution: {integrity: sha512-ziR1OuZx0vdYZZ30vueNZTg73alF59DicYrPViG0NEgDVN8/Jl87zkAPu4u6VjZST2llgEUjaiNl9JM6HH1Vdw==} 305 + cpu: [ppc64] 306 + os: [linux] 307 + 308 + '@rollup/rollup-linux-riscv64-gnu@4.55.1': 309 + resolution: {integrity: sha512-uW0Y12ih2XJRERZ4jAfKamTyIHVMPQnTZcQjme2HMVDAHY4amf5u414OqNYC+x+LzRdRcnIG1YodLrrtA8xsxw==} 310 + cpu: [riscv64] 311 + os: [linux] 312 + 313 + '@rollup/rollup-linux-riscv64-musl@4.55.1': 314 + resolution: {integrity: sha512-u9yZ0jUkOED1BFrqu3BwMQoixvGHGZ+JhJNkNKY/hyoEgOwlqKb62qu+7UjbPSHYjiVy8kKJHvXKv5coH4wDeg==} 315 + cpu: [riscv64] 316 + os: [linux] 317 + 318 + '@rollup/rollup-linux-s390x-gnu@4.55.1': 319 + resolution: {integrity: sha512-/0PenBCmqM4ZUd0190j7J0UsQ/1nsi735iPRakO8iPciE7BQ495Y6msPzaOmvx0/pn+eJVVlZrNrSh4WSYLxNg==} 320 + cpu: [s390x] 321 + os: [linux] 322 + 323 + '@rollup/rollup-linux-x64-gnu@4.55.1': 324 + resolution: {integrity: sha512-a8G4wiQxQG2BAvo+gU6XrReRRqj+pLS2NGXKm8io19goR+K8lw269eTrPkSdDTALwMmJp4th2Uh0D8J9bEV1vg==} 325 + cpu: [x64] 326 + os: [linux] 327 + 328 + '@rollup/rollup-linux-x64-musl@4.55.1': 329 + resolution: {integrity: sha512-bD+zjpFrMpP/hqkfEcnjXWHMw5BIghGisOKPj+2NaNDuVT+8Ds4mPf3XcPHuat1tz89WRL+1wbcxKY3WSbiT7w==} 330 + cpu: [x64] 331 + os: [linux] 332 + 333 + '@rollup/rollup-openbsd-x64@4.55.1': 334 + resolution: {integrity: sha512-eLXw0dOiqE4QmvikfQ6yjgkg/xDM+MdU9YJuP4ySTibXU0oAvnEWXt7UDJmD4UkYialMfOGFPJnIHSe/kdzPxg==} 335 + cpu: [x64] 336 + os: [openbsd] 337 + 338 + '@rollup/rollup-openharmony-arm64@4.55.1': 339 + resolution: {integrity: sha512-xzm44KgEP11te3S2HCSyYf5zIzWmx3n8HDCc7EE59+lTcswEWNpvMLfd9uJvVX8LCg9QWG67Xt75AuHn4vgsXw==} 340 + cpu: [arm64] 341 + os: [openharmony] 342 + 343 + '@rollup/rollup-win32-arm64-msvc@4.55.1': 344 + resolution: {integrity: sha512-yR6Bl3tMC/gBok5cz/Qi0xYnVbIxGx5Fcf/ca0eB6/6JwOY+SRUcJfI0OpeTpPls7f194as62thCt/2BjxYN8g==} 345 + cpu: [arm64] 346 + os: [win32] 347 + 348 + '@rollup/rollup-win32-ia32-msvc@4.55.1': 349 + resolution: {integrity: sha512-3fZBidchE0eY0oFZBnekYCfg+5wAB0mbpCBuofh5mZuzIU/4jIVkbESmd2dOsFNS78b53CYv3OAtwqkZZmU5nA==} 350 + cpu: [ia32] 351 + os: [win32] 352 + 353 + '@rollup/rollup-win32-x64-gnu@4.55.1': 354 + resolution: {integrity: sha512-xGGY5pXj69IxKb4yv/POoocPy/qmEGhimy/FoTpTSVju3FYXUQQMFCaZZXJVidsmGxRioZAwpThl/4zX41gRKg==} 355 + cpu: [x64] 356 + os: [win32] 357 + 358 + '@rollup/rollup-win32-x64-msvc@4.55.1': 359 + resolution: {integrity: sha512-SPEpaL6DX4rmcXtnhdrQYgzQ5W2uW3SCJch88lB2zImhJRhIIK44fkUrgIV/Q8yUNfw5oyZ5vkeQsZLhCb06lw==} 360 + cpu: [x64] 361 + os: [win32] 362 + 363 + '@standard-schema/spec@1.1.0': 364 + resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==} 365 + 366 + '@sveltejs/acorn-typescript@1.0.8': 367 + resolution: {integrity: sha512-esgN+54+q0NjB0Y/4BomT9samII7jGwNy/2a3wNZbT2A2RpmXsXwUt24LvLhx6jUq2gVk4cWEvcRO6MFQbOfNA==} 368 + peerDependencies: 369 + acorn: ^8.9.0 370 + 371 + '@sveltejs/adapter-auto@7.0.0': 372 + resolution: {integrity: sha512-ImDWaErTOCkRS4Gt+5gZuymKFBobnhChXUZ9lhUZLahUgvA4OOvRzi3sahzYgbxGj5nkA6OV0GAW378+dl/gyw==} 373 + peerDependencies: 374 + '@sveltejs/kit': ^2.0.0 375 + 376 + '@sveltejs/kit@2.50.0': 377 + resolution: {integrity: sha512-Hj8sR8O27p2zshFEIJzsvfhLzxga/hWw6tRLnBjMYw70m1aS9BSYCqAUtzDBjRREtX1EvLMYgaC0mYE3Hz4KWA==} 378 + engines: {node: '>=18.13'} 379 + hasBin: true 380 + peerDependencies: 381 + '@opentelemetry/api': ^1.0.0 382 + '@sveltejs/vite-plugin-svelte': ^3.0.0 || ^4.0.0-next.1 || ^5.0.0 || ^6.0.0-next.0 383 + svelte: ^4.0.0 || ^5.0.0-next.0 384 + typescript: ^5.3.3 385 + vite: ^5.0.3 || ^6.0.0 || ^7.0.0-beta.0 386 + peerDependenciesMeta: 387 + '@opentelemetry/api': 388 + optional: true 389 + typescript: 390 + optional: true 391 + 392 + '@sveltejs/package@2.5.7': 393 + resolution: {integrity: sha512-qqD9xa9H7TDiGFrF6rz7AirOR8k15qDK/9i4MIE8te4vWsv5GEogPks61rrZcLy+yWph+aI6pIj2MdoK3YI8AQ==} 394 + engines: {node: ^16.14 || >=18} 395 + hasBin: true 396 + peerDependencies: 397 + svelte: ^3.44.0 || ^4.0.0 || ^5.0.0-next.1 398 + 399 + '@sveltejs/vite-plugin-svelte-inspector@5.0.2': 400 + resolution: {integrity: sha512-TZzRTcEtZffICSAoZGkPSl6Etsj2torOVrx6Uw0KpXxrec9Gg6jFWQ60Q3+LmNGfZSxHRCZL7vXVZIWmuV50Ig==} 401 + engines: {node: ^20.19 || ^22.12 || >=24} 402 + peerDependencies: 403 + '@sveltejs/vite-plugin-svelte': ^6.0.0-next.0 404 + svelte: ^5.0.0 405 + vite: ^6.3.0 || ^7.0.0 406 + 407 + '@sveltejs/vite-plugin-svelte@6.2.4': 408 + resolution: {integrity: sha512-ou/d51QSdTyN26D7h6dSpusAKaZkAiGM55/AKYi+9AGZw7q85hElbjK3kEyzXHhLSnRISHOYzVge6x0jRZ7DXA==} 409 + engines: {node: ^20.19 || ^22.12 || >=24} 410 + peerDependencies: 411 + svelte: ^5.0.0 412 + vite: ^6.3.0 || ^7.0.0 413 + 414 + '@tailwindcss/node@4.1.18': 415 + resolution: {integrity: sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==} 416 + 417 + '@tailwindcss/oxide-android-arm64@4.1.18': 418 + resolution: {integrity: sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==} 419 + engines: {node: '>= 10'} 420 + cpu: [arm64] 421 + os: [android] 422 + 423 + '@tailwindcss/oxide-darwin-arm64@4.1.18': 424 + resolution: {integrity: sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A==} 425 + engines: {node: '>= 10'} 426 + cpu: [arm64] 427 + os: [darwin] 428 + 429 + '@tailwindcss/oxide-darwin-x64@4.1.18': 430 + resolution: {integrity: sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw==} 431 + engines: {node: '>= 10'} 432 + cpu: [x64] 433 + os: [darwin] 434 + 435 + '@tailwindcss/oxide-freebsd-x64@4.1.18': 436 + resolution: {integrity: sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA==} 437 + engines: {node: '>= 10'} 438 + cpu: [x64] 439 + os: [freebsd] 440 + 441 + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18': 442 + resolution: {integrity: sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA==} 443 + engines: {node: '>= 10'} 444 + cpu: [arm] 445 + os: [linux] 446 + 447 + '@tailwindcss/oxide-linux-arm64-gnu@4.1.18': 448 + resolution: {integrity: sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw==} 449 + engines: {node: '>= 10'} 450 + cpu: [arm64] 451 + os: [linux] 452 + 453 + '@tailwindcss/oxide-linux-arm64-musl@4.1.18': 454 + resolution: {integrity: sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==} 455 + engines: {node: '>= 10'} 456 + cpu: [arm64] 457 + os: [linux] 458 + 459 + '@tailwindcss/oxide-linux-x64-gnu@4.1.18': 460 + resolution: {integrity: sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==} 461 + engines: {node: '>= 10'} 462 + cpu: [x64] 463 + os: [linux] 464 + 465 + '@tailwindcss/oxide-linux-x64-musl@4.1.18': 466 + resolution: {integrity: sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==} 467 + engines: {node: '>= 10'} 468 + cpu: [x64] 469 + os: [linux] 470 + 471 + '@tailwindcss/oxide-wasm32-wasi@4.1.18': 472 + resolution: {integrity: sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==} 473 + engines: {node: '>=14.0.0'} 474 + cpu: [wasm32] 475 + bundledDependencies: 476 + - '@napi-rs/wasm-runtime' 477 + - '@emnapi/core' 478 + - '@emnapi/runtime' 479 + - '@tybys/wasm-util' 480 + - '@emnapi/wasi-threads' 481 + - tslib 482 + 483 + '@tailwindcss/oxide-win32-arm64-msvc@4.1.18': 484 + resolution: {integrity: sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA==} 485 + engines: {node: '>= 10'} 486 + cpu: [arm64] 487 + os: [win32] 488 + 489 + '@tailwindcss/oxide-win32-x64-msvc@4.1.18': 490 + resolution: {integrity: sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q==} 491 + engines: {node: '>= 10'} 492 + cpu: [x64] 493 + os: [win32] 494 + 495 + '@tailwindcss/oxide@4.1.18': 496 + resolution: {integrity: sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A==} 497 + engines: {node: '>= 10'} 498 + 499 + '@tailwindcss/typography@0.5.19': 500 + resolution: {integrity: sha512-w31dd8HOx3k9vPtcQh5QHP9GwKcgbMp87j58qi6xgiBnFFtKEAgCWnDw4qUT8aHwkCp8bKvb/KGKWWHedP0AAg==} 501 + peerDependencies: 502 + tailwindcss: '>=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1' 503 + 504 + '@tailwindcss/vite@4.1.18': 505 + resolution: {integrity: sha512-jVA+/UpKL1vRLg6Hkao5jldawNmRo7mQYrZtNHMIVpLfLhDml5nMRUo/8MwoX2vNXvnaXNNMedrMfMugAVX1nA==} 506 + peerDependencies: 507 + vite: ^5.2.0 || ^6 || ^7 508 + 509 + '@types/cookie@0.6.0': 510 + resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} 511 + 512 + '@types/estree@1.0.8': 513 + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} 514 + 515 + acorn@8.15.0: 516 + resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} 517 + engines: {node: '>=0.4.0'} 518 + hasBin: true 519 + 520 + aria-query@5.3.2: 521 + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} 522 + engines: {node: '>= 0.4'} 523 + 524 + axobject-query@4.1.0: 525 + resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} 526 + engines: {node: '>= 0.4'} 527 + 528 + chokidar@4.0.3: 529 + resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} 530 + engines: {node: '>= 14.16.0'} 531 + 532 + chokidar@5.0.0: 533 + resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==} 534 + engines: {node: '>= 20.19.0'} 535 + 536 + clsx@2.1.1: 537 + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} 538 + engines: {node: '>=6'} 539 + 540 + cookie@0.6.0: 541 + resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} 542 + engines: {node: '>= 0.6'} 543 + 544 + cssesc@3.0.0: 545 + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 546 + engines: {node: '>=4'} 547 + hasBin: true 548 + 549 + dedent-js@1.0.1: 550 + resolution: {integrity: sha512-OUepMozQULMLUmhxS95Vudo0jb0UchLimi3+pQ2plj61Fcy8axbP9hbiD4Sz6DPqn6XG3kfmziVfQ1rSys5AJQ==} 551 + 552 + deepmerge@4.3.1: 553 + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} 554 + engines: {node: '>=0.10.0'} 555 + 556 + detect-libc@2.1.2: 557 + resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} 558 + engines: {node: '>=8'} 559 + 560 + devalue@5.6.2: 561 + resolution: {integrity: sha512-nPRkjWzzDQlsejL1WVifk5rvcFi/y1onBRxjaFMjZeR9mFpqu2gmAZ9xUB9/IEanEP/vBtGeGganC/GO1fmufg==} 562 + 563 + enhanced-resolve@5.18.4: 564 + resolution: {integrity: sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==} 565 + engines: {node: '>=10.13.0'} 566 + 567 + esbuild@0.27.2: 568 + resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==} 569 + engines: {node: '>=18'} 570 + hasBin: true 571 + 572 + esm-env@1.2.2: 573 + resolution: {integrity: sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==} 574 + 575 + esrap@2.2.1: 576 + resolution: {integrity: sha512-GiYWG34AN/4CUyaWAgunGt0Rxvr1PTMlGC0vvEov/uOQYWne2bpN03Um+k8jT+q3op33mKouP2zeJ6OlM+qeUg==} 577 + 578 + fdir@6.5.0: 579 + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} 580 + engines: {node: '>=12.0.0'} 581 + peerDependencies: 582 + picomatch: ^3 || ^4 583 + peerDependenciesMeta: 584 + picomatch: 585 + optional: true 586 + 587 + fsevents@2.3.3: 588 + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 589 + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 590 + os: [darwin] 591 + 592 + graceful-fs@4.2.11: 593 + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 594 + 595 + is-reference@3.0.3: 596 + resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==} 597 + 598 + jiti@2.6.1: 599 + resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==} 600 + hasBin: true 601 + 602 + kleur@4.1.5: 603 + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} 604 + engines: {node: '>=6'} 605 + 606 + lightningcss-android-arm64@1.30.2: 607 + resolution: {integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==} 608 + engines: {node: '>= 12.0.0'} 609 + cpu: [arm64] 610 + os: [android] 611 + 612 + lightningcss-darwin-arm64@1.30.2: 613 + resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==} 614 + engines: {node: '>= 12.0.0'} 615 + cpu: [arm64] 616 + os: [darwin] 617 + 618 + lightningcss-darwin-x64@1.30.2: 619 + resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==} 620 + engines: {node: '>= 12.0.0'} 621 + cpu: [x64] 622 + os: [darwin] 623 + 624 + lightningcss-freebsd-x64@1.30.2: 625 + resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==} 626 + engines: {node: '>= 12.0.0'} 627 + cpu: [x64] 628 + os: [freebsd] 629 + 630 + lightningcss-linux-arm-gnueabihf@1.30.2: 631 + resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==} 632 + engines: {node: '>= 12.0.0'} 633 + cpu: [arm] 634 + os: [linux] 635 + 636 + lightningcss-linux-arm64-gnu@1.30.2: 637 + resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==} 638 + engines: {node: '>= 12.0.0'} 639 + cpu: [arm64] 640 + os: [linux] 641 + 642 + lightningcss-linux-arm64-musl@1.30.2: 643 + resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==} 644 + engines: {node: '>= 12.0.0'} 645 + cpu: [arm64] 646 + os: [linux] 647 + 648 + lightningcss-linux-x64-gnu@1.30.2: 649 + resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==} 650 + engines: {node: '>= 12.0.0'} 651 + cpu: [x64] 652 + os: [linux] 653 + 654 + lightningcss-linux-x64-musl@1.30.2: 655 + resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==} 656 + engines: {node: '>= 12.0.0'} 657 + cpu: [x64] 658 + os: [linux] 659 + 660 + lightningcss-win32-arm64-msvc@1.30.2: 661 + resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==} 662 + engines: {node: '>= 12.0.0'} 663 + cpu: [arm64] 664 + os: [win32] 665 + 666 + lightningcss-win32-x64-msvc@1.30.2: 667 + resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==} 668 + engines: {node: '>= 12.0.0'} 669 + cpu: [x64] 670 + os: [win32] 671 + 672 + lightningcss@1.30.2: 673 + resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==} 674 + engines: {node: '>= 12.0.0'} 675 + 676 + locate-character@3.0.0: 677 + resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==} 678 + 679 + magic-string@0.30.21: 680 + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} 681 + 682 + mri@1.2.0: 683 + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} 684 + engines: {node: '>=4'} 685 + 686 + mrmime@2.0.1: 687 + resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} 688 + engines: {node: '>=10'} 689 + 690 + nanoid@3.3.11: 691 + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} 692 + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 693 + hasBin: true 694 + 695 + obug@2.1.1: 696 + resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==} 697 + 698 + package-manager-detector@1.6.0: 699 + resolution: {integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==} 700 + 701 + picocolors@1.1.1: 702 + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 703 + 704 + picomatch@4.0.3: 705 + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} 706 + engines: {node: '>=12'} 707 + 708 + postcss-selector-parser@6.0.10: 709 + resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==} 710 + engines: {node: '>=4'} 711 + 712 + postcss@8.5.6: 713 + resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} 714 + engines: {node: ^10 || ^12 || >=14} 715 + 716 + prettier-plugin-svelte@3.4.1: 717 + resolution: {integrity: sha512-xL49LCloMoZRvSwa6IEdN2GV6cq2IqpYGstYtMT+5wmml1/dClEoI0MZR78MiVPpu6BdQFfN0/y73yO6+br5Pg==} 718 + peerDependencies: 719 + prettier: ^3.0.0 720 + svelte: ^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0 721 + 722 + prettier-plugin-tailwindcss@0.7.2: 723 + resolution: {integrity: sha512-LkphyK3Fw+q2HdMOoiEHWf93fNtYJwfamoKPl7UwtjFQdei/iIBoX11G6j706FzN3ymX9mPVi97qIY8328vdnA==} 724 + engines: {node: '>=20.19'} 725 + peerDependencies: 726 + '@ianvs/prettier-plugin-sort-imports': '*' 727 + '@prettier/plugin-hermes': '*' 728 + '@prettier/plugin-oxc': '*' 729 + '@prettier/plugin-pug': '*' 730 + '@shopify/prettier-plugin-liquid': '*' 731 + '@trivago/prettier-plugin-sort-imports': '*' 732 + '@zackad/prettier-plugin-twig': '*' 733 + prettier: ^3.0 734 + prettier-plugin-astro: '*' 735 + prettier-plugin-css-order: '*' 736 + prettier-plugin-jsdoc: '*' 737 + prettier-plugin-marko: '*' 738 + prettier-plugin-multiline-arrays: '*' 739 + prettier-plugin-organize-attributes: '*' 740 + prettier-plugin-organize-imports: '*' 741 + prettier-plugin-sort-imports: '*' 742 + prettier-plugin-svelte: '*' 743 + peerDependenciesMeta: 744 + '@ianvs/prettier-plugin-sort-imports': 745 + optional: true 746 + '@prettier/plugin-hermes': 747 + optional: true 748 + '@prettier/plugin-oxc': 749 + optional: true 750 + '@prettier/plugin-pug': 751 + optional: true 752 + '@shopify/prettier-plugin-liquid': 753 + optional: true 754 + '@trivago/prettier-plugin-sort-imports': 755 + optional: true 756 + '@zackad/prettier-plugin-twig': 757 + optional: true 758 + prettier-plugin-astro: 759 + optional: true 760 + prettier-plugin-css-order: 761 + optional: true 762 + prettier-plugin-jsdoc: 763 + optional: true 764 + prettier-plugin-marko: 765 + optional: true 766 + prettier-plugin-multiline-arrays: 767 + optional: true 768 + prettier-plugin-organize-attributes: 769 + optional: true 770 + prettier-plugin-organize-imports: 771 + optional: true 772 + prettier-plugin-sort-imports: 773 + optional: true 774 + prettier-plugin-svelte: 775 + optional: true 776 + 777 + prettier@3.8.0: 778 + resolution: {integrity: sha512-yEPsovQfpxYfgWNhCfECjG5AQaO+K3dp6XERmOepyPDVqcJm+bjyCVO3pmU+nAPe0N5dDvekfGezt/EIiRe1TA==} 779 + engines: {node: '>=14'} 780 + hasBin: true 781 + 782 + publint@0.3.16: 783 + resolution: {integrity: sha512-MFqyfRLAExPVZdTQFwkAQELzA8idyXzROVOytg6nEJ/GEypXBUmMGrVaID8cTuzRS1U5L8yTOdOJtMXgFUJAeA==} 784 + engines: {node: '>=18'} 785 + hasBin: true 786 + 787 + readdirp@4.1.2: 788 + resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} 789 + engines: {node: '>= 14.18.0'} 790 + 791 + readdirp@5.0.0: 792 + resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==} 793 + engines: {node: '>= 20.19.0'} 794 + 795 + rollup@4.55.1: 796 + resolution: {integrity: sha512-wDv/Ht1BNHB4upNbK74s9usvl7hObDnvVzknxqY/E/O3X6rW1U1rV1aENEfJ54eFZDTNo7zv1f5N4edCluH7+A==} 797 + engines: {node: '>=18.0.0', npm: '>=8.0.0'} 798 + hasBin: true 799 + 800 + sade@1.8.1: 801 + resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} 802 + engines: {node: '>=6'} 803 + 804 + scule@1.3.0: 805 + resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==} 806 + 807 + semver@7.7.3: 808 + resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==} 809 + engines: {node: '>=10'} 810 + hasBin: true 811 + 812 + set-cookie-parser@2.7.2: 813 + resolution: {integrity: sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==} 814 + 815 + sirv@3.0.2: 816 + resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==} 817 + engines: {node: '>=18'} 818 + 819 + source-map-js@1.2.1: 820 + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 821 + engines: {node: '>=0.10.0'} 822 + 823 + svelte-check@4.3.5: 824 + resolution: {integrity: sha512-e4VWZETyXaKGhpkxOXP+B/d0Fp/zKViZoJmneZWe/05Y2aqSKj3YN2nLfYPJBQ87WEiY4BQCQ9hWGu9mPT1a1Q==} 825 + engines: {node: '>= 18.0.0'} 826 + hasBin: true 827 + peerDependencies: 828 + svelte: ^4.0.0 || ^5.0.0-next.0 829 + typescript: '>=5.0.0' 830 + 831 + svelte2tsx@0.7.46: 832 + resolution: {integrity: sha512-S++Vw3w47a8rBuhbz4JK0fcGea8tOoX1boT53Aib8+oUO2EKeOG+geXprJVTDfBlvR+IJdf3jIpR2RGwT6paQA==} 833 + peerDependencies: 834 + svelte: ^3.55 || ^4.0.0-next.0 || ^4.0 || ^5.0.0-next.0 835 + typescript: ^4.9.4 || ^5.0.0 836 + 837 + svelte@5.46.4: 838 + resolution: {integrity: sha512-VJwdXrmv9L8L7ZasJeWcCjoIuMRVbhuxbss0fpVnR8yorMmjNDwcjIH08vS6wmSzzzgAG5CADQ1JuXPS2nwt9w==} 839 + engines: {node: '>=18'} 840 + 841 + tailwindcss@4.1.18: 842 + resolution: {integrity: sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==} 843 + 844 + tapable@2.3.0: 845 + resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==} 846 + engines: {node: '>=6'} 847 + 848 + tinyglobby@0.2.15: 849 + resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} 850 + engines: {node: '>=12.0.0'} 851 + 852 + totalist@3.0.1: 853 + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} 854 + engines: {node: '>=6'} 855 + 856 + typescript@5.9.3: 857 + resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} 858 + engines: {node: '>=14.17'} 859 + hasBin: true 860 + 861 + util-deprecate@1.0.2: 862 + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 863 + 864 + vite@7.3.1: 865 + resolution: {integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==} 866 + engines: {node: ^20.19.0 || >=22.12.0} 867 + hasBin: true 868 + peerDependencies: 869 + '@types/node': ^20.19.0 || >=22.12.0 870 + jiti: '>=1.21.0' 871 + less: ^4.0.0 872 + lightningcss: ^1.21.0 873 + sass: ^1.70.0 874 + sass-embedded: ^1.70.0 875 + stylus: '>=0.54.8' 876 + sugarss: ^5.0.0 877 + terser: ^5.16.0 878 + tsx: ^4.8.1 879 + yaml: ^2.4.2 880 + peerDependenciesMeta: 881 + '@types/node': 882 + optional: true 883 + jiti: 884 + optional: true 885 + less: 886 + optional: true 887 + lightningcss: 888 + optional: true 889 + sass: 890 + optional: true 891 + sass-embedded: 892 + optional: true 893 + stylus: 894 + optional: true 895 + sugarss: 896 + optional: true 897 + terser: 898 + optional: true 899 + tsx: 900 + optional: true 901 + yaml: 902 + optional: true 903 + 904 + vitefu@1.1.1: 905 + resolution: {integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==} 906 + peerDependencies: 907 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0 908 + peerDependenciesMeta: 909 + vite: 910 + optional: true 911 + 912 + zimmerframe@1.1.4: 913 + resolution: {integrity: sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==} 914 + 915 + snapshots: 916 + 917 + '@esbuild/aix-ppc64@0.27.2': 918 + optional: true 919 + 920 + '@esbuild/android-arm64@0.27.2': 921 + optional: true 922 + 923 + '@esbuild/android-arm@0.27.2': 924 + optional: true 925 + 926 + '@esbuild/android-x64@0.27.2': 927 + optional: true 928 + 929 + '@esbuild/darwin-arm64@0.27.2': 930 + optional: true 931 + 932 + '@esbuild/darwin-x64@0.27.2': 933 + optional: true 934 + 935 + '@esbuild/freebsd-arm64@0.27.2': 936 + optional: true 937 + 938 + '@esbuild/freebsd-x64@0.27.2': 939 + optional: true 940 + 941 + '@esbuild/linux-arm64@0.27.2': 942 + optional: true 943 + 944 + '@esbuild/linux-arm@0.27.2': 945 + optional: true 946 + 947 + '@esbuild/linux-ia32@0.27.2': 948 + optional: true 949 + 950 + '@esbuild/linux-loong64@0.27.2': 951 + optional: true 952 + 953 + '@esbuild/linux-mips64el@0.27.2': 954 + optional: true 955 + 956 + '@esbuild/linux-ppc64@0.27.2': 957 + optional: true 958 + 959 + '@esbuild/linux-riscv64@0.27.2': 960 + optional: true 961 + 962 + '@esbuild/linux-s390x@0.27.2': 963 + optional: true 964 + 965 + '@esbuild/linux-x64@0.27.2': 966 + optional: true 967 + 968 + '@esbuild/netbsd-arm64@0.27.2': 969 + optional: true 970 + 971 + '@esbuild/netbsd-x64@0.27.2': 972 + optional: true 973 + 974 + '@esbuild/openbsd-arm64@0.27.2': 975 + optional: true 976 + 977 + '@esbuild/openbsd-x64@0.27.2': 978 + optional: true 979 + 980 + '@esbuild/openharmony-arm64@0.27.2': 981 + optional: true 982 + 983 + '@esbuild/sunos-x64@0.27.2': 984 + optional: true 985 + 986 + '@esbuild/win32-arm64@0.27.2': 987 + optional: true 988 + 989 + '@esbuild/win32-ia32@0.27.2': 990 + optional: true 991 + 992 + '@esbuild/win32-x64@0.27.2': 993 + optional: true 994 + 995 + '@jridgewell/gen-mapping@0.3.13': 996 + dependencies: 997 + '@jridgewell/sourcemap-codec': 1.5.5 998 + '@jridgewell/trace-mapping': 0.3.31 999 + 1000 + '@jridgewell/remapping@2.3.5': 1001 + dependencies: 1002 + '@jridgewell/gen-mapping': 0.3.13 1003 + '@jridgewell/trace-mapping': 0.3.31 1004 + 1005 + '@jridgewell/resolve-uri@3.1.2': {} 1006 + 1007 + '@jridgewell/sourcemap-codec@1.5.5': {} 1008 + 1009 + '@jridgewell/trace-mapping@0.3.31': 1010 + dependencies: 1011 + '@jridgewell/resolve-uri': 3.1.2 1012 + '@jridgewell/sourcemap-codec': 1.5.5 1013 + 1014 + '@polka/url@1.0.0-next.29': {} 1015 + 1016 + '@publint/pack@0.1.2': {} 1017 + 1018 + '@rollup/rollup-android-arm-eabi@4.55.1': 1019 + optional: true 1020 + 1021 + '@rollup/rollup-android-arm64@4.55.1': 1022 + optional: true 1023 + 1024 + '@rollup/rollup-darwin-arm64@4.55.1': 1025 + optional: true 1026 + 1027 + '@rollup/rollup-darwin-x64@4.55.1': 1028 + optional: true 1029 + 1030 + '@rollup/rollup-freebsd-arm64@4.55.1': 1031 + optional: true 1032 + 1033 + '@rollup/rollup-freebsd-x64@4.55.1': 1034 + optional: true 1035 + 1036 + '@rollup/rollup-linux-arm-gnueabihf@4.55.1': 1037 + optional: true 1038 + 1039 + '@rollup/rollup-linux-arm-musleabihf@4.55.1': 1040 + optional: true 1041 + 1042 + '@rollup/rollup-linux-arm64-gnu@4.55.1': 1043 + optional: true 1044 + 1045 + '@rollup/rollup-linux-arm64-musl@4.55.1': 1046 + optional: true 1047 + 1048 + '@rollup/rollup-linux-loong64-gnu@4.55.1': 1049 + optional: true 1050 + 1051 + '@rollup/rollup-linux-loong64-musl@4.55.1': 1052 + optional: true 1053 + 1054 + '@rollup/rollup-linux-ppc64-gnu@4.55.1': 1055 + optional: true 1056 + 1057 + '@rollup/rollup-linux-ppc64-musl@4.55.1': 1058 + optional: true 1059 + 1060 + '@rollup/rollup-linux-riscv64-gnu@4.55.1': 1061 + optional: true 1062 + 1063 + '@rollup/rollup-linux-riscv64-musl@4.55.1': 1064 + optional: true 1065 + 1066 + '@rollup/rollup-linux-s390x-gnu@4.55.1': 1067 + optional: true 1068 + 1069 + '@rollup/rollup-linux-x64-gnu@4.55.1': 1070 + optional: true 1071 + 1072 + '@rollup/rollup-linux-x64-musl@4.55.1': 1073 + optional: true 1074 + 1075 + '@rollup/rollup-openbsd-x64@4.55.1': 1076 + optional: true 1077 + 1078 + '@rollup/rollup-openharmony-arm64@4.55.1': 1079 + optional: true 1080 + 1081 + '@rollup/rollup-win32-arm64-msvc@4.55.1': 1082 + optional: true 1083 + 1084 + '@rollup/rollup-win32-ia32-msvc@4.55.1': 1085 + optional: true 1086 + 1087 + '@rollup/rollup-win32-x64-gnu@4.55.1': 1088 + optional: true 1089 + 1090 + '@rollup/rollup-win32-x64-msvc@4.55.1': 1091 + optional: true 1092 + 1093 + '@standard-schema/spec@1.1.0': {} 1094 + 1095 + '@sveltejs/acorn-typescript@1.0.8(acorn@8.15.0)': 1096 + dependencies: 1097 + acorn: 8.15.0 1098 + 1099 + '@sveltejs/adapter-auto@7.0.0(@sveltejs/kit@2.50.0(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.46.4)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)))(svelte@5.46.4)(typescript@5.9.3)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)))': 1100 + dependencies: 1101 + '@sveltejs/kit': 2.50.0(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.46.4)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)))(svelte@5.46.4)(typescript@5.9.3)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)) 1102 + 1103 + '@sveltejs/kit@2.50.0(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.46.4)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)))(svelte@5.46.4)(typescript@5.9.3)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2))': 1104 + dependencies: 1105 + '@standard-schema/spec': 1.1.0 1106 + '@sveltejs/acorn-typescript': 1.0.8(acorn@8.15.0) 1107 + '@sveltejs/vite-plugin-svelte': 6.2.4(svelte@5.46.4)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)) 1108 + '@types/cookie': 0.6.0 1109 + acorn: 8.15.0 1110 + cookie: 0.6.0 1111 + devalue: 5.6.2 1112 + esm-env: 1.2.2 1113 + kleur: 4.1.5 1114 + magic-string: 0.30.21 1115 + mrmime: 2.0.1 1116 + sade: 1.8.1 1117 + set-cookie-parser: 2.7.2 1118 + sirv: 3.0.2 1119 + svelte: 5.46.4 1120 + vite: 7.3.1(jiti@2.6.1)(lightningcss@1.30.2) 1121 + optionalDependencies: 1122 + typescript: 5.9.3 1123 + 1124 + '@sveltejs/package@2.5.7(svelte@5.46.4)(typescript@5.9.3)': 1125 + dependencies: 1126 + chokidar: 5.0.0 1127 + kleur: 4.1.5 1128 + sade: 1.8.1 1129 + semver: 7.7.3 1130 + svelte: 5.46.4 1131 + svelte2tsx: 0.7.46(svelte@5.46.4)(typescript@5.9.3) 1132 + transitivePeerDependencies: 1133 + - typescript 1134 + 1135 + '@sveltejs/vite-plugin-svelte-inspector@5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.46.4)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)))(svelte@5.46.4)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2))': 1136 + dependencies: 1137 + '@sveltejs/vite-plugin-svelte': 6.2.4(svelte@5.46.4)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)) 1138 + obug: 2.1.1 1139 + svelte: 5.46.4 1140 + vite: 7.3.1(jiti@2.6.1)(lightningcss@1.30.2) 1141 + 1142 + '@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.46.4)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2))': 1143 + dependencies: 1144 + '@sveltejs/vite-plugin-svelte-inspector': 5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.46.4)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)))(svelte@5.46.4)(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)) 1145 + deepmerge: 4.3.1 1146 + magic-string: 0.30.21 1147 + obug: 2.1.1 1148 + svelte: 5.46.4 1149 + vite: 7.3.1(jiti@2.6.1)(lightningcss@1.30.2) 1150 + vitefu: 1.1.1(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)) 1151 + 1152 + '@tailwindcss/node@4.1.18': 1153 + dependencies: 1154 + '@jridgewell/remapping': 2.3.5 1155 + enhanced-resolve: 5.18.4 1156 + jiti: 2.6.1 1157 + lightningcss: 1.30.2 1158 + magic-string: 0.30.21 1159 + source-map-js: 1.2.1 1160 + tailwindcss: 4.1.18 1161 + 1162 + '@tailwindcss/oxide-android-arm64@4.1.18': 1163 + optional: true 1164 + 1165 + '@tailwindcss/oxide-darwin-arm64@4.1.18': 1166 + optional: true 1167 + 1168 + '@tailwindcss/oxide-darwin-x64@4.1.18': 1169 + optional: true 1170 + 1171 + '@tailwindcss/oxide-freebsd-x64@4.1.18': 1172 + optional: true 1173 + 1174 + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18': 1175 + optional: true 1176 + 1177 + '@tailwindcss/oxide-linux-arm64-gnu@4.1.18': 1178 + optional: true 1179 + 1180 + '@tailwindcss/oxide-linux-arm64-musl@4.1.18': 1181 + optional: true 1182 + 1183 + '@tailwindcss/oxide-linux-x64-gnu@4.1.18': 1184 + optional: true 1185 + 1186 + '@tailwindcss/oxide-linux-x64-musl@4.1.18': 1187 + optional: true 1188 + 1189 + '@tailwindcss/oxide-wasm32-wasi@4.1.18': 1190 + optional: true 1191 + 1192 + '@tailwindcss/oxide-win32-arm64-msvc@4.1.18': 1193 + optional: true 1194 + 1195 + '@tailwindcss/oxide-win32-x64-msvc@4.1.18': 1196 + optional: true 1197 + 1198 + '@tailwindcss/oxide@4.1.18': 1199 + optionalDependencies: 1200 + '@tailwindcss/oxide-android-arm64': 4.1.18 1201 + '@tailwindcss/oxide-darwin-arm64': 4.1.18 1202 + '@tailwindcss/oxide-darwin-x64': 4.1.18 1203 + '@tailwindcss/oxide-freebsd-x64': 4.1.18 1204 + '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.18 1205 + '@tailwindcss/oxide-linux-arm64-gnu': 4.1.18 1206 + '@tailwindcss/oxide-linux-arm64-musl': 4.1.18 1207 + '@tailwindcss/oxide-linux-x64-gnu': 4.1.18 1208 + '@tailwindcss/oxide-linux-x64-musl': 4.1.18 1209 + '@tailwindcss/oxide-wasm32-wasi': 4.1.18 1210 + '@tailwindcss/oxide-win32-arm64-msvc': 4.1.18 1211 + '@tailwindcss/oxide-win32-x64-msvc': 4.1.18 1212 + 1213 + '@tailwindcss/typography@0.5.19(tailwindcss@4.1.18)': 1214 + dependencies: 1215 + postcss-selector-parser: 6.0.10 1216 + tailwindcss: 4.1.18 1217 + 1218 + '@tailwindcss/vite@4.1.18(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2))': 1219 + dependencies: 1220 + '@tailwindcss/node': 4.1.18 1221 + '@tailwindcss/oxide': 4.1.18 1222 + tailwindcss: 4.1.18 1223 + vite: 7.3.1(jiti@2.6.1)(lightningcss@1.30.2) 1224 + 1225 + '@types/cookie@0.6.0': {} 1226 + 1227 + '@types/estree@1.0.8': {} 1228 + 1229 + acorn@8.15.0: {} 1230 + 1231 + aria-query@5.3.2: {} 1232 + 1233 + axobject-query@4.1.0: {} 1234 + 1235 + chokidar@4.0.3: 1236 + dependencies: 1237 + readdirp: 4.1.2 1238 + 1239 + chokidar@5.0.0: 1240 + dependencies: 1241 + readdirp: 5.0.0 1242 + 1243 + clsx@2.1.1: {} 1244 + 1245 + cookie@0.6.0: {} 1246 + 1247 + cssesc@3.0.0: {} 1248 + 1249 + dedent-js@1.0.1: {} 1250 + 1251 + deepmerge@4.3.1: {} 1252 + 1253 + detect-libc@2.1.2: {} 1254 + 1255 + devalue@5.6.2: {} 1256 + 1257 + enhanced-resolve@5.18.4: 1258 + dependencies: 1259 + graceful-fs: 4.2.11 1260 + tapable: 2.3.0 1261 + 1262 + esbuild@0.27.2: 1263 + optionalDependencies: 1264 + '@esbuild/aix-ppc64': 0.27.2 1265 + '@esbuild/android-arm': 0.27.2 1266 + '@esbuild/android-arm64': 0.27.2 1267 + '@esbuild/android-x64': 0.27.2 1268 + '@esbuild/darwin-arm64': 0.27.2 1269 + '@esbuild/darwin-x64': 0.27.2 1270 + '@esbuild/freebsd-arm64': 0.27.2 1271 + '@esbuild/freebsd-x64': 0.27.2 1272 + '@esbuild/linux-arm': 0.27.2 1273 + '@esbuild/linux-arm64': 0.27.2 1274 + '@esbuild/linux-ia32': 0.27.2 1275 + '@esbuild/linux-loong64': 0.27.2 1276 + '@esbuild/linux-mips64el': 0.27.2 1277 + '@esbuild/linux-ppc64': 0.27.2 1278 + '@esbuild/linux-riscv64': 0.27.2 1279 + '@esbuild/linux-s390x': 0.27.2 1280 + '@esbuild/linux-x64': 0.27.2 1281 + '@esbuild/netbsd-arm64': 0.27.2 1282 + '@esbuild/netbsd-x64': 0.27.2 1283 + '@esbuild/openbsd-arm64': 0.27.2 1284 + '@esbuild/openbsd-x64': 0.27.2 1285 + '@esbuild/openharmony-arm64': 0.27.2 1286 + '@esbuild/sunos-x64': 0.27.2 1287 + '@esbuild/win32-arm64': 0.27.2 1288 + '@esbuild/win32-ia32': 0.27.2 1289 + '@esbuild/win32-x64': 0.27.2 1290 + 1291 + esm-env@1.2.2: {} 1292 + 1293 + esrap@2.2.1: 1294 + dependencies: 1295 + '@jridgewell/sourcemap-codec': 1.5.5 1296 + 1297 + fdir@6.5.0(picomatch@4.0.3): 1298 + optionalDependencies: 1299 + picomatch: 4.0.3 1300 + 1301 + fsevents@2.3.3: 1302 + optional: true 1303 + 1304 + graceful-fs@4.2.11: {} 1305 + 1306 + is-reference@3.0.3: 1307 + dependencies: 1308 + '@types/estree': 1.0.8 1309 + 1310 + jiti@2.6.1: {} 1311 + 1312 + kleur@4.1.5: {} 1313 + 1314 + lightningcss-android-arm64@1.30.2: 1315 + optional: true 1316 + 1317 + lightningcss-darwin-arm64@1.30.2: 1318 + optional: true 1319 + 1320 + lightningcss-darwin-x64@1.30.2: 1321 + optional: true 1322 + 1323 + lightningcss-freebsd-x64@1.30.2: 1324 + optional: true 1325 + 1326 + lightningcss-linux-arm-gnueabihf@1.30.2: 1327 + optional: true 1328 + 1329 + lightningcss-linux-arm64-gnu@1.30.2: 1330 + optional: true 1331 + 1332 + lightningcss-linux-arm64-musl@1.30.2: 1333 + optional: true 1334 + 1335 + lightningcss-linux-x64-gnu@1.30.2: 1336 + optional: true 1337 + 1338 + lightningcss-linux-x64-musl@1.30.2: 1339 + optional: true 1340 + 1341 + lightningcss-win32-arm64-msvc@1.30.2: 1342 + optional: true 1343 + 1344 + lightningcss-win32-x64-msvc@1.30.2: 1345 + optional: true 1346 + 1347 + lightningcss@1.30.2: 1348 + dependencies: 1349 + detect-libc: 2.1.2 1350 + optionalDependencies: 1351 + lightningcss-android-arm64: 1.30.2 1352 + lightningcss-darwin-arm64: 1.30.2 1353 + lightningcss-darwin-x64: 1.30.2 1354 + lightningcss-freebsd-x64: 1.30.2 1355 + lightningcss-linux-arm-gnueabihf: 1.30.2 1356 + lightningcss-linux-arm64-gnu: 1.30.2 1357 + lightningcss-linux-arm64-musl: 1.30.2 1358 + lightningcss-linux-x64-gnu: 1.30.2 1359 + lightningcss-linux-x64-musl: 1.30.2 1360 + lightningcss-win32-arm64-msvc: 1.30.2 1361 + lightningcss-win32-x64-msvc: 1.30.2 1362 + 1363 + locate-character@3.0.0: {} 1364 + 1365 + magic-string@0.30.21: 1366 + dependencies: 1367 + '@jridgewell/sourcemap-codec': 1.5.5 1368 + 1369 + mri@1.2.0: {} 1370 + 1371 + mrmime@2.0.1: {} 1372 + 1373 + nanoid@3.3.11: {} 1374 + 1375 + obug@2.1.1: {} 1376 + 1377 + package-manager-detector@1.6.0: {} 1378 + 1379 + picocolors@1.1.1: {} 1380 + 1381 + picomatch@4.0.3: {} 1382 + 1383 + postcss-selector-parser@6.0.10: 1384 + dependencies: 1385 + cssesc: 3.0.0 1386 + util-deprecate: 1.0.2 1387 + 1388 + postcss@8.5.6: 1389 + dependencies: 1390 + nanoid: 3.3.11 1391 + picocolors: 1.1.1 1392 + source-map-js: 1.2.1 1393 + 1394 + prettier-plugin-svelte@3.4.1(prettier@3.8.0)(svelte@5.46.4): 1395 + dependencies: 1396 + prettier: 3.8.0 1397 + svelte: 5.46.4 1398 + 1399 + prettier-plugin-tailwindcss@0.7.2(prettier-plugin-svelte@3.4.1(prettier@3.8.0)(svelte@5.46.4))(prettier@3.8.0): 1400 + dependencies: 1401 + prettier: 3.8.0 1402 + optionalDependencies: 1403 + prettier-plugin-svelte: 3.4.1(prettier@3.8.0)(svelte@5.46.4) 1404 + 1405 + prettier@3.8.0: {} 1406 + 1407 + publint@0.3.16: 1408 + dependencies: 1409 + '@publint/pack': 0.1.2 1410 + package-manager-detector: 1.6.0 1411 + picocolors: 1.1.1 1412 + sade: 1.8.1 1413 + 1414 + readdirp@4.1.2: {} 1415 + 1416 + readdirp@5.0.0: {} 1417 + 1418 + rollup@4.55.1: 1419 + dependencies: 1420 + '@types/estree': 1.0.8 1421 + optionalDependencies: 1422 + '@rollup/rollup-android-arm-eabi': 4.55.1 1423 + '@rollup/rollup-android-arm64': 4.55.1 1424 + '@rollup/rollup-darwin-arm64': 4.55.1 1425 + '@rollup/rollup-darwin-x64': 4.55.1 1426 + '@rollup/rollup-freebsd-arm64': 4.55.1 1427 + '@rollup/rollup-freebsd-x64': 4.55.1 1428 + '@rollup/rollup-linux-arm-gnueabihf': 4.55.1 1429 + '@rollup/rollup-linux-arm-musleabihf': 4.55.1 1430 + '@rollup/rollup-linux-arm64-gnu': 4.55.1 1431 + '@rollup/rollup-linux-arm64-musl': 4.55.1 1432 + '@rollup/rollup-linux-loong64-gnu': 4.55.1 1433 + '@rollup/rollup-linux-loong64-musl': 4.55.1 1434 + '@rollup/rollup-linux-ppc64-gnu': 4.55.1 1435 + '@rollup/rollup-linux-ppc64-musl': 4.55.1 1436 + '@rollup/rollup-linux-riscv64-gnu': 4.55.1 1437 + '@rollup/rollup-linux-riscv64-musl': 4.55.1 1438 + '@rollup/rollup-linux-s390x-gnu': 4.55.1 1439 + '@rollup/rollup-linux-x64-gnu': 4.55.1 1440 + '@rollup/rollup-linux-x64-musl': 4.55.1 1441 + '@rollup/rollup-openbsd-x64': 4.55.1 1442 + '@rollup/rollup-openharmony-arm64': 4.55.1 1443 + '@rollup/rollup-win32-arm64-msvc': 4.55.1 1444 + '@rollup/rollup-win32-ia32-msvc': 4.55.1 1445 + '@rollup/rollup-win32-x64-gnu': 4.55.1 1446 + '@rollup/rollup-win32-x64-msvc': 4.55.1 1447 + fsevents: 2.3.3 1448 + 1449 + sade@1.8.1: 1450 + dependencies: 1451 + mri: 1.2.0 1452 + 1453 + scule@1.3.0: {} 1454 + 1455 + semver@7.7.3: {} 1456 + 1457 + set-cookie-parser@2.7.2: {} 1458 + 1459 + sirv@3.0.2: 1460 + dependencies: 1461 + '@polka/url': 1.0.0-next.29 1462 + mrmime: 2.0.1 1463 + totalist: 3.0.1 1464 + 1465 + source-map-js@1.2.1: {} 1466 + 1467 + svelte-check@4.3.5(picomatch@4.0.3)(svelte@5.46.4)(typescript@5.9.3): 1468 + dependencies: 1469 + '@jridgewell/trace-mapping': 0.3.31 1470 + chokidar: 4.0.3 1471 + fdir: 6.5.0(picomatch@4.0.3) 1472 + picocolors: 1.1.1 1473 + sade: 1.8.1 1474 + svelte: 5.46.4 1475 + typescript: 5.9.3 1476 + transitivePeerDependencies: 1477 + - picomatch 1478 + 1479 + svelte2tsx@0.7.46(svelte@5.46.4)(typescript@5.9.3): 1480 + dependencies: 1481 + dedent-js: 1.0.1 1482 + scule: 1.3.0 1483 + svelte: 5.46.4 1484 + typescript: 5.9.3 1485 + 1486 + svelte@5.46.4: 1487 + dependencies: 1488 + '@jridgewell/remapping': 2.3.5 1489 + '@jridgewell/sourcemap-codec': 1.5.5 1490 + '@sveltejs/acorn-typescript': 1.0.8(acorn@8.15.0) 1491 + '@types/estree': 1.0.8 1492 + acorn: 8.15.0 1493 + aria-query: 5.3.2 1494 + axobject-query: 4.1.0 1495 + clsx: 2.1.1 1496 + devalue: 5.6.2 1497 + esm-env: 1.2.2 1498 + esrap: 2.2.1 1499 + is-reference: 3.0.3 1500 + locate-character: 3.0.0 1501 + magic-string: 0.30.21 1502 + zimmerframe: 1.1.4 1503 + 1504 + tailwindcss@4.1.18: {} 1505 + 1506 + tapable@2.3.0: {} 1507 + 1508 + tinyglobby@0.2.15: 1509 + dependencies: 1510 + fdir: 6.5.0(picomatch@4.0.3) 1511 + picomatch: 4.0.3 1512 + 1513 + totalist@3.0.1: {} 1514 + 1515 + typescript@5.9.3: {} 1516 + 1517 + util-deprecate@1.0.2: {} 1518 + 1519 + vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2): 1520 + dependencies: 1521 + esbuild: 0.27.2 1522 + fdir: 6.5.0(picomatch@4.0.3) 1523 + picomatch: 4.0.3 1524 + postcss: 8.5.6 1525 + rollup: 4.55.1 1526 + tinyglobby: 0.2.15 1527 + optionalDependencies: 1528 + fsevents: 2.3.3 1529 + jiti: 2.6.1 1530 + lightningcss: 1.30.2 1531 + 1532 + vitefu@1.1.1(vite@7.3.1(jiti@2.6.1)(lightningcss@1.30.2)): 1533 + optionalDependencies: 1534 + vite: 7.3.1(jiti@2.6.1)(lightningcss@1.30.2) 1535 + 1536 + zimmerframe@1.1.4: {}
+2
pnpm-workspace.yaml
··· 1 + onlyBuiltDependencies: 2 + - esbuild
+13
src/app.d.ts
··· 1 + // See https://svelte.dev/docs/kit/types#app.d.ts 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 {};
+12
src/app.html
··· 1 + <!doctype html> 2 + <html lang="en"> 3 + <head> 4 + <meta charset="utf-8" /> 5 + <link rel="icon" href="%sveltekit.assets%/favicon.svg" /> 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>
+1
src/lib/index.ts
··· 1 + // Reexport your entry components here
+7
src/routes/+layout.svelte
··· 1 + <script lang="ts"> 2 + import './layout.css'; 3 + 4 + const { children } = $props(); 5 + </script> 6 + 7 + {@render children()}
+3
src/routes/+page.svelte
··· 1 + <h1>Welcome to your library project</h1> 2 + <p>Create your package using @sveltejs/package and preview/showcase your work with SvelteKit</p> 3 + <p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>
+2
src/routes/layout.css
··· 1 + @import 'tailwindcss'; 2 + @plugin '@tailwindcss/typography';
+1
static/favicon.svg
··· 1 + <svg xmlns="http://www.w3.org/2000/svg" width="107" height="128" viewBox="0 0 107 128"><title>svelte-logo</title><path d="M94.157 22.819c-10.4-14.885-30.94-19.297-45.792-9.835L22.282 29.608A29.92 29.92 0 0 0 8.764 49.65a31.5 31.5 0 0 0 3.108 20.231 30 30 0 0 0-4.477 11.183 31.9 31.9 0 0 0 5.448 24.116c10.402 14.887 30.942 19.297 45.791 9.835l26.083-16.624A29.92 29.92 0 0 0 98.235 78.35a31.53 31.53 0 0 0-3.105-20.232 30 30 0 0 0 4.474-11.182 31.88 31.88 0 0 0-5.447-24.116" style="fill:#ff3e00"/><path d="M45.817 106.582a20.72 20.72 0 0 1-22.237-8.243 19.17 19.17 0 0 1-3.277-14.503 18 18 0 0 1 .624-2.435l.49-1.498 1.337.981a33.6 33.6 0 0 0 10.203 5.098l.97.294-.09.968a5.85 5.85 0 0 0 1.052 3.878 6.24 6.24 0 0 0 6.695 2.485 5.8 5.8 0 0 0 1.603-.704L69.27 76.28a5.43 5.43 0 0 0 2.45-3.631 5.8 5.8 0 0 0-.987-4.371 6.24 6.24 0 0 0-6.698-2.487 5.7 5.7 0 0 0-1.6.704l-9.953 6.345a19 19 0 0 1-5.296 2.326 20.72 20.72 0 0 1-22.237-8.243 19.17 19.17 0 0 1-3.277-14.502 17.99 17.99 0 0 1 8.13-12.052l26.081-16.623a19 19 0 0 1 5.3-2.329 20.72 20.72 0 0 1 22.237 8.243 19.17 19.17 0 0 1 3.277 14.503 18 18 0 0 1-.624 2.435l-.49 1.498-1.337-.98a33.6 33.6 0 0 0-10.203-5.1l-.97-.294.09-.968a5.86 5.86 0 0 0-1.052-3.878 6.24 6.24 0 0 0-6.696-2.485 5.8 5.8 0 0 0-1.602.704L37.73 51.72a5.42 5.42 0 0 0-2.449 3.63 5.79 5.79 0 0 0 .986 4.372 6.24 6.24 0 0 0 6.698 2.486 5.8 5.8 0 0 0 1.602-.704l9.952-6.342a19 19 0 0 1 5.295-2.328 20.72 20.72 0 0 1 22.237 8.242 19.17 19.17 0 0 1 3.277 14.503 18 18 0 0 1-8.13 12.053l-26.081 16.622a19 19 0 0 1-5.3 2.328" style="fill:#fff"/></svg>
+18
svelte.config.js
··· 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://svelte.dev/docs/kit/integrations 7 + // for more information about preprocessors 8 + preprocess: vitePreprocess(), 9 + 10 + kit: { 11 + // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/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://svelte.dev/docs/kit/adapters for more information about adapters. 14 + adapter: adapter() 15 + } 16 + }; 17 + 18 + export default config;
+15
tsconfig.json
··· 1 + { 2 + "extends": "./.svelte-kit/tsconfig.json", 3 + "compilerOptions": { 4 + "rewriteRelativeImportExtensions": true, 5 + "allowJs": true, 6 + "checkJs": true, 7 + "forceConsistentCasingInFileNames": true, 8 + "resolveJsonModule": true, 9 + "skipLibCheck": true, 10 + "sourceMap": true, 11 + "strict": true, 12 + "module": "NodeNext", 13 + "moduleResolution": "NodeNext" 14 + } 15 + }
+5
vite.config.ts
··· 1 + import tailwindcss from '@tailwindcss/vite'; 2 + import { sveltekit } from '@sveltejs/kit/vite'; 3 + import { defineConfig } from 'vite'; 4 + 5 + export default defineConfig({ plugins: [tailwindcss(), sveltekit()] });