-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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
{
"author": "HunteRoi <[email protected]> (https://tinaeldevresse.eu/)",
"bugs": {
"url": "https://github.com/hunteroi/discord-mailbox/issues"
},
"dependencies": {
"cron": "^3.1.7",
"uuid": "^9.0.1"
},
"description": "A framework to integrate a mailbox inside your Discord bot built with DiscordJS",
"devDependencies": {
"@biomejs/biome": "1.6.4",
"@types/cron": "^2.4.0",
"@types/luxon": "^3.4.2",
"@types/node": "^20.12.7",
"@types/uuid": "^9.0.8",
"@types/ws": "^8.5.10",
"discord.js": "^14.14.1",
"typedoc": "^0.25.13",
"typescript": "^5.4.4"
},
"directories": {
"lib": "lib"
},
"engines": {
"node": ">=20.x"
},
"files": [
"lib/**/*"
],
"funding": "https://github.com/sponsors/hunteroi",
"homepage": "https://github.com/hunteroi/discord-mailbox#readme",
"keywords": [
"mailbox",
"discordjs",
"modmail"
],
"license": "MIT",
"main": "lib/index.js",
"name": "@hunteroi/discord-mailbox",
"peerDependencies": {
"discord.js": "14.x"
},
"repository": "git://github.com/hunteroi/discord-mailbox.git",
"scripts": {
"build": "tsc",
"build:docs": "typedoc",
"lint": "biome check --apply ./src",
"prepublish": "yarn lint && yarn build && yarn build:docs",
"start": "yarn build && tsc ./examples/index.ts --target esnext --module nodenext --moduleResolution nodenext && node ./examples/index.js"
},
"type": "module",
"version": "4.1.0"
}