mirror of
https://github.com/minescope/mineping.git
synced 2025-07-17 07:26:05 +03:00
Types are automatically generated from the existsing JSDoc comments in the js source code. Use `types:build` script from `package.json` to produce d.ts files.
38 lines
762 B
JSON
38 lines
762 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",
|
|
"types:check": "tsc --noEmit",
|
|
"types:build": "tsc"
|
|
},
|
|
"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": {
|
|
"@types/debug": "^4.1.12",
|
|
"@types/node": "^24.0.3",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^3.2.3"
|
|
}
|
|
}
|