UNPKG

@dr.pogodin/react-helmet

Version:

Thread-safe Helmet for React 19+ and friends

69 lines (68 loc) 2.32 kB
{ "name": "@dr.pogodin/react-helmet", "version": "3.2.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 --cache", "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.29.2", "react-compiler-runtime": "^1.0.0" }, "devDependencies": { "@babel/cli": "^7.28.6", "@babel/plugin-transform-runtime": "^7.29.0", "@babel/preset-env": "^7.29.5", "@babel/preset-react": "^7.28.5", "@babel/preset-typescript": "^7.28.5", "@dr.pogodin/eslint-configs": "^0.2.13", "@jest/globals": "^30.4.1", "@testing-library/jest-dom": "6.9.1", "@testing-library/react": "16.3.2", "@tsconfig/recommended": "^1.0.13", "@types/jest": "^30.0.0", "@types/react": "^19.2.15", "@types/react-dom": "^19.2.3", "babel-plugin-react-compiler": "^1.0.0", "jest": "^30.4.2", "jest-environment-jsdom": "^30.4.1", "raf": "^3.4.1", "react": "^19.2.6", "react-dom": "^19.2.6", "rimraf": "6.1.3" }, "peerDependencies": { "react": "19" } }