{
  "name": "big-amount",
  "version": "2.1.6",
  "description": "BigInt-based rational number library focused on accounting",
  "type": "module",
  "main": "dist/index.js",
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "exports": {
    "require": "./dist/index.cjs",
    "default": "./dist/index.js"
  },
  "files": [
    "CHANGELOG.md",
    "dist"
  ],
  "scripts": {
    "build": "tsc",
    "clean": "rm -rf dist doc",
    "doc": "typedoc src/index.ts --out doc --gitRevision \"v$npm_package_version\"",
    "lint": "prettier -c *.md bench src test",
    "prepare": "npm run lint && npm run clean && npm run build && npm test && npm run doc",
    "test": "mocha -p -t 8000 -r chai/register-assert.js",
    "test-bun": "bun test -r chai/register-assert.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/LiosK/big-amount.git"
  },
  "keywords": [
    "typescript",
    "bigint",
    "rational",
    "fraction",
    "numeric",
    "decimal",
    "accounting"
  ],
  "author": "LiosK <contact@mail.liosk.net>",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/LiosK/big-amount/issues"
  },
  "homepage": "https://github.com/LiosK/big-amount#readme",
  "devDependencies": {
    "chai": "^6.2.1",
    "mocha": "^11.7.5",
    "prettier": "^3.7.1",
    "typedoc": "^0.28.14",
    "typescript": "^5.9.3"
  },
  "prettier": {
    "embeddedLanguageFormatting": "off"
  }
}
