UNPKG

@cabin-interactive/qrz-api-client

Version:
59 lines (58 loc) 1.56 kB
{ "name": "@cabin-interactive/qrz-api-client", "version": "1.3.2", "description": "A TypeScript wrapper for the QRZ.com API", "author": "Jarrett Green", "license": "ISC", "keywords": [ "qrz", "adif", "ham radio", "api", "typescript" ], "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.js" } }, "files": [ "dist" ], "repository": { "type": "git", "url": "git+https://github.com/cabin-interactive/qrz-api-client.git" }, "bugs": { "url": "https://github.com/cabin-interactive/qrz-api-client/issues" }, "homepage": "https://github.com/cabin-interactive/qrz-api-client#readme", "publishConfig": { "access": "public" }, "scripts": { "build": "tsc", "clean": "rm -rf dist", "prepublishOnly": "yarn clean && yarn test && yarn build", "publish:major": "yarn prepublishOnly && npm version major && npm publish", "publish:minor": "yarn prepublishOnly && npm version minor && npm publish", "publish:patch": "yarn prepublishOnly && npm version patch && npm publish", "test": "vitest run", "test:watch": "vitest watch", "test:coverage": "vitest run --coverage", "type-check": "tsc --noEmit" }, "devDependencies": { "@types/node": "^22.10.1", "@vitest/coverage-v8": "2.1.8", "typescript": "^5.7.2", "vitest": "^2.1.8" }, "dependencies": {} }