Adds initial features

This commit is contained in:
Matheus Albino
2024-10-16 03:47:20 -03:00
commit 1e55753bbb
17 changed files with 791 additions and 0 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "discord-repost-sniffer",
"type": "module",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node --experimental-strip-types --env-file=.env src/bot.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"discord.js": "^14.16.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"typescript": "^5.6.3"
}
}