-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
92 lines (92 loc) · 2.71 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
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
91
92
{
"version": "1.4.2",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14.15.0"
},
"scripts": {
"start": "tsdx watch",
"build": "./node_modules/.bin/tsdx build",
"test": "./node_modules/.bin/tsdx test --passWithNoTests",
"lint": "./node_modules/.bin/tsdx lint",
"prepare": "./node_modules/.bin/tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {
"gatsby": "^3.0.0 || ^4.0.0 || ^5.0.0",
"react": ">=16",
"react-helmet": "^6.1.0"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"name": "gatsby-plugin-wpgraphql-seo",
"author": "Ash Hitchcock",
"description": "A SEO component that brings data from Yoast in your Gatsby App with WpGraphQl.",
"keywords": [
"gatsby",
"gatsby-plugin",
"wordpress",
"wpgraphql",
"seo"
],
"module": "dist/gatsby-plugin-wpgraphql-seo.esm.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/ashhitch/gatsby-plugin-wpgraphql-seo"
},
"size-limit": [
{
"path": "dist/gatsby-plugin-wpgraphql-seo.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/gatsby-plugin-wpgraphql-seo.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^4.6.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-config-ashhitch": "0.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^4.3.0",
"prettier": "^1.19.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"size-limit": "^4.6.0",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typescript": "3.7.3"
},
"dependencies": {
"@types/react-helmet": "^6.1.0",
"gatsby-plugin-image": "^1.5.0",
"react-helmet": "^6.1.0"
}
}