This commit is contained in:
IanKulin
2025-09-25 20:50:13 +08:00
commit 9546dd3ab3
17 changed files with 3248 additions and 0 deletions

12
deno.json Normal file
View File

@@ -0,0 +1,12 @@
{
"imports": {
"@std/assert": "https://deno.land/std@0.224.0/assert/mod.ts",
"@std/testing": "https://deno.land/std@0.224.0/testing/mock.ts"
},
"tasks": {
"dev": "deno run --allow-env --allow-sys demo.js",
"test": "deno test --allow-env --allow-sys",
"lint": "deno lint",
"check": "deno check lib/logger.ts"
}
}