-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "ryo",
"version": "1.0.0",
"description": "A simple discord bot",
"type": "module",
"private": true,
"main": "src/server.ts",
"scripts": {
"start": "node src/server.ts",
"dev": "wrangler dev src/server.ts",
"test": "c8 mocha test",
"fix": "eslint --fix '**/*.ts'",
"lint": "eslint '**/*.ts'",
"register": "node register.js",
"publish": "wrangler deploy"
},
"keywords": [],
"author": "Justin Beckwith <justin.beckwith@gmail.com>",
"license": "MIT",
"dependencies": {
"@types/html-to-text": "^9.0.4",
"@types/node": "^20.11.19",
"discord-interactions": "^3.4.0",
"hono": "^4.0.3",
"html-to-text": "^9.0.5",
"postal-mime": "^2.0.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240208.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"c8": "^9.0.0",
"chai": "^5.0.0",
"dotenv": "^16.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"mocha": "^10.2.0",
"prettier": "^3.0.1",
"sinon": "^17.0.0",
"typescript": "^5.3.3",
"wrangler": "^3.28.3"
}
}