-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "afbot",
"version": "0.1.0",
"description": "A-Frame Helpbot",
"type": "module",
"private": true,
"main": "src/index.ts",
"scripts": {
"start": "wrangler start",
"dev": "wrangler dev",
"concat": "node ./scripts/concat.mjs",
"ngrok": "ngrok http 8787",
"fix": "eslint --fix '**/*.ts'",
"lint": "eslint '**/*.ts'",
"deploy": "wrangler deploy"
},
"keywords": [],
"license": "MIT",
"dependencies": {
"@supabase/supabase-js": "^2.39.3",
"@tsndr/cloudflare-worker-jwt": "^2.5.0",
"@types/node": "^20.11.19",
"bgent": "^0.0.46",
"discord-interactions": "^3.4.0",
"itty-router": "^4.0.13",
"octokit": "^3.1.2",
"openai": "^4.28.0",
"uuid-by-string": "^4.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.2",
"dotenv": "^16.0.3",
"eslint": "^8.41.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"ngrok": "^5.0.0-beta.2",
"prettier": "^3.0.1",
"wrangler": "^3.0.1"
}
}