forked from TheFirePanel/TFPBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 886 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 886 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
{
"name": "tfp-bot",
"version": "1.5.1",
"description": "TFP's Custom Discord Bot",
"type": "module",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src --ext .ts",
"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": {
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"kysely-codegen": "^0.14.1",
"nodemon": "^3.1.0",
"typescript": "^5.4.3"
},
"dependencies": {
"axios": "^1.6.8",
"chalk": "^5.3.0",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"fast-xml-parser": "^4.3.6",
"kysely": "^0.27.3",
"mysql2": "^3.9.2",
"ts-node": "^10.9.2"
}
}