-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.19 KB
/
package.json
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
{
"name": "react-ogp",
"version": "0.0.3",
"description": "The ultimate React OpenGraph component",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
"./": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"type": "module",
"scripts": {
"build": "rollup -c",
"prebuild": "rm -rf dist",
"prepare": "pnpm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/talentlessguy/react-ogp.git"
},
"keywords": [
"react",
"ogp",
"opengraph",
"seo",
"meta"
],
"author": "v1rtl",
"license": "MIT",
"bugs": {
"url": "https://github.com/talentlessguy/react-ogp/issues"
},
"homepage": "https://github.com/talentlessguy/react-ogp#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.5",
"@types/react": "^17.0.16",
"react": "^17.0.2",
"rollup": "^2.56.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react": ">=16"
}
}