-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
39 lines (39 loc) · 1012 Bytes
/
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
{
"name": "eris-fleet",
"version": "1.0.2",
"dependencies": {},
"description": "Cluster management for Discord bots using the Eris library. Inspired by eris-sharder and @brussell98/megane.",
"main": "dist/index.js",
"repository": "https://github.com/danclay/eris-fleet",
"author": "danclay",
"license": "MIT",
"devDependencies": {
"@types/node": "14.x",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"dotenv": "^10.0.0",
"eris": "~0.16.0",
"eslint": "^7.32.0",
"typedoc": "^0.22.15",
"typescript": "4.4.x"
},
"scripts": {
"test": "node --trace-uncaught test/CI/index.js",
"prepublishOnly": "yarn build && yarn typedoc",
"build": "tsc",
"dev": "yarn build && node test/dev/index.js"
},
"keywords": [
"discord",
"bot",
"clustering",
"sharding",
"eris",
"eris sharder",
"discord sharder"
],
"peerDependencies": {
"eris": "~0.16.0"
}
}