{
    "name": "flo-bezier3",
    "sideEffects": false,
    "description": "Purely functional linear, quadratic and cubic bezier library, including accurate, robust bezier intersection.",
    "version": "6.0.6",
    "author": {
        "name": "Floris Steenkamp"
    },
    "license": "MIT",
    "type": "module",
    "main": "./node/index.js",
    "exports": "./node/index.js",
    "engines": {
        "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
    },
    "private": false,
    "repository": {
        "type": "git",
        "url": "git+https://github.com/FlorisSteenkamp/FloBezier.git"
    },
    "bugs": {
        "url": "https://github.com/FlorisSteenkamp/FloBezier/issues"
    },
    "keywords": [
        "bezier",
        "beziers",
        "quadratic",
        "cubic",
        "intersection"
    ],
    "dependencies": {
        "big-float-ts": "^4.0.1",
        "double-double": "^3.0.2",
        "flo-gauss-quadrature": "^2.1.3",
        "flo-graham-scan": "^4.0.1",
        "flo-poly": "^7.0.1",
        "flo-vector2d": "^4.0.5"
    },
    "devDependencies": {
        "@types/chai": "^5.2.3",
        "@types/circular-dependency-plugin": "^5.0.8",
        "@types/mocha": "^10.0.10",
        "@types/node": "^25.0.0",
        "@types/webpack-bundle-analyzer": "^4.7.0",
        "c8": "^10.1.3",
        "chai": "^6.2.1",
        "chai-asserttype": "^1.0.5",
        "circular-dependency-plugin": "^5.2.2",
        "mocha": "^11.7.5",
        "rimraf": "^6.1.2",
        "squares-rng": "^2.0.3",
        "ts-loader": "^9.5.4",
        "ts-node": "^10.9.2",
        "typescript": "^5.9.3",
        "webpack": "^5.103.0",
        "webpack-bundle-analyzer": "^5.1.0",
        "webpack-cli": "^6.0.1",
        "source-map-support": "^0.5.21"
    },
    "files": [
        "node",
        "browser",
        "src"
    ],
    "scripts": {
        "build": "npm run build-browser && npm run build-node",
        "build-node": "rimraf node && tsc",
        "build-browser": "webpack",
        "test": "mocha",
        "coverage": "c8 mocha"
    }
}
