@mantiq/social-auth 0.1.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +29 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mantiq/social-auth",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Social authentication — login with Google, GitHub, Facebook, Apple, and more via extensible providers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -14,12 +14,32 @@
|
|
|
14
14
|
"bugs": {
|
|
15
15
|
"url": "https://github.com/mantiqjs/mantiq/issues"
|
|
16
16
|
},
|
|
17
|
-
"keywords": [
|
|
18
|
-
|
|
17
|
+
"keywords": [
|
|
18
|
+
"mantiq",
|
|
19
|
+
"social-auth",
|
|
20
|
+
"oauth",
|
|
21
|
+
"google",
|
|
22
|
+
"github",
|
|
23
|
+
"facebook",
|
|
24
|
+
"apple",
|
|
25
|
+
"login"
|
|
26
|
+
],
|
|
27
|
+
"engines": {
|
|
28
|
+
"bun": ">=1.1.0"
|
|
29
|
+
},
|
|
19
30
|
"main": "./src/index.ts",
|
|
20
31
|
"types": "./src/index.ts",
|
|
21
|
-
"exports": {
|
|
22
|
-
|
|
32
|
+
"exports": {
|
|
33
|
+
".": {
|
|
34
|
+
"bun": "./src/index.ts",
|
|
35
|
+
"default": "./src/index.ts"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"files": [
|
|
39
|
+
"src/",
|
|
40
|
+
"package.json",
|
|
41
|
+
"README.md"
|
|
42
|
+
],
|
|
23
43
|
"scripts": {
|
|
24
44
|
"build": "bun build ./src/index.ts --outdir ./dist --target bun --packages=external",
|
|
25
45
|
"test": "bun test",
|
|
@@ -27,11 +47,14 @@
|
|
|
27
47
|
"clean": "rm -rf dist"
|
|
28
48
|
},
|
|
29
49
|
"peerDependencies": {
|
|
30
|
-
"@mantiq/core": "^0.
|
|
50
|
+
"@mantiq/core": "^0.5.0"
|
|
31
51
|
},
|
|
32
52
|
"devDependencies": {
|
|
33
53
|
"bun-types": "latest",
|
|
34
54
|
"typescript": "^5.7.0",
|
|
35
55
|
"@mantiq/core": "workspace:*"
|
|
56
|
+
},
|
|
57
|
+
"mantiq": {
|
|
58
|
+
"provider": "SocialAuthServiceProvider"
|
|
36
59
|
}
|
|
37
60
|
}
|