-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.21 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.21 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "react-head-safe",
"version": "1.6.1",
"description": "A lightweight React head manager for CSR apps. Safely manage document title, meta tags, Open Graph, and SEO metadata without duplicates. TypeScript support included.",
"author": "umsungjun",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/umsungjun/react-head-safe.git"
},
"bugs": {
"url": "https://github.com/umsungjun/react-head-safe/issues"
},
"homepage": "https://github.com/umsungjun/react-head-safe#readme",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"prepublishOnly": "pnpm run build",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"example": "cd examples/basic && pnpm install && pnpm dev",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"peerDependencies": {
"react": ">=17"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^22.10.5",
"@types/react": "^19.2.7",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.17",
"happy-dom": "^20.1.0",
"jsdom": "^27.4.0",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"vite": "^6.0.7",
"vite-plugin-dts": "^4.4.2",
"vitest": "^4.0.17"
},
"packageManager": "pnpm@10.5.2",
"keywords": [
"react",
"react-head",
"react-helmet",
"react-helmet-async",
"seo",
"meta-tags",
"meta",
"head",
"head-manager",
"document-head",
"document-title",
"open-graph",
"og-tags",
"social-media",
"spa",
"csr",
"client-side-rendering",
"typescript",
"vite",
"create-react-app",
"duplicate-prevention",
"page-metadata",
"seo-optimization",
"react-seo",
"meta-description",
"react-component"
]
}