forked from nondefyde/react-social-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "@ekaruz/react-social-auth",
"version": "0.0.1",
"private": false,
"workspaces": {
"packages": [
"package",
"example"
]
},
"repository": {
"type": "git",
"url": "https://github.com/nondefyde/react-social-auth"
},
"keywords": [
"react social login",
"social login",
"react social oauth",
"react social auth"
],
"author": "nondefyde",
"bugs": {
"url": "https://github.com/nondefyde/react-social-auth/issues"
},
"homepage": "https://github.com/nondefyde/react-social-auth#readme",
"license": "MIT",
"scripts": {
"dev": "cd package && npm run dev:build",
"prepublish": "cd package && npm run build",
"patch:version": "npm version patch",
"pub": "npm publish --access public",
"unpublished": "npm unpublish @ekaruztech/react-social-auth --force"
},
"files": [
"dist"
],
"main": "./dist/lib.umd.js",
"module": "./dist/lib.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/lib.es.js",
"require": "./dist/lib.umd.js",
"types": "./dist/index.d.ts"
}
},
"devDependencies": {
"@testing-library/react-hooks": "^8.0.1"
},
"dependencies": {}
}