initial commit

This commit is contained in:
laura 2025-10-31 10:10:40 -03:00
commit 497b061b92
Signed by: w
GPG key ID: BCD2117C99E69817
8 changed files with 1152 additions and 0 deletions

16
deno.json Normal file
View file

@ -0,0 +1,16 @@
{
"tasks": {
"dev": "deno run --allow-net src/main.ts"
},
"lint": {
"rules": {
"tags": [
"recommended"
],
"exclude": ["no-explicit-any", "require-await"]
}
},
"imports": {
"@std/assert": "jsr:@std/assert@1"
}
}