Changed to deno suport

This commit is contained in:
Lukian 2024-12-23 20:15:22 +01:00
parent ac0672f13a
commit 13df5eb10d
14 changed files with 35 additions and 60 deletions

11
deno.json Normal file
View file

@ -0,0 +1,11 @@
{
"tasks": {
"dev": "deno run --allow-env --allow-read --allow-net --watch src/main.ts",
"start": "deno run --allow-env --allow-read --allow-net src/main.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@1",
"discord.js": "npm:discord.js@^14.16.3",
"dotenv": "npm:dotenv@^16.4.7"
}
}