-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "discord-bot",
"version": "1.0.0",
"description": "A template for a Discord Bot using TypeScript, Eslint, Prettier and git",
"exports": "./dist/index.js",
"main": "./dist/index.js",
"scripts": {
"build": "tsup",
"commands": "npm run build && node --trace-warnings --enable-source-maps ./dist/registerCommands.js",
"lint": "eslint src --fix",
"prepare": "npm test",
"prettier": "prettier --write src/**/*.ts",
"start": "npm run build && node --trace-warnings --enable-source-maps .",
"test": "eslint src && tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DTrombett/discord-bot.git"
},
"author": "DTrombett",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18"
},
"bugs": {
"url": "https://github.com/DTrombett/discord-bot/issues"
},
"homepage": "https://github.com/DTrombett/discord-bot#readme",
"dependencies": {
"@discordjs/builders": "*",
"@discordjs/rest": "*",
"discord-api-types": "*",
"discord.js": "^14.11.0",
"dotenv": "^16.3.0",
"tsup": "^7.0.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.7",
"erlpack": "^0.1.4",
"utf-8-validate": "^6.0.3",
"zlib-sync": "^0.1.8"
},
"devDependencies": {
"@tsconfig/node18": "^2.0.1",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-plugin-node": "^11.1.0",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
}
}