-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "react-favicon",
"version": "2.0.7",
"description": "React favicon helper",
"main": "dist/index.js",
"repository": "oflisback/react-favicon",
"author": "Cezary Wojtkowski <cezary@gmail.com>",
"maintainers": [
"Ola Flisbäck <ola.flisback@gmail.com>"
],
"license": "MIT",
"engines": {
"node": ">=10"
},
"module": "dist/index.js",
"files": [
"dist",
"react-favicon.d.ts"
],
"scripts": {
"build": "tsup --format esm,cjs",
"format": "prettier -w src/",
"lint": "eslint src/*.jsx",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build"
},
"types": "react-favicon.d.ts",
"keywords": [],
"dependencies": {
"prop-types": "^15.8.1"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"gh-pages": "^2.2.0",
"prettier": "^2.8.8",
"semantic-release": "^20.1.3",
"tsup": "^6.7.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
}