feat: initial commit

This commit is contained in:
oxypomme
2025-12-30 19:52:07 +01:00
commit 6514dc165b
10 changed files with 372 additions and 0 deletions

19
deno.json Normal file
View File

@@ -0,0 +1,19 @@
{
"$schema": "https://raw.githubusercontent.com/denoland/deno/refs/heads/main/cli/schemas/config-file.v1.json",
"tasks": {
"format": "deno x prettier --write .",
"lint": "deno x oxlint --fix"
},
"imports": {
"~": "./",
"ofetch": "npm:ofetch@^1.5.1"
},
"permissions": {
"default": {
"env": true,
"net": true
}
}
}