first commit

This commit is contained in:
Irinel Sarbu
2025-11-21 13:03:06 +01:00
commit 3f98712766
8 changed files with 1206 additions and 0 deletions

18
deno.json Normal file
View File

@@ -0,0 +1,18 @@
{
"tasks": {
"start": "deno run --allow-read --allow-write --allow-env main.ts",
"dev": "deno run --watch --allow-read --allow-write --allow-env main.ts"
},
"imports": {
"@std/path": "jsr:@std/path@^1.0.0",
"@std/fs": "jsr:@std/fs@^1.0.0",
"@cliffy/command": "jsr:@cliffy/command@^1.0.0-rc.7",
"@cliffy/prompt": "jsr:@cliffy/prompt@^1.0.0-rc.7",
"@cliffy/ansi": "jsr:@cliffy/ansi@^1.0.0-rc.7",
"@cliffy/table": "jsr:@cliffy/table@^1.0.0-rc.7"
},
"compilerOptions": {
"lib": ["deno.window"],
"strict": true
}
}