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
|
{
"name": "@umabot/interactions",
"version": "0.1.0",
"description": "Official r/okbuddyumamusume Discord Server Interactions Client",
"type": "module",
"private": true,
"main": "packages/interactions/server.ts",
"scripts": {
"start": "wrangler dev",
"ngrok": "ngrok http 8787",
"test": "bun test",
"fix": "eslint --fix '**/*.{js,ts}'",
"lint": "eslint '**/*.{js,ts}'",
"register": "bun run packages/interactions/register.ts",
"publish": "wrangler deploy",
"build": "bun run --bun tsc",
"type-check": "tsc --noEmit"
},
"keywords": [],
"author": "Fuwn <[email protected]>",
"license": "MIT",
"dependencies": {
"discord-interactions": "^4.0.0",
"itty-router": "^5.0.9"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@types/bun": "latest",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"dotenv": "^16.0.3",
"eslint": "^9.1.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^16.0.0",
"ngrok": "^5.0.0-beta.2",
"prettier": "^3.6.2",
"typescript": "^5.0.0",
"wrangler": "^4.13.2"
}
}
|