-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
58 lines (58 loc) · 1.74 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
{
"name": "discord-cross-hosting",
"version": "2.3.8",
"description": "The first package which allows broadcastEval() over cross-hosted machines and efficient machine & shard management.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"discord-hybrid-sharding": "^2.1.5",
"discordeno": "^18.0.1",
"net-ipc": "^2.2.0"
},
"scripts": {
"build": "npx tsc -w",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --fix --ext .js",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"start:bridge": "node test/server.js",
"start:cluster": "node test/cluster.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meister03/discord-cross-hosting.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"discord",
"bots",
"discord-cross-hosting",
"discord-sharding",
"discord-clustering",
"cluster",
"machine-broadcast",
"cross-hosting",
"vertical-scaling",
"multiply-machines",
"framework"
],
"author": "meister03",
"license": "MIT",
"bugs": {
"url": "https://github.com/meister03/discord-cross-hosting/issues"
},
"homepage": "https://github.com/meister03/discord-cross-hosting#readme",
"devDependencies": {
"@types/node": "^20.12.2",
"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",
"express": "^4.19.2",
"prettier": "^3.2.5",
"typescript": "^5.4.3"
}
}