forked from Androz2091/discord-logs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.22 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.22 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
{
"name": "discord-logs",
"version": "1.9.0",
"description": "Add many useful events to your Discord.js client!",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"test": "node tests/test.js",
"generate-docs": "node scripts/generate-docs.js",
"generate-test": "node scripts/generate-test.js",
"build": "tsc",
"prepare": "npm run build",
"format": "prettier --write \"handlers/**/*.ts\" index.ts scripts/**/*.js docs/**/*.html",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Androz2091/discord-logs.git"
},
"keywords": [
"avdanced",
"logs",
"bot",
"framework",
"discord",
"audit-logs"
],
"author": "Androz2091",
"license": "ISC",
"bugs": {
"url": "https://github.com/Androz2091/discord-logs/issues"
},
"homepage": "https://github.com/Androz2091/discord-logs#readme",
"dependencies": {
"@types/node": "^14.0.1",
"@types/ws": "^7.2.1"
},
"devDependencies": {
"discord.js": "^12.4.0",
"dotenv": "^8.2.0",
"parse-comments": "^1.0.0",
"prettier": "^2.0.4",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.3"
}
}