-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
106 lines (106 loc) · 2.33 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"version": "2.0.9",
"license": "MIT",
"typings": "dist/index.d.ts",
"files": [
"dist/*.production.min.js",
"dist/*.esm.js",
"dist/*.d.ts",
"dist/index.js"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "react-oauth2",
"author": "maxifjaved",
"repository": {
"type": "git",
"url": "git+https://github.com/maxifjaved/react-oauth2.git"
},
"homepage": "https://github.com/maxifjaved/react-oauth2#readme",
"bugs": {
"url": "https://github.com/maxifjaved/react-oauth2/issues"
},
"main": "dist/react-oauth2.cjs.production.min.js",
"module": "dist/react-oauth2.esm.js",
"sideEffects": false,
"size-limit": [
{
"path": "dist/react-oauth2.cjs.production.min.js",
"limit": "8 KB",
"using": [
"@size-limit/esbuild",
"@size-limit/esbuild-why"
]
},
{
"path": "dist/react-oauth2.esm.js",
"limit": "8 KB",
"using": [
"@size-limit/esbuild",
"@size-limit/esbuild-why"
]
}
],
"devDependencies": {
"@size-limit/esbuild": "^11.1.6",
"@size-limit/esbuild-why": "^11.1.6",
"@size-limit/preset-small-lib": "^11.1.6",
"@size-limit/webpack": "^11.1.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"husky": "^9.1.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.12.0",
"size-limit": "^11.1.6",
"tsdx": "^0.14.1",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"keywords": [
"react",
"oauth",
"oauth2",
"social-login",
"google-login",
"facebook-login",
"react-component",
"typescript",
"authentication",
"social-authentication",
"google-oauth",
"facebook-oauth",
"react18",
"social-media-login",
"oauth2-client",
"react-oauth",
"social-signin",
"google-signin",
"facebook-signin",
"react-social-login"
]
}