-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 926 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 926 Bytes
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
{
"name": "@tryforge/forge.minecraft",
"version": "1.0.0",
"description": "ForgeMinecraft is an extension that provides real-time Minecraft server management via the management server protocol, alongside various functions for retrieving status and metadata from Java and Bedrock servers.",
"main": "dist/index.js",
"scripts": {
"docgen": "tsc && typedoc src/index.ts && node dist/docgen",
"commit": "npm run docgen && node dist/commit",
"test": "tsc && node dist/__tests__/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tryforge/ForgeMinecraft.git"
},
"keywords": [],
"author": "itsnicky.",
"license": "GPL-3.0",
"devDependencies": {
"@tryforge/forgescript": "^2.5.0",
"typedoc": "^0.28.15",
"typescript": "^5.6.3"
},
"dependencies": {
"mc-server-management": "^3.2.1",
"node-mcstatus": "^1.2.1",
"tiny-typed-emitter": "^2.1.0"
}
}