initial mockup

This commit is contained in:
Ariadna 2025-04-23 06:00:23 -04:00
commit e16c0f9d1a
Signed by: ari
SSH key fingerprint: SHA256:j4xpQafvRcIH4rwZqM5aREIogWsCjyYohia7vH0+uZY
14 changed files with 618 additions and 0 deletions

15
deno.json Normal file
View file

@ -0,0 +1,15 @@
{
"imports": {
"lume/": "https://deno.land/x/lume@v2.5.3/"
},
"tasks": {
"lume": "echo \"import 'lume/cli.ts'\" | deno run -A -",
"build": "deno task lume",
"serve": "deno task lume -s"
},
"compilerOptions": {
"types": [
"lume/types.ts"
]
}
}