@mixxtor/currencyx-js
Version:
Modern TypeScript currency converter with type inference and multiple providers (Google Finance, Fixer.io). Framework agnostic with clean architecture.
89 lines (88 loc) • 2.36 kB
JSON
{
"name": "@mixxtor/currencyx-js",
"version": "2.1.1",
"description": "Modern TypeScript currency converter with type inference and multiple providers (Google Finance, Fixer.io). Framework agnostic with clean architecture.",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prebuild": "npm run clean && npm run typecheck",
"prepublishOnly": "npm run build && npm run test",
"release": "release-it",
"release:patch": "release-it patch",
"release:minor": "release-it minor",
"release:major": "release-it major",
"release:dry": "release-it --dry-run",
"release:beta": "release-it --preRelease=beta",
"release:alpha": "release-it --preRelease=alpha",
"version:check": "npm version --help"
},
"keywords": [
"currency",
"converter",
"exchange-rates",
"typescript",
"type-inference",
"nodejs",
"google-finance",
"fixer-io",
"multi-provider",
"type-safe"
],
"author": "Mixxtor",
"license": "MIT",
"peerDependencies": {
"typescript": ">=4.5.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mixxtor/currencyx-js.git"
},
"bugs": {
"url": "https://github.com/mixxtor/currencyx-js/issues"
},
"homepage": "https://github.com/mixxtor/currencyx-js#readme",
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.1",
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.32.0",
"release-it": "^19.0.4",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"dependencies": {
"axios": "^1.11.0",
"cheerio": "^1.1.2"
}
}