-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.27 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.27 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"version": "1.9.9",
"name": "status-sharding",
"author": "Digital39999",
"scripts": {
"ts": "pnpm install typescript --save-dev -g",
"init": "pnpm install && pnpm run build && pnpm run start",
"start": "node dist/index.js",
"build": "tsc --build",
"watch": "tsc --watch",
"lint": "eslint . --ext .ts",
"docs": "pnpm typedoc --out docs src --validation.notExported false",
"updates": "pnpm npm-check-updates -i --format group",
"prepublish": "pnpm run build && pnpm run docs"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/Status-Team/Status-Sharding",
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
},
"./core": {
"types": "./dist/core.d.ts",
"require": "./dist/core.js",
"import": "./dist/core.js"
}
},
"typesVersions": {
"*": {
"core": [
"./dist/core.d.ts"
]
}
},
"keywords": [
"discord",
"discord.js",
"sharding",
"discord-sharding",
"discord-bot",
"discord-sharding-bot",
"discord-bot-sharding",
"discord-bot-sharding-example",
"discord-sharding-example",
"discord.js-sharding-example",
"discord.js-bot-sharding-example",
"discord.js-sharding",
"discord.js-bot-sharding",
"discord.js-sharding-example",
"discord.js-bot-sharding-example",
"discord.js-sharding-example",
"discord.js-bot-sharding-example"
],
"devDependencies": {
"@discordjs/core": "^2.2.1",
"@discordjs/rest": "^2.6.0",
"@discordjs/ws": "^2.0.3",
"@types/node": "20.14.8",
"@typescript-eslint/eslint-plugin": "7.13.1",
"@typescript-eslint/parser": "7.13.1",
"discord.js": "^14.22.1",
"eslint": "8.57.0",
"typescript": "5.5.2"
},
"peerDependencies": {
"@discordjs/core": ">=2.2.1",
"@discordjs/rest": ">=2.6.0",
"@discordjs/ws": ">=2.0.3",
"discord.js": ">=14.14.1"
},
"peerDependenciesMeta": {
"discord.js": {
"optional": false
},
"@discordjs/core": {
"optional": true
},
"@discordjs/rest": {
"optional": true
},
"@discordjs/ws": {
"optional": true
}
},
"engines": {
"node": ">=18.4.0"
},
"dependencies": {
"net-ipc": "^2.2.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"msgpackr-extract"
]
},
"files": [
"src/**/*",
"dist/**/*",
"README.md"
]
}