@gello/auth 0.2.0 → 0.2.2
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/index.d.ts +14 -0
- package/index.js +6 -0
- package/package.json +11 -8
package/index.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @gello/auth
|
|
3
|
+
*
|
|
4
|
+
* Complete authentication and authorization system for Gello.
|
|
5
|
+
*
|
|
6
|
+
* This package re-exports all auth packages for convenient access.
|
|
7
|
+
*/
|
|
8
|
+
export * from '../../../auth/core/src/index.ts';
|
|
9
|
+
export * from '../../../auth/session/src/index.ts';
|
|
10
|
+
export * from '../../../auth/authorization/src/index.ts';
|
|
11
|
+
export * from '../../../auth/social/src/index.ts';
|
|
12
|
+
export * from '../../../auth/templates/src/index.ts';
|
|
13
|
+
export * from '../../../auth/testing/src/index.ts';
|
|
14
|
+
//# sourceMappingURL=index.d.ts.map
|
package/index.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gello/auth",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Complete authentication and authorization system for Gello",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"gello",
|
|
@@ -29,19 +29,22 @@
|
|
|
29
29
|
},
|
|
30
30
|
"files": [
|
|
31
31
|
"index.js",
|
|
32
|
-
"index.d.ts"
|
|
33
|
-
"index.d.ts.map"
|
|
32
|
+
"index.d.ts"
|
|
34
33
|
],
|
|
35
34
|
"engines": {
|
|
36
35
|
"node": ">=20.0.0"
|
|
37
36
|
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@gello/auth-core": "^0.1.0",
|
|
39
|
+
"@gello/auth-session": "^0.1.0",
|
|
40
|
+
"@gello/auth-authorization": "^0.1.0",
|
|
41
|
+
"@gello/auth-social": "^0.1.0",
|
|
42
|
+
"@gello/auth-templates": "^0.1.0",
|
|
43
|
+
"@gello/auth-testing": "^0.1.0"
|
|
44
|
+
},
|
|
38
45
|
"peerDependencies": {
|
|
39
46
|
"effect": "^3.19.0",
|
|
40
|
-
"@effect/platform": "^0.94.0"
|
|
41
|
-
"@effect/schema": "^0.75.0",
|
|
42
|
-
"@gello/core": "^0.1.0",
|
|
43
|
-
"@react-email/components": "^0.0.31",
|
|
44
|
-
"react": "^18.0.0 || ^19.0.0"
|
|
47
|
+
"@effect/platform": "^0.94.0"
|
|
45
48
|
},
|
|
46
49
|
"peerDependenciesMeta": {
|
|
47
50
|
"@react-email/components": {
|