-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.28 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.28 KB
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
{
"name": "shaderbot",
"version": "1.0.0",
"description": "Bot of the shaderLABS Discord Server.",
"main": "index.ts",
"private": true,
"scripts": {
"start": "bun run src/index.ts",
"update": "bun run src/update.ts",
"add-permissions": "bun run src/addPermissions.ts",
"dev": "bun run --watch src/index.ts",
"check": "tsc --skipLibCheck"
},
"author": {
"name": "Niemand",
"url": "https://github.com/Kneemund"
},
"type": "module",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"@elysiajs/cors": "1.4.1",
"@elysiajs/jwt": "1.4.1",
"@octokit/webhooks-methods": "6.0.0",
"arctic": "3.7.0",
"comment-json": "4.6.2",
"discord.js": "14.25.1",
"drizzle-orm": "^1.0.0-beta.17-67b1795",
"elysia": "1.4.27",
"pg": "8.20.0",
"sharp": "0.34.5"
},
"devDependencies": {
"@types/bun": "1.3.10",
"@types/node-cron": "3.0.11",
"@types/pg": "8.18.0",
"@types/sharp": "0.32.0",
"drizzle-kit": "^1.0.0-beta.17-67b1795",
"typescript": "5.9.3"
}
}