-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 967 Bytes
/
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
{
"name": "tfp-bot",
"version": "1.6.5",
"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.1.0",
"@eslint/js": "^9.14.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^9.14.0",
"kysely-codegen": "^0.17.0",
"nodemon": "^3.1.7",
"typescript": "^5.6.3"
},
"dependencies": {
"axios": "^1.7.7",
"chalk": "^5.3.0",
"cheerio": "^1.0.0",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"fast-xml-parser": "^4.5.0",
"kysely": "^0.27.4",
"mysql2": "^3.11.4",
"ts-node": "^10.9.2"
}
}