mirror of
https://github.com/minescope/mineping.git
synced 2025-07-17 02:06:05 +03:00
Add debug logs using the `debug` library. To use this new feature, set the `DEBUG` environment variable: - `DEBUG=mineping:*` enables all logs from this library. - `DEBUG=mineping:java` enables logs for the Java module only. - `DEBUG=mineping:bedrock` enables logs for the Bedrock module only.
33 lines
622 B
JSON
33 lines
622 B
JSON
{
|
|
"name": "@minescope/mineping",
|
|
"version": "1.7.0-beta.1",
|
|
"description": "Ping both Minecraft Bedrock and Java servers.",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"types": "types/index.d.ts",
|
|
"scripts": {
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/minescope/mineping.git"
|
|
},
|
|
"license": "MIT",
|
|
"keywords": [],
|
|
"author": {
|
|
"name": "Timofey Gelazoniya",
|
|
"email": "timofey@z4n.me",
|
|
"url": "https://zeldon.ru"
|
|
},
|
|
"engines": {
|
|
"node": ">=14"
|
|
},
|
|
"dependencies": {
|
|
"debug": "^4.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"vitest": "^3.2.3"
|
|
}
|
|
}
|