-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.74 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
55
56
57
58
59
60
61
{
"name": "discord-bot-template",
"version": "1.0.0",
"description": "A Discord bot boilerplate including TypeScript and ESLint.",
"author": {
"email": "[email protected]",
"name": "Fellipe Utaka"
},
"license": "MIT",
"private": true,
"homepage": "https://github.com/fellipeutaka/discord-bot-template",
"repository": {
"type": "git",
"url": "https://github.com/fellipeutaka/discord-bot-template.git"
},
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node .",
"proxy:install": "make install",
"proxy": "ChatGPTProxy",
"prod": "tsx src/index.ts --minify",
"build": "tsup src/index.ts --minify",
"format": "prettier --write \"**/*.{json,ts}\"",
"lint": "eslint . --ext ts --fix"
},
"dependencies": {
"@discordjs/builders": "^1.6.3",
"@discordjs/core": "^0.6.0",
"@discordjs/opus": "^0.9.0",
"@discordjs/rest": "^1.7.1",
"@discordjs/voice": "^0.16.0",
"@esbuild-kit/esm-loader": "^2.5.5",
"chatgpt": "^5.2.5",
"discord.js": "^14.11.0",
"dotenv": "^16.0.3",
"fetch-cookie": "^2.1.0",
"ffmpeg-static": "^5.1.0",
"fix-path": "^3.0.0",
"node-fetch": "^2.6.12",
"node-mihome": "^0.0.32",
"ora": "^6.3.1",
"python-shell": "^5.0.0",
"sodium-native": "^4.0.4"
},
"devDependencies": {
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^2.8.4",
"tsup": "^6.6.0",
"tsx": "^3.12.3",
"typescript": "^4.9.5"
}
}