-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.15 KB
/
package.json
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
{
"name": "glados",
"version": "1.0.0",
"description": "GLaDOS",
"author": {
"email": "nathan@bonnell.fr",
"name": "Wiibleyde"
},
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node .",
"build": "tsup src/index.ts --minify",
"format": "prettier --write \"**/*.{json,ts}\"",
"lint": "eslint ."
},
"dependencies": {
"@google/generative-ai": "^0.17.1",
"@prisma/client": "^5.21.1",
"cron": "^3.1.7",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"jimp": "^0.22.12",
"prisma": "^5.21.1",
"rotating-file-stream": "^3.2.3"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"globals": "^15.9.0",
"prettier": "^2.8.4",
"tsup": "^6.6.0",
"tsx": "^3.12.3",
"typescript": "^4.9.5",
"typescript-eslint": "^8.5.0"
}
}