2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-05-27 14:45:03 +03:00
Files
bbob/examples/svelte-vite/package.json
T
Nikolay Kost 0beab56d7f feat: svelte 4 example (#244)
* fix: svelte example

* fix: reactivity
2024-07-16 03:03:41 +02:00

27 lines
607 B
JSON

{
"name": "svelte-vite",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json && tsc -p tsconfig.node.json"
},
"dependencies": {
"@bbob/preset-html5": "*",
"@bbob/html": "*",
"@bbob/types": "*"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@tsconfig/svelte": "^5.0.4",
"svelte": "^4.2.18",
"svelte-check": "^3.8.1",
"tslib": "^2.6.3",
"typescript": "^5.2.2",
"vite": "^5.3.1"
}
}