-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"$schema": "https://json.schemastore.org/package.json",
"name": "evilbot",
"version": "5.0.3",
"description": "Official discord bot for Eviloma discord server",
"homepage": "https://github.com/Eviloma/evilbot",
"bugs": {
"url": "https://github.com/Eviloma/evilbot/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "HighError",
"url": "https://github.com/HighError",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Eviloma/evilbot.git"
},
"engines": {
"node": ">=20.0.0"
},
"module": "src/index.ts",
"type": "module",
"scripts": {
"start": "bun .",
"dev": "bun --watch .",
"deploy-commands": "bun ./src/utils/deploy-commands.ts",
"check": "bunx biome check --write .",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"@types/react": "^18.3.12",
"husky": "^9.1.6",
"lint-staged": "^15.2.10"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"trustedDependencies": ["@biomejs/biome"],
"dependencies": {
"canvacord": "^6.0.2",
"dayjs": "^1.11.13",
"discord.js": "^14.16.3",
"easy-discord-components": "^1.1.2",
"envalid": "^8.0.0",
"rainlink": "^1.2.5"
}
}