UNPKG

@hamlog/maidenhead

Version:

For various amateur radio needs, we at [Hamlog.Online](https://hamlog.online) required a library to process [Maidenhead grid locators](https://en.wikipedia.org/wiki/Maidenhead_Locator_System) in Javascript.

50 lines 1.13 kB
{ "name": "@hamlog/maidenhead", "version": "1.0.0", "publishConfig": { "access": "public" }, "type": "module", "files": [ "dist", "src" ], "keywords": [ "maidenhead-locator", "ham-radio", "amateur-radio" ], "author": "Eugene Medvedev (AC1PZ) <Eugene.Medvedev@wwpass.com>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/hamlog-online/hamlog-maidenhead.git" }, "bugs": { "url": "https://github.com/hamlog-online/hamlog-maidenhead/issues", "email": "Eugene.Medvedev@wwpass.com" }, "main": "./dist/index.umd.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.umd.cjs", "types": "./dist/index.d.ts" } }, "scripts": { "build": "vite build && tsc", "test": "vitest", "coverage": "vitest run --coverage" }, "devDependencies": { "@types/node": "^22.5.0", "@vitest/coverage-v8": "^2.0.5", "bumpp": "^9.5.2", "typescript": "^5.4.5", "vite": "^5.4.2", "vitest": "^2.0.5" } }