@famgia/omnify-react-sso 2.0.9 → 2.0.10
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 +79 -79
package/package.json
CHANGED
|
@@ -1,83 +1,83 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
2
|
+
"name": "@famgia/omnify-react-sso",
|
|
3
|
+
"version": "2.0.10",
|
|
4
|
+
"description": "SSO (Single Sign-On) schemas, types, and utilities for Omnify",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"require": {
|
|
16
|
+
"types": "./dist/index.d.cts",
|
|
17
|
+
"default": "./dist/index.cjs"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"./schemas": {
|
|
21
|
+
"import": {
|
|
22
|
+
"types": "./dist/schemas/index.d.ts",
|
|
23
|
+
"default": "./dist/schemas/index.js"
|
|
24
|
+
},
|
|
25
|
+
"require": {
|
|
26
|
+
"types": "./dist/schemas/index.d.cts",
|
|
27
|
+
"default": "./dist/schemas/index.cjs"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"./schemas/*": {
|
|
31
|
+
"import": {
|
|
32
|
+
"types": "./dist/schemas/*.d.ts",
|
|
33
|
+
"default": "./dist/schemas/*.js"
|
|
34
|
+
},
|
|
35
|
+
"require": {
|
|
36
|
+
"types": "./dist/schemas/*.d.cts",
|
|
37
|
+
"default": "./dist/schemas/*.cjs"
|
|
38
|
+
}
|
|
39
|
+
}
|
|
19
40
|
},
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
|
|
41
|
+
"files": [
|
|
42
|
+
"dist",
|
|
43
|
+
"scripts",
|
|
44
|
+
"README.md"
|
|
45
|
+
],
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build:schemas": "tsx scripts/build-schemas.ts",
|
|
48
|
+
"build:lib": "tsup",
|
|
49
|
+
"build": "pnpm build:schemas && pnpm build:lib",
|
|
50
|
+
"clean": "rm -rf dist src/schemas schemas",
|
|
51
|
+
"typecheck": "tsc --noEmit"
|
|
29
52
|
},
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
|
|
53
|
+
"keywords": [
|
|
54
|
+
"omnify",
|
|
55
|
+
"sso",
|
|
56
|
+
"typescript",
|
|
57
|
+
"zod",
|
|
58
|
+
"user",
|
|
59
|
+
"role",
|
|
60
|
+
"permission",
|
|
61
|
+
"team"
|
|
62
|
+
],
|
|
63
|
+
"author": "Famgia",
|
|
64
|
+
"license": "MIT",
|
|
65
|
+
"repository": {
|
|
66
|
+
"type": "git",
|
|
67
|
+
"url": "https://github.com/ecsol/omnify-ts.git",
|
|
68
|
+
"directory": "packages/omnify-client-react-sso"
|
|
69
|
+
},
|
|
70
|
+
"peerDependencies": {
|
|
71
|
+
"zod": "^3.25.0 || ^4.0.0"
|
|
72
|
+
},
|
|
73
|
+
"dependencies": {
|
|
74
|
+
"@famgia/omnify": "^2.0.9",
|
|
75
|
+
"@famgia/omnify-typescript": "^2.0.9"
|
|
76
|
+
},
|
|
77
|
+
"devDependencies": {
|
|
78
|
+
"tsup": "^8.5.1",
|
|
79
|
+
"tsx": "^4.21.0",
|
|
80
|
+
"typescript": "^5.8.3",
|
|
81
|
+
"zod": "^4.3.5"
|
|
39
82
|
}
|
|
40
|
-
|
|
41
|
-
"files": [
|
|
42
|
-
"dist",
|
|
43
|
-
"scripts",
|
|
44
|
-
"README.md"
|
|
45
|
-
],
|
|
46
|
-
"keywords": [
|
|
47
|
-
"omnify",
|
|
48
|
-
"sso",
|
|
49
|
-
"typescript",
|
|
50
|
-
"zod",
|
|
51
|
-
"user",
|
|
52
|
-
"role",
|
|
53
|
-
"permission",
|
|
54
|
-
"team"
|
|
55
|
-
],
|
|
56
|
-
"author": "Famgia",
|
|
57
|
-
"license": "MIT",
|
|
58
|
-
"repository": {
|
|
59
|
-
"type": "git",
|
|
60
|
-
"url": "https://github.com/ecsol/omnify-ts.git",
|
|
61
|
-
"directory": "packages/omnify-client-react-sso"
|
|
62
|
-
},
|
|
63
|
-
"peerDependencies": {
|
|
64
|
-
"zod": "^3.25.0 || ^4.0.0"
|
|
65
|
-
},
|
|
66
|
-
"dependencies": {
|
|
67
|
-
"@famgia/omnify": "2.0.9",
|
|
68
|
-
"@famgia/omnify-typescript": "2.0.9"
|
|
69
|
-
},
|
|
70
|
-
"devDependencies": {
|
|
71
|
-
"tsup": "^8.5.1",
|
|
72
|
-
"tsx": "^4.21.0",
|
|
73
|
-
"typescript": "^5.8.3",
|
|
74
|
-
"zod": "^4.3.5"
|
|
75
|
-
},
|
|
76
|
-
"scripts": {
|
|
77
|
-
"build:schemas": "tsx scripts/build-schemas.ts",
|
|
78
|
-
"build:lib": "tsup",
|
|
79
|
-
"build": "pnpm build:schemas && pnpm build:lib",
|
|
80
|
-
"clean": "rm -rf dist src/schemas schemas",
|
|
81
|
-
"typecheck": "tsc --noEmit"
|
|
82
|
-
}
|
|
83
|
-
}
|
|
83
|
+
}
|