Initial commit

This commit is contained in:
2024-11-12 23:37:34 -05:00
commit ab5907355d
4 changed files with 565 additions and 0 deletions

12
deno.json Normal file
View File

@@ -0,0 +1,12 @@
{
"tasks": {
"compile-win": "deno compile --target x86_64-pc-windows-msvc -o build/GalvanicCorrosion.exe --allow-env --allow-sys --allow-net --allow-read=. src/main.ts",
"compile-linux": "deno compile --target x86_64-unknown-linux-gnu -o build/GalvanicCorrosion --allow-env --allow-sys --allow-net --allow-read=. src/main.ts",
"cross-compile": "deno run compile-win && deno run compile-linux"
},
"imports": {
"@std/assert": "jsr:@std/assert@1",
"express": "npm:express@^4.21.1",
"log-like-a-zombie": "npm:log-like-a-zombie@1.4.0"
}
}