{
    "name": "crashcat",
    "version": "0.0.4",
    "author": "Isaac Mason <isaac@isaacmason.com>",
    "description": "a 3d physics library for games and simulations",
    "keywords": [
        "physics",
        "3d",
        "rigidbody",
        "simulation",
        "game"
    ],
    "license": "MIT",
    "repository": "github:isaac-mason/crashcat",
    "homepage": "https://github.com/isaac-mason/crashcat",
    "bugs": {
        "url": "https://github.com/isaac-mason/crashcat/issues"
    },
    "type": "module",
    "main": "dist/index.js",
    "types": "dist/src/index.d.ts",
    "sideEffects": false,
    "exports": {
        ".": {
            "import": "./dist/index.js",
            "types": "./dist/src/index.d.ts"
        },
        "./three": {
            "import": "./dist/three.js",
            "types": "./dist/three/index.d.ts"
        }
    },
    "files": [
        "dist",
        "LICENSE",
        "README.md"
    ],
    "scripts": {
        "build": "rm -rf ./dist && rollup --config rollup.config.mjs",
        "format": "biome format --write src/. tst/.",
        "lint": "biome lint --write src/. tst/.",
        "test": "vitest ./src ./tst",
        "test-tree-shaking": "cd tst/tree-shaking && ./tesh.sh",
        "typecheck-docs": "tsc --project docs/tsconfig.json --noEmit",
        "docs": "(cd docs && node ./build.js)",
        "typedoc": "typedoc --tsconfig ./tsconfig.json --name \"crashcat docs\" --out ./dist-typedoc ./src/index.ts ./three/index.ts"
    },
    "packageManager": "pnpm@8.15.2+sha1.798034f615aa211c6c2ae00010cc20be5fc102ee",
    "dependencies": {
        "mathcat": "0.0.11"
    },
    "peerDependencies": {
        "mathcat": "0.0.11",
        "three": ">=0.182.0"
    },
    "peerDependenciesMeta": {
        "three": { 
            "optional": true
        }
    },
    "devDependencies": {
        "@biomejs/biome": "^2.2.0",
        "@rollup/plugin-node-resolve": "^16.0.1",
        "@rollup/plugin-typescript": "^12.1.4",
        "@types/three": "0.183.0",
        "rollup": "^4.46.2",
        "rollup-plugin-copy": "^3.5.0",
        "rollup-plugin-filesize": "^10.0.0",
        "tslib": "^2.8.1",
        "typescript": "^5.9.2",
        "typedoc": "^0.28.16",
        "vitest": "^3.2.4"
    }
}
