-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1013 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1013 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": "tfp-bot",
"version": "1.6.7",
"description": "TFP's Custom Discord Bot",
"type": "module",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src",
"build": "tsc",
"watch": "nodemon",
"deploy": "node --loader ts-node/esm src/deploy.ts",
"preversion": "node --loader ts-node/esm src/preversion.ts && git add ."
},
"author": "The Fire Panel",
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.47.0",
"@typescript-eslint/utils": "^8.47.0",
"eslint": "^9.39.2",
"kysely-codegen": "^0.20.0",
"nodemon": "^3.1.14",
"typescript": "^5.9.3"
},
"dependencies": {
"axios": "^1.13.6",
"chalk": "^5.6.2",
"cheerio": "^1.2.0",
"discord.js": "^14.25.1",
"dotenv": "^17.3.1",
"fast-xml-parser": "^5.3.7",
"kysely": "^0.28.11",
"mysql2": "^3.18.0",
"ts-node": "^10.9.2"
}
}