{
    "name": "@glandais/virtual-cyclist",
    "version": "1.3.1",
    "description": "Virtual Cyclist",
    "sideEffects": false,
    "main": "./dist/index.umd.js",
    "module": "./dist/index.esm.js",
    "types": "./dist/index.d.ts",
    "browser": "./dist/index.esm.js",
    "jsdelivr": "./dist/index.esm.js",
    "unpkg": "./dist/index.esm.js",
    "exports": {
        ".": {
            "types": "./dist/index.d.ts",
            "browser": "./dist/index.esm.js",
            "node": {
                "import": "./dist/index.node.mjs",
                "require": "./dist/index.node.js"
            },
            "import": "./dist/index.esm.js",
            "require": "./dist/index.umd.js",
            "default": "./dist/index.esm.js"
        }
    },
    "files": [
        "dist/",
        "README.md",
        "LICENSE"
    ],
    "scripts": {
        "dev": "npm run build:dev && npm run dev:serve",
        "dev:watch": "vite build --watch --mode info",
        "dev:serve": "serve . -l 3000",
        "dev:demo": "cd demo && npm run dev",
        "build": "vite build && npm run build:types",
        "build:dev": "vite build --mode development && npm run build:types",
        "build:types": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
        "build:demo": "cd demo && npm run build",
        "generate": "tsx src/codegen/generate-point-path.ts && npm run format",
        "check": "npm run generate && npm run check:lib:noformat && npm run check:demo:noformat",
        "check:lib": "npm run format && npm run check:lib:noformat",
        "check:demo": "npm run format && npm run check:demo:noformat",
        "check:lib:noformat": "npm run lint:fix && npm run lint && npm run typecheck && npm run test && npm run build",
        "check:demo:noformat": "npm run lint:fix:demo && npm run lint:demo && npm run typecheck:demo && npm run build:demo",
        "test": "vitest run",
        "test:watch": "vitest",
        "test:coverage": "vitest run --coverage",
        "lint": "oxlint src/ test/",
        "lint:fix": "oxlint src/ test/ --fix",
        "lint:demo": "cd demo && npm run lint",
        "lint:fix:demo": "cd demo && npm run lint:fix",
        "format": "oxfmt .",
        "format:check": "oxfmt --check .",
        "typecheck": "tsc --noEmit",
        "typecheck:demo": "cd demo && npm run typecheck",
        "semantic-release": "semantic-release",
        "prepare": "husky",
        "prepublishOnly": "npm run build"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/glandais/virtual-cyclist.git"
    },
    "keywords": [],
    "author": "glandais",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/glandais/virtual-cyclist/issues"
    },
    "homepage": "https://github.com/glandais/virtual-cyclist#readme",
    "engines": {
        "node": ">=18"
    },
    "publishConfig": {
        "access": "public"
    },
    "lint-staged": {
        "*.{ts,js}": [
            "oxlint --fix",
            "oxfmt"
        ],
        "*.{json,md}": [
            "oxfmt"
        ]
    },
    "devDependencies": {
        "@commitlint/cli": "^21.0.2",
        "@commitlint/config-conventional": "^21.0.0",
        "@semantic-release/changelog": "^7.0.0",
        "@semantic-release/exec": "^7.1.0",
        "@semantic-release/git": "^11.0.1",
        "@semantic-release/github": "^12.0.0",
        "@semantic-release/npm": "^13.1.1",
        "@types/node": "^26.0.1",
        "@vitest/coverage-v8": "^4.0.3",
        "husky": "^9.1.7",
        "jsdom": "^30.0.0",
        "lint-staged": "^17.0.4",
        "oxfmt": "^0.62.0",
        "oxlint": "^1.75.0",
        "semantic-release": "^25.0.1",
        "semantic-release-plugin-update-version-in-files": "^2.0.0",
        "serve": "^14.2.4",
        "ts-morph": "^28.0.0",
        "tsc-alias": "^1.8.16",
        "tsx": "^4.20.6",
        "typescript": "^7.0.2",
        "vite": "^8.0.10",
        "vitest": "^4.1.5"
    },
    "dependencies": {
        "@glandais/elevation": "^3.1.4"
    }
}
