add flake and move to npm

This commit is contained in:
Joakim Repomaa
2026-02-22 22:23:49 +02:00
parent 9f661e4d57
commit 5ae9386fcd
11 changed files with 6579 additions and 1635 deletions

View File

@@ -1,13 +1,13 @@
{
"packages": ["deno@latest"],
"packages": ["nodejs@latest"],
"shell": {
"init_hook": ["echo 'Welcome to router-dash dev environment!'"],
"scripts": {
"dev": "deno task dev",
"build": "deno task build",
"check": "deno task check",
"lint": "deno task lint",
"format": "deno task format"
"dev": "npm run dev",
"build": "npm run build",
"check": "npm run check",
"lint": "npm run lint",
"format": "npm run format"
}
}
}