whoa svelte is here

Co-authored-by: Astra <Astrrra@users.noreply.github.com>
This commit is contained in:
Ariadna 2025-04-20 00:18:33 -04:00
parent 76d837320d
commit 3f03c12152
Signed by: ari
SSH key fingerprint: SHA256:j4xpQafvRcIH4rwZqM5aREIogWsCjyYohia7vH0+uZY
24 changed files with 1080 additions and 16 deletions

24
web/package.json Normal file
View file

@ -0,0 +1,24 @@
{
"name": "web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json"
},
"dependencies": {
"@atcute/bluesky": "^2.0.2",
"@atcute/client": "^3.0.1"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tsconfig/svelte": "^5.0.4",
"svelte": "^5.23.1",
"svelte-check": "^4.1.5",
"typescript": "~5.7.2",
"vite": "^6.3.1"
}
}