-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.33 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.33 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
{
"name": "hubs-discord-bot",
"version": "0.0.6",
"type": "module",
"description": "A Discord bot that does helpful things related to Hubs rooms.",
"repository": "github:Hubs-Foundation/hubs-discord-bot",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"local": "NODE_TLS_REJECT_UNAUTHORIZED=0 npm start",
"lint": "eslint src",
"test": "tape tests/*.js"
},
"keywords": [
"hubs"
],
"author": "Marshall Polaris <marshall@pol.rs>",
"license": "MPL-2.0",
"engines": {
"node": ">=22.14.0"
},
"dependencies": {
"@sentry/node": "^9.12.0",
"bufferutil": "^4.0.9",
"discord.js": "^14.18.0",
"dotenv": "^16.5.0",
"escape-string-regexp": "^5.0.0",
"moment-timezone": "^0.5.48",
"node-schedule": "^2.1.1",
"phoenix": "^1.7.21",
"ws": "^8.18.1",
"zlib-sync": "^0.1.10"
},
"devDependencies": {
"eslint": "^9.24.0",
"eslint-plugin-node": "^11.1.0",
"tape": "^5.9.0"
},
"//": {
"dependencies comments": {
"bufferutil comment": [
"An optional dependency for both @discordjs/ws and ws that's used as a regular dependency here to increase performance."
],
"zlib-sync comment": [
"An optional dependency for @discordjs/ws that's used as a regular dependency here to increase performance."
]
}
}
}