-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 744 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 744 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
{
"name": "videonotifier",
"module": "src/index.ts",
"type": "module",
"version": "1.3.0-wip",
"devDependencies": {
"@types/bun": "1.1.10",
"eslint": "^8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-unused-imports": "4.1.4",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.11.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"lint": "eslint . --ext .ts -c .eslintrc.json",
"lint:fix": "eslint . --ext .ts -c .eslintrc.json --fix"
},
"dependencies": {
"discord.js": "^14.16.3",
"mysql2": "^3.11.3"
}
}