generated from Pogodaanton/cli-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
38
39
40
41
{
"name": "dissidium",
"description": "The Discord bot that does all the things you don't need!",
"version": "2.1.0",
"main": "src/index.ts",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"license": "MIT",
"scripts": {
"clean": "rm -rf ./dist",
"build/release": "node build.js",
"build/dev": "WITH_SOURCEMAP=1 node build.js",
"watch": "WITH_WATCH=1 WITH_SOURCEMAP=1 node build.js",
"start": "node ./dist/index.js",
"lint": "eslint ./src --ext .js,.ts"
},
"devDependencies": {
"@types/eslint": "^8.56.3",
"@types/lowdb": "^1.0.15",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"globby": "^13.2.2",
"prettier": "^3.2.5",
"typescript": "^4.9.5"
},
"dependencies": {
"@discordjs/rest": "^2.2.0",
"discord-api-types": "^0.37.71",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"emoji-regex": "^10.3.0",
"lowdb": "^3.0.0",
"nanoid": "^3.3.7",
"node-fetch": "^3.3.2"
}
}