-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.45 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": "@lacunahub/letsfrag",
"version": "1.0.0",
"description": "Scale your Discord bot across multiple machines.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"docs": "typedoc src/index.ts --plugin typedoc-material-theme --out docs --gitRevision master",
"format": "npx prettier . --write",
"prepare": "npm run build"
},
"tsup": {
"entry": [
"src/index.ts"
],
"splitting": false,
"sourcemap": true,
"clean": true,
"dts": true
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/@lacunahub"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LacunaHub/letsfrag.git"
},
"keywords": [
"shard",
"sharding",
"discord",
"bot"
],
"author": "Lacuna",
"license": "MIT",
"bugs": {
"url": "https://github.com/LacunaHub/letsfrag/issues"
},
"homepage": "https://github.com/LacunaHub/letsfrag#readme",
"dependencies": {
"@keyv/redis": "^3.0.1",
"@sapphire/async-queue": "^1.5.2",
"discord.js": "14.16.2",
"json-bigint": "^1.0.0",
"keyv": "^5.0.1",
"magic-bytes.js": "^1.10.0",
"net-ipc": "^2.2.0",
"node-os-utils": "^1.3.7",
"tslib": "^2.7.0"
},
"devDependencies": {
"@types/json-bigint": "^1.0.4",
"@types/node": "^20.16.5",
"@types/node-os-utils": "^1.3.4",
"tsup": "^8.0.2",
"typedoc": "^0.25.12",
"typedoc-material-theme": "^1.0.2"
}
}