-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.81 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.81 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
106
107
108
109
{
"name": "hypixel-discord-chat-bridge",
"version": "3.1.16.3",
"description": "A Hypixel guild chat and Discord chat bridge",
"main": "build/index.js",
"exports": {
".": "./build/index.js",
"./plugin-api": {
"types": "./build/src/plugin-api.d.ts",
"import": "./build/src/plugin-api.js"
}
},
"scripts": {
"start": "pnpm exec tsx index.ts",
"start:prod": "node build/index.js",
"test": "pnpm exec tsx --test test/*.test.ts",
"eslint:check": "pnpm exec eslint . ",
"eslint": "pnpm eslint:check --fix",
"prettier": "pnpm exec prettier --write .",
"prettier:check": "pnpm exec prettier --check .",
"build": "pnpm exec tsc --build",
"dev": "pnpm exec nodemon",
"check": "pnpm install --frozen-lockfile && pnpm prettier && pnpm eslint && pnpm docgen && pnpm validate && pnpm build",
"generate:config": "pnpm exec tsx scripts/generateConfig.ts",
"docgen": "pnpm docgen:docs && pnpm docgen:packageScripts && pnpm docgen:pluginAPIExports",
"docgen:docs": "pnpm exec tsx scripts/generateDocs.ts",
"docgen:packageScripts": "pnpm exec tsx scripts/generatePackageScripts.ts",
"docgen:pluginAPIExports": "pnpm exec tsx scripts/generatePluginAPIExports.ts",
"docgen:docs:commands": "pnpm exec tsx scripts/docs/Commands.ts",
"docgen:docs:configuration": "pnpm exec tsx scripts/docs/Configuration.ts",
"docgen:docs:rEADME": "pnpm exec tsx scripts/docs/README.ts",
"docgen:docs:config:schema": "pnpm exec tsx scripts/docs/config.schema.ts",
"docgen:docs:variables:channel": "pnpm exec tsx scripts/docs/Variables/Channel.ts",
"docgen:docs:variables:player": "pnpm exec tsx scripts/docs/Variables/Player.ts",
"validate": "pnpm validate:config && pnpm validate:exampleConfig",
"validate:config": "pnpm exec tsx scripts/validate/config.ts",
"validate:exampleConfig": "pnpm exec tsx scripts/validate/exampleConfig.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DuckySoLucky/hypixel-discord-chat-bridge.git"
},
"keywords": [
"hypixel",
"discord",
"chat",
"bridge"
],
"author": "DuckySoLucky",
"license": "MIT",
"bugs": {
"url": "https://github.com/DuckySoLucky/hypixel-discord-chat-bridge/issues"
},
"homepage": "https://github.com/DuckySoLucky/hypixel-discord-chat-bridge#readme",
"engines": {
"node": ">=22.22.3",
"pnpm": ">=11.0.0",
"npm": "forbidden, use pnpm instead",
"yarn": "forbidden, use pnpm instead",
"bun": "forbidden, use pnpm instead"
},
"type": "module",
"dependencies": {
"@inquirer/prompts": "8.5.2",
"axios": "1.19.0",
"bad-words": "4.1.5",
"canvas": "3.2.3",
"chalk": "6.0.0",
"cheerio": "1.2.0",
"discord.js": "14.27.0",
"express": "5.2.1",
"hypixel-api-reborn": "12.0.0-31",
"minecraft-data": "3.114.0",
"minecraft-protocol": "1.68.0",
"mowojang": "0.7.2",
"ms": "2.1.3",
"node-cron": "4.6.0",
"node-emoji": "2.2.0",
"pretty-ms": "9.3.0",
"prismarine-chat": "1.13.0",
"prismarine-nbt": "2.8.0",
"prismarine-registry": "1.12.0",
"rss-parser": "3.13.0",
"skyhelper-networth": "2.10.0",
"winston": "3.19.0",
"zod": "4.4.3"
},
"devDependencies": {
"@eslint/js": "9.39.5",
"@j4cobi/eslint-plugin-sort-imports": "1.0.2",
"@stylistic/eslint-plugin": "5.10.0",
"@types/eslint": "9.6.1",
"@types/express": "5.0.6",
"@types/ms": "2.1.0",
"@types/node": "24.13.2",
"@typescript-eslint/utils": "^8.64.0",
"eslint": "9.39.5",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.5",
"eslint-plugin-import": "2.32.0",
"globals": "17.9.0",
"markdown-table": "3.0.4",
"nodemon": "3.1.14",
"prettier": "3.9.6",
"tsx": "4.22.4",
"typescript": "5.9.3",
"typescript-eslint": "8.66.0"
}
}