-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "preact-head-tag",
"version": "0.2.0",
"description": "A tiny ssr-compatible preact component for managing head with preact-portal",
"main": "dist/preact-head-tag.min.js",
"module": "dist/preact-head-tag.esm.js",
"license": "MIT",
"author": "Markus Englund <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/markusenglund/preact-head-tag.git"
},
"scripts": {
"build": "rollup -c -w"
},
"dependencies": {
"preact-portal": "^1.1.3",
"preact-render-to-string": "^3.7.0"
},
"peerDependencies": {
"preact": "^8.2.9"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/plugin-transform-object-assign": "^7.0.0-beta.51",
"preact": "^8.2.9",
"rollup": "^0.60.1",
"rollup-plugin-babel": "^4.0.0-beta.5",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-size-snapshot": "^0.5.1",
"rollup-plugin-terser": "^1.0.1",
"rollup-plugin-uglify": "^4.0.0"
},
"keywords": [
"preact",
"head",
"preact-portal",
"ssr",
"helmet",
"title",
"meta",
"document"
]
}