-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.88 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "discord.js-cluster",
"version": "2.0.0",
"description": "A cluster manager for the Discord.js library",
"main": "./src/index.js",
"types": "./typings/index.d.ts",
"files": [
"src",
"typings"
],
"exports": {
"./*": "./*",
".": {
"require": "./src/index.js",
"import": "./src/index.mjs"
}
},
"scripts": {
"test": "npm run lint && npm run lint:typings && node ./test",
"test:typescript": "tsc",
"docs": "docgen --source src --custom docs/index.yml --output docs/docs.json",
"docs:test": "docgen --source src --custom docs/index.yml",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"lint:typings": "tslint typings/index.d.ts",
"prettier": "prettier --write src/**/*.js typings/**/*.ts",
"prepublishOnly": "npm run test && gen-esm-wrapper ./src/index.js ./src/index.mjs"
},
"dependencies": {
"asciiart-logo": "^0.2.6",
"colors": "^1.1.2",
"discord.js": "^13.1.0",
"fancy-log": "^1.3.0"
},
"devDependencies": {
"@discordjs/docgen": "^0.10.0",
"dotenv": "^10.0.0",
"dtslint": "^4.1.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"gen-esm-wrapper": "^1.1.2",
"prettier": "^2.3.2",
"tslint": "^6.1.3",
"typescript": "^4.3.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrGriefs/discord.js-cluster.git"
},
"keywords": [
"discord.js",
"discordjs",
"sharder",
"cluster",
"sharding",
"clustering",
"discord",
"manager"
],
"engines": {
"node": ">=16.6.0",
"npm": ">=7.0.0"
},
"author": "Reece Stokes <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrGriefs/discord.js-cluster/issues"
},
"homepage": "https://github.com/MrGriefs/discord.js-cluster#readme"
}