-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 861 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "anilist-discord-bot",
"version": "1.0.0",
"description": "Anilist bot for Discord. TypeScript & DiscordJS.",
"main": "dist/index.js",
"scripts": {
"dev": "NODE_ENV=dev bun --watch src/index.ts",
"lint": "biome check --write .",
"start": "NODE_ENV=prod bun dist/index.js",
"build": "bun build src/index.js --outdir ./dist --target bun",
"docker:deploy": "docker-compose up -d --build"
},
"keywords": [
"anilist",
"discord",
"discord-bot",
"bot",
"typescript",
"javascript",
"graphql",
"automation",
"anime",
"discord.js"
],
"author": "arch-fan",
"license": "LGPL-3.0-or-later",
"devDependencies": {
"@biomejs/biome": "1.8.0",
"@types/bun": "^1.1.3",
"typescript": "^5.5.2"
},
"dependencies": {
"discord.js": "14.15.3",
"valibot": "0.31.1"
}
}