-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 798 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 798 Bytes
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
{
"name": "Overwatch",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "bun run index.ts"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"discord.js": "^14.7.1",
"mongodb": "^6.12.0",
"eff-diceware-passphrase": "^3.0.0",
"express": "^4.18.2",
"node-cron": "^3.0.2",
"node-fetch": "^3.3.1",
"ollama": "^0.5.1",
"openai": "^4.12.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "latest",
"@types/node-cron": "^3.0.11",
"@types/uuid": "^9.0.7",
"bun-types": "latest"
},
"imports": {
"#events/*": "./events/*",
"#commands/*": "./commands/*",
"#jobs/*": "./jobs/*",
"#util/*": "./util/*",
"#server/*": "./server/*",
"#config/*": "./config/*",
"#types/*": "./types/*"
},
"type": "module"
}