forked from meister03/discord-hybrid-sharding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.78 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
{
"name": "discord-hybrid-sharding",
"version": "2.1.0",
"description": "The first package which combines sharding manager & internal sharding to save a lot of resources, which allows clustering!",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"node-fetch": "^2.6.7"
},
"scripts": {
"lint": "eslint src/**/**.ts",
"lint:fix": "eslint src/**/**.ts --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"generate-docs": "jsdoc -c ./.jsdoc.conf.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meister03/discord-hybrid-sharding.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"discord",
"discord-sharding",
"discord-clustering",
"hybrid-sharding",
"discord.js-hybrid-sharding",
"discord.js",
"eris",
"discordeno.js",
"bot",
"bots",
"cluster",
"framework"
],
"author": "meister03",
"license": "MIT",
"bugs": {
"url": "https://github.com/meister03/discord-hybrid-sharding/issues"
},
"homepage": "https://github.com/meister03/discord-hybrid-sharding#readme",
"devDependencies": {
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"clean-jsdoc-theme": "^4.2.2",
"discord.js": "^14.7.1",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jsdoc": "^39.6.6",
"eslint-plugin-prettier": "^4.2.1",
"jsdoc": "^4.0.0",
"prettier": "^2.8.3",
"typescript": "^4.9.4"
}
}