-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.6 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": "indomitable",
"version": "4.2.0",
"description": "A lightweight (the actual ship is heavy though) no depedencies, performant, and powerful sharder for Discord.JS",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
}
},
"scripts": {
"build": "npm run build:ts && npm run build:docs",
"build:ts": "tsup --config tsup-config.json",
"build:docs": "typedoc --theme default --readme README.md --out docs/ --entryPointStrategy expand src/.",
"lint": "eslint . --ext .ts --fix",
"prepare": "npm run build:ts"
},
"keywords": [
"cluster",
"clustering",
"sharder",
"sharding",
"discord",
"discord sharder",
"discord.js",
"discord.js sharder",
"discordjs",
"discordjs sharder",
"bot"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Deivu/Indomitable.git"
},
"author": "Saya (Deivu)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Deivu/Indomitable/issues"
},
"homepage": "https://github.com/Deivu/Indomitable#readme",
"peerDependencies": {
"discord.js": ">=14.14.x"
},
"devDependencies": {
"@augu/eslint-config": "^5.2.4",
"@types/node": "^20.14.10",
"@types/ws": "^8.5.11",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"tsup": "^8.1.0",
"typedoc": "^0.26.4",
"typescript": "^5.5.3"
}
}