feat: base functionality

This commit is contained in:
Esa Kataja
2025-08-22 23:58:30 +03:00
parent d6e6270237
commit 4631524510
6 changed files with 668 additions and 6 deletions
+7 -2
View File
@@ -1,8 +1,13 @@
{
"tasks": {
"dev": "deno run --watch main.ts"
"dev": "deno run --watch main.ts",
"run": "deno run --allow-read src/main.ts",
"build": "deno compile --allow-read --allow-write --allow-run --allow-env --allow-net --output ./videnc ./src/main.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@1"
"@std/assert": "jsr:@std/assert@1",
"@std/cli": "jsr:@std/cli@^1.0.21",
"@std/fs": "jsr:@std/fs@^1.0.19",
"@std/path": "jsr:@std/path@^1.1.2"
}
}