-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1011 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1011 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
{
"name": "discordbot",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"license": "UNLICENSE",
"type": "module",
"scripts": {
"dev": "tsx watch -r tsconfig-paths/register src/index.ts",
"build": "tsc && tsc-alias",
"start": "node dist/index.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write src",
"format:check": "prettier --check src"
},
"dependencies": {
"@mistralai/mistralai": "^2.2.0",
"chalk": "^5.6.2",
"discord.js": "^14.26.2",
"dotenv": "^17.4.1",
"express": "^5.2.1",
"homoglyph-search": "^1.3.0",
"smee-client": "^5.0.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"eslint": "^10.2.0",
"prettier": "^3.8.2",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}