{
  "name": "bitcoin-units",
  "version": "1.0.0",
  "description": "Convert between BTC, mBTC, μBTC, satoshis and custom units.",
  "homepage": "https://github.com/ruigomeseu/bitcoin-units",
  "bugs": "https://github.com/ruigomeseu/bitcoin-units/issues",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "scripts": {
    "test": "yarn run build && jest",
    "build": "tsup ./src",
    "cover": "istanbul cover _mocha -- --recursive",
    "lint": "eslint src tests --ext .ts"
  },
  "keywords": [
    "convert",
    "bitcoin",
    "units",
    "btc",
    "mbtc",
    "satoshis"
  ],
  "author": {
    "name": "Rui Gomes",
    "email": "hello@ruigomes.me",
    "url": "https://ruigomes.me"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/ruigomeseu/bitcoin-units"
  },
  "devDependencies": {
    "@swc/core": "^1.3.68",
    "@types/big.js": "^6.1.6",
    "@types/jest": "^29.5.2",
    "@typescript-eslint/eslint-plugin": "^5.60.0",
    "@typescript-eslint/parser": "^5.60.0",
    "eslint": "^8.43.0",
    "jest": "^29.5.0",
    "prettier": "^3.0.0",
    "rimraf": "^5.0.1",
    "ts-jest": "^29.1.0",
    "tslib": "^2.5.3",
    "tsup": "^7.1.0",
    "typescript": "^5.1.3"
  },
  "dependencies": {
    "big.js": "^6.1.6"
  }
}