{
  "name": "@dr.pogodin/react-helmet",
  "version": "3.0.2",
  "description": "Thread-safe Helmet for React 19+ and friends",
  "main": "./build/common/index.js",
  "module": "./build/module/index.js",
  "types": "./build/types/index.d.ts",
  "exports": {
    "types": "./build/types/index.d.ts",
    "module": "./build/module/index.js",
    "default": "./build/common/index.js"
  },
  "scripts": {
    "build": "rimraf build && npm run build:types && npm run build:common && npm run build:module",
    "build:common": "rimraf build/common && babel src -x .ts,.tsx --out-dir build/common --source-maps",
    "build:module": "rimraf build/module && babel src -x .ts,.tsx --out-dir build/module --source-maps --config-file ./babel.module.config.js",
    "build:types": "rimraf build/types && tsc --project tsconfig.types.json",
    "lint": "eslint",
    "test": "npm run lint && npm run typecheck && npm run jest",
    "typecheck": "tsc",
    "jest": "jest --config config/jest/config.js"
  },
  "repository": {
    "type": "github",
    "url": "git+https://github.com/birdofpreyru/react-helmet.git"
  },
  "keywords": [
    "helmet",
    "javascript",
    "meta",
    "react"
  ],
  "author": "Dr. Sergey Pogodin <doc@pogodin.studio> (https://dr.pogodin.studio)",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/birdofpreyru/react-helmet/issues"
  },
  "homepage": "https://github.com/birdofpreyru/react-helmet#readme",
  "dependencies": {
    "@babel/runtime": "^7.27.1"
  },
  "devDependencies": {
    "@babel/cli": "^7.27.1",
    "@babel/plugin-transform-runtime": "^7.27.1",
    "@babel/preset-env": "^7.27.1",
    "@babel/preset-react": "^7.27.1",
    "@babel/preset-typescript": "^7.27.1",
    "@dr.pogodin/eslint-configs": "^0.0.5",
    "@jest/globals": "^29.7.0",
    "@testing-library/jest-dom": "6.6.3",
    "@testing-library/react": "16.3.0",
    "@tsconfig/recommended": "^1.0.8",
    "@types/jest": "^29.5.14",
    "@types/react": "^19.1.2",
    "@types/react-dom": "^19.1.3",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "raf": "^3.4.1",
    "react": "^19.1.0",
    "react-dom": "^19.1.0",
    "rimraf": "6.0.1"
  },
  "peerDependencies": {
    "react": "19"
  }
}
