I can't be bothered to even explain what happene here

This commit is contained in:
2025-02-07 23:18:04 -05:00
parent d982567c7b
commit bc3443b1dc
21 changed files with 994 additions and 177 deletions

View File

@@ -1,18 +1,24 @@
{
"tasks": {
"compile-win": "deno compile --target x86_64-pc-windows-msvc -o build/GalvanicCorrosion.exe --allow-env --allow-sys --allow-net --allow-write --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-write --allow-read src/main.ts",
"compile-win": "deno compile --target x86_64-pc-windows-msvc -o build/GalvanicCorrosion.exe -A src/main.ts",
"compile-linux": "deno compile --target x86_64-unknown-linux-gnu -o build/GalvanicCorrosion -A src/main.ts",
"cross-compile": "deno run compile-win && deno run compile-linux",
"start": "deno run --allow-env --allow-sys --allow-net --allow-write --allow-read src/main.ts"
"start": "deno run -A src/main.ts"
},
"imports": {
"@oak/oak": "jsr:@oak/oak@^17.1.3",
"@gz/jwt": "jsr:@gz/jwt@^0.1.0",
"@proxnet/undead-logging": "jsr:@proxnet/undead-logging@^1.2.0",
"@std/assert": "jsr:@std/assert@1",
"@types/express": "npm:@types/express@^5.0.0",
"discord.js": "npm:discord.js@^14.16.3",
"ioredis": "npm:ioredis@^5.4.1",
"express": "npm:express@^4.21.2",
"ioredis": "npm:ioredis@^5.5.0",
"validator": "npm:validator@^13.12.0",
"why-is-node-running": "npm:why-is-node-running@^3.2.1"
"bcrypt": "https://deno.land/x/bcrypt@v0.3.0/mod.ts"
},
"compilerOptions": {
"types": [
"./src/types"
]
}
}