-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
60 lines (60 loc) · 1.82 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
{
"name": "discord-hybrid-sharding",
"version": "2.2.3",
"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",
"scripts": {
"build": "npx tsc",
"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",
"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/jest": "^29.5.12",
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"clean-jsdoc-theme": "^4.2.18",
"discord.js": "^14.14.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.2.2",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jsdoc": "^4.0.2",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
}
}