{
    "name": "big-float-ts",
    "sideEffects": false,
    "description": "An extended precision floating point library (as per Shewchuk) - precision only limited by overflow / underflow",
    "version": "4.0.1",
    "type": "module",
    "engines": {
        "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
    },
    "author": {
        "name": "Floris Steenkamp"
    },
    "private": false,
    "license": "MIT",
    "main": "./node/index.js",
    "exports": "./node/index.js",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/FlorisSteenkamp/big-float.git"
    },
    "keywords": [
        "floating point",
        "infinite precision",
        "adaptive",
        "Shewchuk",
        "expansion"
    ],
    "bugs": {
        "url": "https://github.com/FlorisSteenkamp/big-float/issues"
    },
    "dependencies": {},
    "devDependencies": {
        "@types/chai": "^4.3.17",
        "@types/circular-dependency-plugin": "^5.0.8",
        "@types/mocha": "^10.0.7",
        "@types/node": "^22.1.0",
        "@types/webpack-bundle-analyzer": "^4.7.0",
        "c8": "^10.1.2",
        "chai": "^5.1.1",
        "circular-dependency-plugin": "^5.2.2",
        "mocha": "^10.7.0",
        "rimraf": "^6.0.1",
        "ts-loader": "^9.5.1",
        "ts-node": "^10.9.2",
        "typescript": "^5.5.4",
        "wabt": "^1.0.36",
        "wast-loader": "^1.12.1",
        "webpack": "^5.93.0",
        "webpack-cli": "^5.1.4",
        "webpack-bundle-analyzer": "^4.10.2"
    },
    "scripts": {
        "build": "npm run build-browser && npm run build-node",
        "build-node": "rimraf node && tsc",
        "build-browser": "rimraf browser && webpack",
        "test": "mocha",
        "coverage": "c8 mocha",
        "test-package": "npm pack"
    }
}
