-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.32 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.32 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "discordjs-v14-template",
"version": "1.0.0",
"description": "Advanced ESM Discord.js v14 Template",
"main": "client.js",
"scripts": {
"test": "node client.js",
"dev": "nodemon client.js",
"fmt": "npx -p prettier@2.x -- prettier -w '**/*.{js,md}'"
},
"type": "module",
"keywords": [
"discord",
"js",
"v14",
"handler",
"template",
"mongoose"
],
"dependencies": {
"canvas": "^2.11.2",
"chalk": "^5.2.0",
"discord-html-transcripts": "^3.1.4",
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"glob": "^10.3.1",
"moment": "^2.29.4",
"mongoose": "^7.3.1",
"ms": "^2.1.3",
"node-fetch": "^3.3.1",
"node-schedule": "^2.1.1"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"nodemon": "^2.0.21"
},
"author": "Peter-MJ-Parker",
"license": "ISC",
"homepage": "https://github.com/Discord-Robots/discordjs-v14-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Discord-Robots/discordjs-v14-template.git"
},
"bugs": {
"url": "https://github.com/Discord-Robots/discordjs-v14-template/issues"
},
"engines": {
"node": ">=19.0.1",
"npm": ">=8.19.2"
},
"imports": {
"#handlers": [
"./src/functions/handlers/handlers.js"
],
"#client": [
"./client.js"
],
"#BOT": [
"./src/Structures/bot.js"
],
"#schemas/*": [
"./src/models/*"
]
}
}