generated from RainyXeon/Mutsuki
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.32 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
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
{
"name": "lava-status-monitor",
"version": "1.0.0",
"description": "A Discord bot that monitors real-time status of Lavalink servers!",
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc --build --verbose",
"build:full": "npm-run-all build:prettier build build:manifest",
"build:manifest": "node ./scripts/copyManifest.mjs",
"start": "node ./dist/index.js",
"start:shard": "node ./dist/shard.js",
"start:docker": "tsx ./src/index.ts",
"dev": "nodemon ./src/index.ts",
"build:prettier": "prettier -w ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RainyXeon/ByteBlaze.git"
},
"keywords": [
"discordbot"
],
"author": "RainyXeon",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/RainyXeon/ByteBlaze/issues"
},
"engines": {
"node": ">=16"
},
"nodemonConfig": {
"ignore": [
"*.database.json"
],
"execMap": {
"ts": "tsx"
}
},
"homepage": "https://github.com/RainyXeon/ByteBlaze#readme",
"dependencies": {
"chalk": "^5.3.0",
"chillout": "^5.0.0",
"common-tags": "^1.8.2",
"croner": "^8.0.0",
"discord-api-types": "^0.37.62",
"discord-hybrid-sharding": "^2.1.3",
"discord.js": "^14.13.0",
"fast-xml-parser": "^4.3.2",
"fs-extra": "^11.1.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"nodemon": "^3.0.1",
"os": "^0.1.2",
"plsargs": "^0.1.6",
"pretty-ms": "^8.0.0",
"rainlink": "^1.0.5",
"recursive-readdir": "^2.2.3",
"winston": "^3.11.0"
},
"devDependencies": {
"@digitak/tsc-esm": "^3.1.4",
"@types/chillout": "^5.0.4",
"@types/common-tags": "^1.8.3",
"@types/fs-extra": "^11.0.3",
"@types/js-yaml": "^4.0.8",
"@types/lodash": "^4.14.200",
"@types/node": "^20.8.10",
"@types/recursive-readdir": "^2.2.3",
"copy-dir": "^1.3.0",
"copyfiles": "^2.4.1",
"dir-archiver": "^2.1.0",
"dotenv": "^16.3.1",
"esm": "^3.2.25",
"jszip": "^3.10.1",
"node": "^21.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"tsx": "^3.14.0",
"typescript": "^5.2.2"
},
"pnpm": {
"overrides": {
"marked@<4.0.10": ">=4.0.10",
"undici@<5.26.2": ">=5.26.2"
}
}
}