-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.54 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.54 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
47
48
49
50
51
{
"name": "ketchup-bot",
"version": "0.0.0",
"description": "A Discord fun bot with ketchup as the currency",
"private": true,
"type": "module",
"main": "src/index.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"start": "node dist/index.js",
"register": "node dist/register.js",
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"tunnel": "ngrok http 8787",
"format": "prettier --write .",
"lint": "eslint ."
},
"keywords": [],
"author": "Rusty Cat",
"license": "MIT",
"dependencies": {
"chrono-node": "^2.9.0",
"discord-interactions": "^4.4.0",
"itty-router": "^5.0.23",
"lru-cache": "^11.2.7",
"uuid": "^13.0.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260317.1",
"@eslint/js": "^10.0.1",
"@rustykitty/eslint-config": "^1.1.0",
"@rustykitty/prettier-config": "^1.1.2",
"@types/node": "^25.5.0",
"@types/typescript": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"discord-api-types": "^0.38.42",
"dotenv": "^17.3.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"ngrok": "^5.0.0-beta.2",
"prettier": "3.8.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.2",
"wrangler": "^4.78.0"
},
"resolutions": {
"brace-expansion": "^2.0.2"
},
"packageManager": "yarn@4.9.1"
}