-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 856 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 856 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
{
"name": "@eeveebot/help",
"version": "2.5.12",
"description": "help module for eevee.bot",
"main": "dist/main.mjs",
"type": "module",
"scripts": {
"build": "npm run test && npx tsc",
"dev": "tsc --watch & node --loader ts-node/esm src/main.mts",
"test": "npx eslint src/",
"update-libraries": "ncu -u @eeveebot/libeevee undici && npm install"
},
"dependencies": {
"@eeveebot/libeevee": "^4.3.0",
"nats": "^2.29.3",
"prom-client": "^15.1.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@types/node": "^20.19.37",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"eslint": "^8.57.1",
"globals": "^17.4.0",
"prettier": "^3.5.3",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=24.0.0"
}
}