UNPKG

minecraft-server-ping

Version:
81 lines 2.33 kB
{ "name": "minecraft-server-ping", "version": "0.3.3", "description": "Minecraft server status", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "require": "./dist/index.js", "import": "./dist/index.mjs" } }, "repository": { "type": "git", "url": "git+https://github.com/mharj/minecraft-ping.git" }, "keywords": [ "minecraft", "ping", "typescript" ], "files": [ "dist" ], "engines": { "node": ">=18.0.0" }, "devDependencies": { "@avanio/logger-like": "^0.2.11", "@cspell/eslint-plugin": "^8.17.5", "@eslint/js": "^9.22.0", "@luolapeikko/result-option": "^1.0.5", "@stylistic/eslint-plugin": "^4.2.0", "@stylistic/eslint-plugin-ts": "^4.2.0", "@tsconfig/node18": "^18.2.4", "@types/node": "^22.13.10", "@types/varint": "^6.0.3", "@typescript-eslint/eslint-plugin": "^8.26.0", "@typescript-eslint/parser": "^8.26.0", "@vitest/coverage-v8": "^3.0.8", "c8": "^10.1.3", "dotenv": "^16.4.7", "eslint": "^9.22.0", "eslint-config-prettier": "^10.1.1", "eslint-import-resolver-typescript": "^3.8.3", "eslint-plugin-import": "^2.31.0", "eslint-plugin-prettier": "^5.2.3", "eslint-plugin-sonarjs": "^3.0.2", "prettier": "^3.5.3", "source-map-support": "^0.5.21", "tsup": "^8.4.0", "typedoc": "^0.27.9", "typescript": "^5.8.2", "typescript-eslint": "^8.26.0", "varint": "^6.0.0", "vite": "^6.2.1", "vitest": "^3.0.8" }, "author": "mharj", "license": "MIT", "bugs": { "url": "https://github.com/mharj/minecraft-ping/issues" }, "homepage": "https://github.com/mharj/minecraft-ping#readme", "peerDependencies": { "@avanio/logger-like": ">= 0.0.1", "@luolapeikko/result-option": "^1.0", "@types/varint": "^6.0", "varint": "^6.0" }, "scripts": { "doc": "typedoc", "build": "tsup src/index.mts --minify --sourcemap --format cjs,esm --dts --clean", "lint": "eslint . --ext .mts", "test": "vitest test --run --no-isolate --coverage", "coverage": "vitest test --run --no-isolate --reporter=dot --coverage --coverage.reporter=lcov", "validate": "tsc --noEmit --project tsconfig.test.json" } }