-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.22 KB
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
39
40
41
42
43
44
45
46
47
48
{
"name": "thonkbot",
"type": "module",
"version": "2.6.2",
"description": "A thonky discord bot",
"main": "./src/main.js",
"repository": "andesyv/ThonkBot",
"author": "andesyv",
"engines": {
"node": ">=18.0",
"npm": "*"
},
"scripts": {
"start": "tsx src/main.ts --verbose",
"build": "tsc",
"deploy": "tsc && node dist/src/main.js",
"lint": "eslint"
},
"dependencies": {
"@discordjs/rest": "^2.5.0",
"@octokit/request": "^10.0.2",
"@types/better-sqlite3": "^7.6.13",
"@types/minimist": "^1.2.5",
"@types/node-schedule": "^2.1.7",
"axios": "^1.9.0",
"better-sqlite3": "11.10.0",
"date-fns": "^4.1.0",
"discord-api-types": "^0.38.8",
"discord.js": "^14.19.3",
"dotenv": "^16.5.0",
"franc": "^6.2.0",
"minimist": "^1.2.8",
"node-schedule": "^2.1.1",
"typescript": "^5.8.3",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@types/node": "^22.15.21",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"prettier": "^3.5.3",
"tsx": "^4.19.4"
}
}