-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 861 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 861 Bytes
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
{
"name": "discord-security",
"version": "1.0.1",
"description": "Automatically ban raid bots from Discord servers using common name and image detection.",
"main": "build/index.js",
"keywords": [
"discord",
"security",
"raids",
"discord-bot",
"bot"
],
"scripts": {
"start": "node build/index.js",
"build": "tsc",
"lint": "eslint . --ext js,jsx,ts,tsx --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AngaBlue/discord-security.git"
},
"author": "AngaBlue <contact@anga.blue>",
"license": "LGPL-3.0-or-later",
"dependencies": {
"discord.js": "^13.2.0",
"normalize-strings": "^1.1.1"
},
"devDependencies": {
"@angablue/eslint-config": "^1.0.5",
"@types/node": "^16.11.4",
"eslint": "^8.1.0",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
}
}