{
    "name": "dof",
    "description": "Depth-of-field calculator for comparing camera lenses",
    "version": "3.0.0",
    "repository": {
        "type": "git",
        "url": "https://github.com/patik/dof.git"
    },
    "devDependencies": {
        "@types/lodash": "^4.17.25"
    },
    "dependencies": {
        "lodash": "^4.18.1"
    },
    "bugs": {
        "url": "https://github.com/patik/dof/issues"
    },
    "homepage": "https://github.com/patik/dof",
    "main": "./dist/index.js",
    "types": "./dist/index.d.ts",
    "exports": {
        ".": {
            "types": "./dist/index.d.ts",
            "default": "./dist/index.js"
        }
    },
    "files": [
        "./dist/"
    ],
    "directories": {
        "doc": "./docs"
    },
    "scripts": {
        "build": "rm -rf dist/*; bun run tsc && cp ../README.md ./README.md",
        "clean": "git clean -fdx",
        "cover": "bun run tsc && vitest run --coverage --config ../vitest.config.ts --project package",
        "typecheck": "tsc --noEmit",
        "lint": "biome check . && bun run typecheck",
        "format": "biome format --write .",
        "preversion": "bun run build && bun run cover",
        "test": "bun run tsc && vitest run --config ../vitest.config.ts --project package"
    },
    "keywords": [
        "depth-of-field",
        "lens",
        "camera",
        "sensor",
        "calculator",
        "focal-length",
        "photography",
        "bokeh",
        "focus",
        "blur"
    ],
    "author": {
        "name": "Craig Patik",
        "email": "craig@patik.com",
        "url": "https://patik.com"
    },
    "license": "BSD-3-Clause"
}
