1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
"name": "@umabot/gateway",
"version": "0.1.0",
"description": "Official r/okbuddyumamusume Discord Server Gateway Client",
"type": "module",
"main": "src/index.ts",
"scripts": {
"start": "tsx src/index.ts",
"dev": "tsx watch src/index.ts",
"build": "tsc",
"type-check": "tsc --noEmit"
},
"dependencies": {
"discord.js": "^14.14.1",
"dotenv": "^16.0.3",
"iqdb-client": "^3.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.7.0",
"typescript": "^5.0.0"
}
}
|