{
  "name": "@vgs/collect-js-react",
  "version": "2.1.0",
  "description": "VGS Collect.js React wrapper",
  "author": "vgs",
  "license": "MIT",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/verygoodsecurity/collect-js-react.git"   
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.js",
      "import": "./dist/index.mjs"
    }
  },
  "source": "src/index.tsx",
  "engines": {
    "node": ">=10"
  },
  "scripts": {
    "build": "tsdown",
    "compat:build": "run-s compat:build:react16 compat:build:react17 compat:build:react18 compat:build:react19",
    "compat:build:react16": "vite build --config examples/compat/fixtures/react16/vite.config.ts",
    "compat:build:react17": "vite build --config examples/compat/fixtures/react17/vite.config.ts",
    "compat:build:react18": "vite build --config examples/compat/fixtures/react18/vite.config.ts",
    "compat:build:react19": "vite build --config examples/compat/fixtures/react19/vite.config.ts",
    "compat:dev": "yarn compat:dev:react19",
    "compat:dev:react16": "vite --config examples/compat/fixtures/react16/vite.config.ts --port 3016",
    "compat:dev:react17": "vite --config examples/compat/fixtures/react17/vite.config.ts --port 3017",
    "compat:dev:react18": "vite --config examples/compat/fixtures/react18/vite.config.ts --port 3018",
    "compat:dev:react19": "vite --config examples/compat/fixtures/react19/vite.config.ts --port 3019",
    "compat:test:ui": "node --test examples/compat/ui/compat-ui.test.mjs",
    "compat:test:ui:react16": "cross-env COMPAT_REACT_VERSION=react16 node --test examples/compat/ui/compat-ui.test.mjs",
    "compat:test:ui:react17": "cross-env COMPAT_REACT_VERSION=react17 node --test examples/compat/ui/compat-ui.test.mjs",
    "compat:test:ui:react18": "cross-env COMPAT_REACT_VERSION=react18 node --test examples/compat/ui/compat-ui.test.mjs",
    "compat:test:ui:react19": "cross-env COMPAT_REACT_VERSION=react19 node --test examples/compat/ui/compat-ui.test.mjs",
    "demo:build": "vite build --config examples/demo/vite.config.ts",
    "demo:dev": "vite --config examples/demo/vite.config.ts",
    "dev": "yarn demo:dev",
    "dev:lib": "tsdown --watch",
    "example:build": "yarn demo:build",
    "example:dev": "yarn demo:dev",
    "start": "yarn demo:dev",
    "prepare": "run-s build",
    "test": "run-s test:unit test:lint test:build test:demobuild test:compatbuild",
    "test:build": "run-s build",
    "test:compatbuild": "run-s compat:build",
    "test:compatui": "yarn compat:test:ui",
    "test:demobuild": "run-s demo:build",
    "test:examplebuild": "run-s demo:build",
    "test:lint": "eslint --ext .ts src",
    "lint:fix": "eslint --ext .ts src --fix",
    "test:unit": "jest --coverage --coverageReporters json-summary",
    "test:watch": "jest --watch",
    "predeploy": "yarn demo:build",
    "format": "prettier --write ."
  },
  "peerDependencies": {
    "react": "^16.0 || ^17.0 || ^18.0 || ^19.0",
    "react-dom": "^16.0 || ^17.0 || ^18.0 || ^19.0"
  },
  "devDependencies": {
    "@babel/eslint-parser": "^7.28.4",
    "@babel/plugin-transform-react-jsx": "^7.20.7",
    "@testing-library/dom": "^10.4.1",
    "@testing-library/jest-dom": "^6.9.1",
    "@testing-library/react": "^16.3.2",
    "@testing-library/user-event": "^14.6.1",
    "@types/jest": "^25.1.4",
    "@types/node": "^12.12.38",
    "@types/react": "^19.2.14",
    "@types/react-dom": "^19.2.3",
    "@typescript-eslint/eslint-plugin": "^2.26.0",
    "@typescript-eslint/parser": "^2.26.0",
    "@vgs/collect-js": "^0.7.3",
    "@vitejs/plugin-react": "^6.0.0",
    "cross-env": "^7.0.2",
    "eslint": "^6.8.0",
    "eslint-config-prettier": "^6.7.0",
    "eslint-config-standard": "^14.1.0",
    "eslint-config-standard-react": "^9.2.0",
    "eslint-plugin-import": "^2.18.2",
    "eslint-plugin-node": "^11.0.0",
    "eslint-plugin-prettier": "^3.1.1",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-react": "^7.17.0",
    "jest": "^27.5.1",
    "npm-run-all": "^4.1.5",
    "playwright-core": "^1.58.2",
    "prettier": "^2.0.4",
    "react": "^19.2.4",
    "react-16": "npm:react@16.14.0",
    "react-17": "npm:react@17.0.2",
    "react-18": "npm:react@18.3.1",
    "react-19": "npm:react@19.2.4",
    "react-dom": "^19.2.4",
    "react-dom-v16": "npm:react-dom@16.14.0",
    "react-dom-17": "npm:react-dom@17.0.2",
    "react-dom-18": "npm:react-dom@18.3.1",
    "react-dom-19": "npm:react-dom@19.2.4",
    "react-router-dom": "^6.30.1",
    "ts-jest": "27.0.1",
    "tsdown": "^0.21.2",
    "typescript": "^4.9.3",
    "vite": "^8.0.0"
  },
  "babel": {
    "presets": [
      "@babel/react",
      "@babel/env"
    ],
    "plugins": [
      "@babel/plugin-transform-react-jsx"
    ]
  },
  "files": [
    "dist"
  ],
  "resolutions": {
    "**/@typescript-eslint/typescript-estree/semver": "7.5.2",
    "**/anymatch/picomatch": "2.3.2",
    "**/flat-cache/flatted": "3.4.2",
    "**/jest-snapshot/semver": "7.5.2",
    "**/jest-util/picomatch": "2.3.2",
    "**/micromatch/picomatch": "2.3.2",
    "**/ts-jest/semver": "7.5.2",
    "eslint/cross-spawn": "6.0.6",
    "nth-check": "2.1.1",
    "postcss": "8.5.10",
    "webpack": "5.76.0"
  },
  "dependencies": {},
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}
