create-vanjs
Version:
🍦 Quick tool for scaffolding your first VanJS project
17 lines (16 loc) • 509 B
JSON
{
"tasks": {
"dev": "deno run -A --node-modules-dir npm:vite",
"build": "deno run -A --node-modules-dir npm:vite build",
"preview": "deno run -A --node-modules-dir npm:vite preview",
"start": "deno run --allow-net --allow-read jsr:@std/http@1/file-server dist/"
},
"compilerOptions": {
"lib": ["ES2020", "DOM", "DOM.Iterable"]
},
"imports": {
"@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
"vite": "npm:vite@^6.2.5",
"vanjs-core": "npm:vanjs-core@^1.5.3"
}
}