UNPKG

ts-ping

Version:

A modern TypeScript library for performing ICMP ping operations with type-safe results and fluent configuration.

79 lines 1.81 kB
{ "name": "ts-ping", "type": "module", "version": "1.5.0", "description": "A modern TypeScript library for performing ICMP ping operations with type-safe results and fluent configuration.", "author": "Hammer Ádám", "license": "MIT", "homepage": "https://github.com/hammeradam/ts-ping#readme", "repository": { "type": "git", "url": "git+https://github.com/hammeradam/ts-ping.git" }, "bugs": { "url": "https://github.com/hammeradam/ts-ping/issues" }, "keywords": [ "ping", "icmp", "typescript", "networking", "nodejs", "node", "utility", "async", "promise", "fluent", "type-safe", "cross-platform", "ipv4", "ipv6", "abort", "cancellation", "abortSignal", "streaming" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "main": "dist/index.cjs", "module": "dist/index.js", "types": "dist/index.d.ts", "files": [ "LICENSE", "README.md", "dist" ], "engines": { "node": ">=20.0.0", "pnpm": ">=8.0.0" }, "publishConfig": { "access": "public" }, "devDependencies": { "@antfu/eslint-config": "^5.0.0", "@types/node": "^24.1.0", "@vitest/coverage-v8": "^3.2.4", "eslint": "^9.31.0", "lint-staged": "^16.1.2", "simple-git-hooks": "^2.13.0", "tsup": "^8.5.0", "typescript": "^5.8.3", "vitest": "^3.2.4" }, "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts", "dev": "node --experimental-strip-types src/example.ts", "lint": "eslint", "lint:fix": "eslint --fix", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "typecheck": "tsc --noEmit" } }