-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.51 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
{
"author": "HunteRoi <me@tinaeldevresse.eu> (https://tinaeldevresse.eu/)",
"bugs": {
"url": "https://github.com/hunteroi/discord-verification/issues"
},
"description": "A framework to integrate a verification system with your Discord guild built with DiscordJS",
"devDependencies": {
"@biomejs/biome": "1.6.4",
"@sendgrid/mail": "^8.1.3",
"@types/node": "^20.12.7",
"@types/node-json-db": "^0.9.3",
"@types/sqlite3": "^3.1.11",
"discord-sync-commands": "^0.3.0",
"discord.js": "^14.15.3",
"node-json-db": "^2.3.0",
"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-verification#readme",
"keywords": [
"verification",
"discordjs",
"authentication"
],
"license": "MIT",
"main": "lib/index.js",
"name": "@hunteroi/discord-verification",
"peerDependencies": {
"@sendgrid/mail": "8.x",
"discord.js": "14.x"
},
"repository": "git://github.com/hunteroi/discord-verification.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": "1.5.1"
}