UNPKG

@tamtamchik/exchanger

Version:

Simple and free npm library to get realtime currency exchange rates.

56 lines (55 loc) 1.41 kB
{ "name": "@tamtamchik/exchanger", "version": "3.0.0", "description": "Simple and free npm library to get realtime currency exchange rates.", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./src/index.ts", "author": "Yuri Tkachenko <yuri.tam.tkachenko@gmail.com>", "license": "MIT", "homepage": "https://github.com/tamtamchik/exchanger#readme", "bugs": { "url": "https://github.com/tamtamchik/exchanger/issues" }, "repository": { "type": "git", "url": "git+ssh://git@github.com/tamtamchik/exchanger.git" }, "keywords": [ "currency", "exchange", "rate", "currency exchange", "currency exchange rate", "currency conversion", "currency conversion rate", "currency converter", "currency converter rate" ], "devDependencies": { "@types/jest": "^29.5.13", "@types/node": "^22.7.5", "jest": "^29.7.0", "prettier": "3.3.3", "ts-jest": "^29.2.5", "tsup": "^8.3.0", "typescript": "^5.6.3" }, "engines": { "node": ">=18.0.0" }, "exports": { ".": { "require": "./dist/index.js", "import": "./dist/index.mjs", "types": "./src/index.ts" } }, "scripts": { "build": "tsup src/index.ts --format cjs,esm --clean", "dev": "npm run build -- --watch src", "prepublishOnly": "npm run build", "test": "jest", "coverage": "jest --coverage" } }