-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.02 KB
/
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": "my-discord-bot",
"version": "1.0.0",
"description": "My Discord bot.",
"main": "./dist/index.js",
"scripts": {
"build": "rm -rf ./dist && npx tsc",
"deploy": "node ./dist/deploy-commands.js",
"lint": "npx eslint --fix .",
"start": "node ./dist/index.js"
},
"dependencies": {
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"prettier": "^3.2.5",
"runescape-text": "^3.1.0"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.6",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18"
}
}