{
  "name": "fixed-precision",
  "version": "1.7.3",
  "description": "A fixed-precision decimal arithmetic library for JavaScript/TypeScript",
  "main": "dist/FixedPrecision.js",
  "type": "module",
  "module": "dist/FixedPrecision.js",
  "files": [
    "dist",
    "minimal.js",
    "minimal.d.ts",
    "README.md",
    "LICENSE"
  ],
  "exports": {
    ".": {
      "import": {
        "types": "./dist/FixedPrecision.d.ts",
        "default": "./dist/FixedPrecision.js"
      },
      "require": {
        "types": "./dist/FixedPrecision.d.cts",
        "default": "./dist/FixedPrecision.cjs"
      }
    },
    "./minimal": {
      "import": {
        "types": "./dist/Minimal.d.ts",
        "default": "./dist/Minimal.js"
      },
      "require": {
        "types": "./dist/Minimal.d.cts",
        "default": "./dist/Minimal.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "bugs": {
    "url": "https://github.com/naoeosavio/fixed-precision/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/naoeosavio/fixed-precision.git"
  },
  "keywords": [
    "fixed",
    "decimal",
    "arithmetic",
    "fixed-point",
    "precision",
    "financial",
    "bigint"
  ],
  "author": "it is not savio",
  "license": "MIT",
  "scripts": {
    "build": "tsup",
    "lint": "tsc",
    "format": "biome check --write src",
    "check:format": "biome check src",
    "check:exports": "attw --pack .",
    "test": "vitest run",
    "dev": "vitest",
    "ci": "npm run lint && npm run check:format && npm run test && npm run build && npm run check:exports",
    "prepublish": "npm run ci"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.17.4",
    "@biomejs/biome": "2.2.6",
    "tsup": "^8.5.0",
    "typescript": "^5.5.4",
    "vitest": "^3.0.8"
  }
}
