-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.42 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.42 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
91
{
"version": "1.1.3",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"format": "yarn run prettier -- --write",
"check:format": "yarn run prettier --list-different",
"prettier": "prettier --ignore-path .gitignore \"**/*.{js,json,ts,tsx,scss,css,md}\"",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"name": "react-github-fork-banner",
"description": "Add a github banner with a link to the fork or repository of your project.",
"author": "abrahamcalsin",
"module": "dist/react-github-fork-banner.esm.js",
"size-limit": [
{
"path": "dist/react-github-fork-banner.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/react-github-fork-banner.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "^7.16.7",
"@size-limit/preset-small-lib": "^7.0.5",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.4.9",
"@storybook/addons": "^6.4.9",
"@storybook/react": "^6.4.9",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/styled-components": "^5.1.19",
"@yonycalsin/prettier-config-react-typescript": "^1.0.1",
"babel-loader": "^8.2.3",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"size-limit": "^7.0.5",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"dependencies": {
"prettier": "^2.8.4",
"styled-components": "^5.3.3"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abrahamcalsin/github-fork-banner.git"
},
"keywords": [
"react",
"github-corner",
"github-fork-banner",
"github",
"fork"
],
"bugs": {
"url": "https://github.com/abrahamcalsin/github-fork-banner/issues"
},
"homepage": "https://github.com/abrahamcalsin/github-fork-banner#readme"
}