{
    "name": "react-modern-gantt",
    "version": "0.8.5",
    "description": "A modern, customizable Gantt chart component for React applications with export functionality",
    "main": "dist/index.js",
    "module": "dist/index.esm.js",
    "types": "dist/index.d.ts",
    "type": "module",
    "files": [
        "dist"
    ],
    "scripts": {
        "build": "rollup -c",
        "dev": "rollup -c -w",
        "start": "npm run dev & npm run start:example",
        "start:example": "cd example && npm start",
        "lint": "eslint src --ext .ts,.tsx",
        "lint:fix": "eslint src --ext .ts,.tsx --fix",
        "test": "jest",
        "test:watch": "jest --watch",
        "test:coverage": "jest --coverage"
    },
    "keywords": [
        "react",
        "gantt",
        "chart",
        "timeline",
        "project-management",
        "scheduler",
        "planning",
        "roadmap",
        "export",
        "pdf",
        "image"
    ],
    "author": "Mika Stiebitz",
    "license": "MIT",
    "repository": {
        "type": "git",
        "url": "https://github.com/MikaStiebitz/React-Modern-Gantt/"
    },
    "peerDependencies": {
        "react": "^17.0.0 || ^18.0.0 || ^19.0.0",
        "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0",
        "typescript": "^4.0.0 || ^5.0.0"
    },
    "peerDependenciesMeta": {
        "html2canvas": {
            "optional": true
        },
        "jspdf": {
            "optional": true
        }
    },
    "optionalDependencies": {
        "html2canvas": "^1.4.1",
        "jspdf": "^4.1.0"
    },
    "devDependencies": {
        "@eslint/js": "^9.39.4",
        "@rollup/plugin-commonjs": "^29.0.2",
        "@rollup/plugin-node-resolve": "^16.0.1",
        "@rollup/plugin-terser": "^1.0.0",
        "@rollup/plugin-typescript": "^12.1.4",
        "@rollup/pluginutils": "^5.3.0",
        "@testing-library/jest-dom": "^6.9.1",
        "@testing-library/react": "^16.3.0",
        "@testing-library/user-event": "^14.6.1",
        "@types/jest": "^30.0.0",
        "@types/react": "^19.2.0",
        "@types/react-dom": "^19.2.0",
        "@typescript-eslint/eslint-plugin": "^8.57.2",
        "@typescript-eslint/parser": "^8.57.2",
        "autoprefixer": "^10.4.21",
        "baseline-browser-mapping": "^2.10.10",
        "eslint": "^9.39.4",
        "eslint-config-prettier": "^10.1.8",
        "eslint-plugin-prettier": "^5.5.4",
        "eslint-plugin-react": "^7.37.5",
        "eslint-plugin-react-hooks": "^7.0.1",
        "identity-obj-proxy": "^3.0.0",
        "jest": "^30.3.0",
        "jest-environment-jsdom": "^30.3.0",
        "minimatch": "^9.0.9",
        "postcss": "^8.5.6",
        "prettier": "^3.6.2",
        "rollup": "^4.60.0",
        "rollup-plugin-peer-deps-external": "^2.2.4",
        "rollup-plugin-postcss": "^4.0.2",
        "ts-jest": "^29.4.4",
        "ts-node": "^10.9.2",
        "tslib": "^2.8.1",
        "typescript": "^5.9.3"
    },
    "dependencies": {
        "date-fns": "^4.1.0"
    },
    "overrides": {
        "@testing-library/react": {
            "react": "^19.0.0",
            "react-dom": "^19.0.0"
        }
    },
    "sideEffects": [
        "*.css",
        "./styles/gantt.css"
    ],
    "exports": {
        ".": {
            "types": "./dist/index.d.ts",
            "import": "./dist/index.esm.js",
            "require": "./dist/index.js"
        },
        "./dist/index.css": "./dist/index.css"
    },
    "typesVersions": {
        "*": {
            "*": [
                "dist/index.d.ts"
            ]
        }
    }
}
