-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 993 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 993 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
{
"name": "complibot-commands",
"version": "4.0.0",
"description": "The official bot for the Faithful Discord servers.",
"main": "src/index.ts",
"scripts": {
"start": "node -r ts-node/register -r tsconfig-paths/register src/index.ts",
"dev": "nodemon -r tsconfig-paths/register --ignore json/dynamic/ --ignore repos/ src/index.ts",
"prettier": "prettier \"{,!(node_modules)/**/}*.ts\" --write",
"lint": "eslint ."
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@types/node": "^25.3.2",
"eslint": "^9.39.3",
"nodemon": "^3.1.14",
"prettier": "^3.8.1",
"typescript-eslint": "^8.56.1"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.95",
"@octokit/rest": "^22.0.1",
"axios": "^1.13.6",
"chalk": "^5.6.2",
"discord.js": "^14.25.1",
"gif-encoder-2": "^1.0.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0"
}
}