forked from staylor/react-helmet-async
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.18 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@dr.pogodin/react-helmet",
"version": "3.1.0",
"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.28.6"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@dr.pogodin/eslint-configs": "^0.2.7",
"@jest/globals": "^30.2.0",
"@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.14",
"@types/react-dom": "^19.2.3",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"raf": "^3.4.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rimraf": "6.1.3"
},
"peerDependencies": {
"react": "19"
}
}