-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 964 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 964 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
38
39
{
"name": "io-bot-v2",
"version": "2.0.0",
"description": "Bot backend modular para Twitch, Discord y Philips Hue",
"type": "module",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check .",
"format:write": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest"
},
"engines": {
"node": ">=25.9.0"
},
"dependencies": {
"@twurple/auth": "^8.1.3",
"@twurple/chat": "^8.1.3",
"axios": "^1.9.0",
"better-sqlite3": "^12.9.0",
"discord.js": "^14.18.0",
"dotenv": "^16.5.0",
"pino": "^9.7.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"globals": "^16.0.0",
"pino-pretty": "^13.0.0",
"prettier": "^3.5.3",
"vitest": "^3.1.1"
}
}