-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 903 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 903 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "node-mcstatus",
"version": "1.2.1",
"description": "The Node.js library for interacting with the mcstatus.io API.",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/",
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcstatus-io/node-mcstatus.git"
},
"keywords": [
"minecraft",
"server",
"status",
"mcstatus",
"api",
"library"
],
"author": "Jacob Gunther",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcstatus-io/node-mcstatus/issues"
},
"homepage": "https://mcstatus.io",
"dependencies": {
"superagent": "^10.2.1",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/superagent": "^8.1.9",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"eslint": "^9.29.0",
"jest": "^30.0.1",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
}
}