{
  "name": "gsintegrations",
  "version": "0.0.470",
  "description": "A React component library template with TypeScript, Storybook, and testing setup",
  "main": "dist/bundle.cjs.js",
  "module": "dist/bundle.esm.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/bundle.esm.js",
      "require": "./dist/bundle.cjs.js",
      "default": "./dist/bundle.esm.js"
    }
  },
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "NODE_OPTIONS=--max-old-space-size=4096 rimraf dist && rollup -c",
    "build:ci": "NODE_OPTIONS=--max-old-space-size=8192 BUILD_SOURCEMAP=false rimraf dist && rollup -c",
    "dev": "rollup -c -w",
    "test": "jest --passWithNoTests",
    "test:ci": "jest --watch=false --passWithNoTests",
    "test:ci:stable": "CI=true NODE_OPTIONS=--max-old-space-size=8192 jest --watch=false --passWithNoTests --runInBand",
    "test:watch": "jest --watch",
    "test:changed": "node ./scripts/run-changed-tests.mjs",
    "test:related": "jest --findRelatedTests --watch=false --passWithNoTests",
    "test:path": "jest --runTestsByPath --watch=false --passWithNoTests",
    "test:coverage": "jest --coverage --watchAll=false",
    "test:e2e": "playwright test",
    "test:e2e:ui": "playwright test --ui",
    "test:e2e:headed": "playwright test --headed",
    "test:e2e:report": "playwright show-report",
    "lint": "eslint src",
    "format": "prettier --write .",
    "prepare": "husky install",
    "type-check": "tsc -p tsconfig.build.json --noEmit",
    "type-check:declarations": "rimraf .declaration-check && tsc -p tsconfig.build.json --emitDeclarationOnly --declarationDir .declaration-check/types --outDir .declaration-check/dist",
    "changeset": "changeset",
    "version-packages": "changeset version",
    "release": "changeset publish",
    "release:ci": "node ./scripts/ci-release.mjs",
    "push:quality": "node ./scripts/pre-push-quality-checks.mjs",
    "push:safe": "npm run push:quality",
    "prepublishOnly": "[ \"$CI\" = 'true' ] && echo 'Skipping prepublish build (CI already built)' || npm run build",
    "storybook": "storybook dev -p 6006",
    "build-storybook": "storybook build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/guilhermefos/gsintegrations-react-components.git"
  },
  "author": "Guilherme Silva",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "react",
    "typescript",
    "library",
    "template"
  ],
  "peerDependencies": {
    "react": "^18.0.0 || ^19.0.0",
    "react-dom": "^18.0.0 || ^19.0.0"
  },
  "devDependencies": {
    "@babel/core": "^7.21.4",
    "@babel/preset-env": "^7.21.4",
    "@babel/preset-react": "^7.18.6",
    "@babel/preset-typescript": "^7.21.4",
    "@changesets/changelog-github": "^0.5.1",
    "@changesets/cli": "^2.29.7",
    "@commitlint/cli": "^17.7.1",
    "@commitlint/config-conventional": "^17.7.1",
    "@playwright/test": "^1.58.1",
    "@rollup/plugin-commonjs": "^24.1.0",
    "@rollup/plugin-image": "^3.0.3",
    "@rollup/plugin-node-resolve": "^15.3.1",
    "@rollup/plugin-terser": "^0.4.0",
    "@rollup/plugin-typescript": "^11.1.6",
    "@storybook/addon-docs": "^10.3.5",
    "@storybook/addon-mcp": "^0.6.0",
    "@storybook/addon-onboarding": "^10.3.5",
    "@storybook/addon-webpack5-compiler-swc": "^4.0.3",
    "@storybook/react-webpack5": "^10.3.5",
    "@testing-library/jest-dom": "^6.6.3",
    "@testing-library/react": "^16.3.2",
    "@types/jest": "^29.5.0",
    "@types/lodash": "^4.17.17",
    "@types/react": "^19.2.14",
    "@types/react-dom": "^19.2.3",
    "@types/react-input-mask": "^3.0.6",
    "@typescript-eslint/eslint-plugin": "^5.57.1",
    "@typescript-eslint/parser": "^5.57.1",
    "@vitest/ui": "^4.0.18",
    "babel-jest": "^29.5.0",
    "chromatic": "^16.5.0",
    "commitlint": "^17.7.1",
    "eslint": "^8.38.0",
    "eslint-plugin-react": "^7.32.2",
    "eslint-plugin-storybook": "^10.3.5",
    "husky": "^8.0.0",
    "identity-obj-proxy": "^3.0.0",
    "jest": "^29.5.0",
    "jest-environment-jsdom": "^29.5.0",
    "prettier": "^2.8.8",
    "rimraf": "^4.4.1",
    "rollup": "^3.20.2",
    "rollup-plugin-banner2": "^1.3.1",
    "rollup-plugin-dts": "^6.2.1",
    "rollup-plugin-peer-deps-external": "^2.2.4",
    "rollup-plugin-postcss": "^4.0.2",
    "storybook": "^10.3.5",
    "ts-jest": "^29.4.6",
    "typescript": "^5.0.4",
    "uuid": "^14.0.0",
    "vitest": "^4.0.18"
  },
  "dependencies": {
    "@emotion/react": "^11.12.0",
    "@emotion/styled": "^11.12.0",
    "@mui/icons-material": "^5.18.0",
    "@mui/material": "^5.18.0",
    "@mui/x-date-pickers": "^8.17.0",
    "@react-pdf/renderer": "^4.5.1",
    "@simplewebauthn/browser": "^13.3.0",
    "@storybook/jest": "^0.2.3",
    "@storybook/testing-library": "^0.2.2",
    "@types/color": "^3.0.6",
    "@yudiel/react-qr-scanner": "^2.5.1",
    "color": "^4.2.3",
    "date-fns": "^4.1.0",
    "dayjs": "^1.11.10",
    "html2canvas": "^1.4.1",
    "immer": "^10.0.2",
    "jspdf": "^4.2.1",
    "lodash": "^4.17.21",
    "lucide-react": "^1.7.0",
    "msw-storybook-addon": "^2.0.5",
    "react-i18next": "^13.2.2",
    "react-imask": "^7.6.1",
    "react-input-mask": "^2.0.4",
    "zod": "^3.22.2"
  }
}
