doct-ui-auth-kit 1.0.15 → 1.0.16
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/dist/doct-ui-auth-kit.css +1 -1
- package/dist/index.js +3 -3
- package/dist/pages.js +1 -1
- package/dist/{signup-page-LsYojX4-.js → signup-page-DlKFcIGU.js} +392 -390
- package/package.json +110 -110
package/package.json
CHANGED
|
@@ -1,110 +1,110 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "doct-ui-auth-kit",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Composable React auth SDK – layouts, login/signup/OTP pages, SSO provider, and auth flow hooks for Docthub",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.js",
|
|
7
|
-
"module": "./dist/index.js",
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"files": ["dist", "README.md"],
|
|
10
|
-
"keywords": [
|
|
11
|
-
"react",
|
|
12
|
-
"auth",
|
|
13
|
-
"sdk",
|
|
14
|
-
"docthub",
|
|
15
|
-
"login",
|
|
16
|
-
"signup",
|
|
17
|
-
"sso",
|
|
18
|
-
"otp"
|
|
19
|
-
],
|
|
20
|
-
"license": "UNLICENSED",
|
|
21
|
-
"repository": {
|
|
22
|
-
"type": "git",
|
|
23
|
-
"url": "https://github.com/docthub/doct-ui-auth-kit"
|
|
24
|
-
},
|
|
25
|
-
"scripts": {
|
|
26
|
-
"dev": "vite",
|
|
27
|
-
"build": "vite build && tsc --build tsconfig.build.json --force && tsc-alias -p tsconfig.build.json",
|
|
28
|
-
"prepublishOnly": "npm run build",
|
|
29
|
-
"lint": "biome lint .",
|
|
30
|
-
"preview": "vite preview",
|
|
31
|
-
"format": "biome format --write .",
|
|
32
|
-
"lint:biome": "biome lint .",
|
|
33
|
-
"check": "biome check .",
|
|
34
|
-
"check:fix": "biome check --write .",
|
|
35
|
-
"type-check": "tsc --noEmit",
|
|
36
|
-
"prepare": "husky",
|
|
37
|
-
"storybook": "storybook dev -p 6006",
|
|
38
|
-
"build-storybook": "storybook build"
|
|
39
|
-
},
|
|
40
|
-
"exports": {
|
|
41
|
-
".": {
|
|
42
|
-
"types": "./dist/index.d.ts",
|
|
43
|
-
"import": "./dist/index.js"
|
|
44
|
-
},
|
|
45
|
-
"./style.css": "./dist/doct-ui-auth-kit.css",
|
|
46
|
-
"./pages": {
|
|
47
|
-
"types": "./dist/pages/index.d.ts",
|
|
48
|
-
"import": "./dist/pages.js"
|
|
49
|
-
}
|
|
50
|
-
},
|
|
51
|
-
"peerDependencies": {
|
|
52
|
-
"docthub-core-components": "2.99.0",
|
|
53
|
-
"react": "^19.0.0",
|
|
54
|
-
"react-dom": "^19.0.0",
|
|
55
|
-
"react-hook-form": "^7.50.0",
|
|
56
|
-
"react-icons": "^5.5.0",
|
|
57
|
-
"zod": "^4.0.0"
|
|
58
|
-
},
|
|
59
|
-
"dependencies": {
|
|
60
|
-
"clsx": "^2.1.1",
|
|
61
|
-
"dayjs": "^1.11.19",
|
|
62
|
-
"docthub-core-components": "2.99.0",
|
|
63
|
-
"react": "^19.0.0",
|
|
64
|
-
"react-dom": "^19.0.0",
|
|
65
|
-
"react-hook-form": "^7.50.0",
|
|
66
|
-
"react-icons": "^5.5.0",
|
|
67
|
-
"react-phone-number-input": "^3.4.14",
|
|
68
|
-
"react-router-dom": "^7.13.0",
|
|
69
|
-
"zod": "^4.0.0"
|
|
70
|
-
},
|
|
71
|
-
"devDependencies": {
|
|
72
|
-
"@biomejs/biome": "^2.3.14",
|
|
73
|
-
"@chromatic-com/storybook": "^5.0.0",
|
|
74
|
-
"@eslint/js": "^9.39.1",
|
|
75
|
-
"@storybook/addon-a11y": "^10.2.6",
|
|
76
|
-
"@storybook/addon-docs": "^10.2.6",
|
|
77
|
-
"@storybook/addon-onboarding": "^10.2.6",
|
|
78
|
-
"@storybook/addon-vitest": "^10.2.6",
|
|
79
|
-
"@storybook/react-vite": "^10.2.6",
|
|
80
|
-
"@types/node": "^24.10.1",
|
|
81
|
-
"@types/react": "^19.2.5",
|
|
82
|
-
"@types/react-dom": "^19.2.3",
|
|
83
|
-
"@vitejs/plugin-react": "^5.1.1",
|
|
84
|
-
"@vitest/browser-playwright": "^4.0.18",
|
|
85
|
-
"@vitest/coverage-v8": "^4.0.18",
|
|
86
|
-
"autoprefixer": "^10.4.24",
|
|
87
|
-
"babel-plugin-react-compiler": "^1.0.0",
|
|
88
|
-
"eslint": "^9.39.1",
|
|
89
|
-
"eslint-plugin-react-hooks": "^7.0.1",
|
|
90
|
-
"eslint-plugin-react-refresh": "^0.4.24",
|
|
91
|
-
"glob": "^13.0.1",
|
|
92
|
-
"globals": "^16.5.0",
|
|
93
|
-
"husky": "^9.1.7",
|
|
94
|
-
"lint-staged": "^16.2.7",
|
|
95
|
-
"playwright": "^1.58.1",
|
|
96
|
-
"postcss": "^8.5.6",
|
|
97
|
-
"react": "^19.2.0",
|
|
98
|
-
"react-dom": "^19.2.0",
|
|
99
|
-
"storybook": "^10.2.6",
|
|
100
|
-
"tailwind-merge": "^3.0.1",
|
|
101
|
-
"tailwindcss": "^3.4.16",
|
|
102
|
-
"tailwindcss-animate": "^1.0.7",
|
|
103
|
-
"tsc-alias": "^1.8.17",
|
|
104
|
-
"typescript": "~5.6.2",
|
|
105
|
-
"typescript-eslint": "^8.46.4",
|
|
106
|
-
"vite": "^7.2.4",
|
|
107
|
-
"vite-plugin-dts": "^4.5.0",
|
|
108
|
-
"vitest": "^4.0.18"
|
|
109
|
-
}
|
|
110
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "doct-ui-auth-kit",
|
|
3
|
+
"version": "1.0.16",
|
|
4
|
+
"description": "Composable React auth SDK – layouts, login/signup/OTP pages, SSO provider, and auth flow hooks for Docthub",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"files": ["dist", "README.md"],
|
|
10
|
+
"keywords": [
|
|
11
|
+
"react",
|
|
12
|
+
"auth",
|
|
13
|
+
"sdk",
|
|
14
|
+
"docthub",
|
|
15
|
+
"login",
|
|
16
|
+
"signup",
|
|
17
|
+
"sso",
|
|
18
|
+
"otp"
|
|
19
|
+
],
|
|
20
|
+
"license": "UNLICENSED",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://github.com/docthub/doct-ui-auth-kit"
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"dev": "vite",
|
|
27
|
+
"build": "vite build && tsc --build tsconfig.build.json --force && tsc-alias -p tsconfig.build.json",
|
|
28
|
+
"prepublishOnly": "npm run build",
|
|
29
|
+
"lint": "biome lint .",
|
|
30
|
+
"preview": "vite preview",
|
|
31
|
+
"format": "biome format --write .",
|
|
32
|
+
"lint:biome": "biome lint .",
|
|
33
|
+
"check": "biome check .",
|
|
34
|
+
"check:fix": "biome check --write .",
|
|
35
|
+
"type-check": "tsc --noEmit",
|
|
36
|
+
"prepare": "husky",
|
|
37
|
+
"storybook": "storybook dev -p 6006",
|
|
38
|
+
"build-storybook": "storybook build"
|
|
39
|
+
},
|
|
40
|
+
"exports": {
|
|
41
|
+
".": {
|
|
42
|
+
"types": "./dist/index.d.ts",
|
|
43
|
+
"import": "./dist/index.js"
|
|
44
|
+
},
|
|
45
|
+
"./style.css": "./dist/doct-ui-auth-kit.css",
|
|
46
|
+
"./pages": {
|
|
47
|
+
"types": "./dist/pages/index.d.ts",
|
|
48
|
+
"import": "./dist/pages.js"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"docthub-core-components": "2.99.0",
|
|
53
|
+
"react": "^19.0.0",
|
|
54
|
+
"react-dom": "^19.0.0",
|
|
55
|
+
"react-hook-form": "^7.50.0",
|
|
56
|
+
"react-icons": "^5.5.0",
|
|
57
|
+
"zod": "^4.0.0"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"clsx": "^2.1.1",
|
|
61
|
+
"dayjs": "^1.11.19",
|
|
62
|
+
"docthub-core-components": "2.99.0",
|
|
63
|
+
"react": "^19.0.0",
|
|
64
|
+
"react-dom": "^19.0.0",
|
|
65
|
+
"react-hook-form": "^7.50.0",
|
|
66
|
+
"react-icons": "^5.5.0",
|
|
67
|
+
"react-phone-number-input": "^3.4.14",
|
|
68
|
+
"react-router-dom": "^7.13.0",
|
|
69
|
+
"zod": "^4.0.0"
|
|
70
|
+
},
|
|
71
|
+
"devDependencies": {
|
|
72
|
+
"@biomejs/biome": "^2.3.14",
|
|
73
|
+
"@chromatic-com/storybook": "^5.0.0",
|
|
74
|
+
"@eslint/js": "^9.39.1",
|
|
75
|
+
"@storybook/addon-a11y": "^10.2.6",
|
|
76
|
+
"@storybook/addon-docs": "^10.2.6",
|
|
77
|
+
"@storybook/addon-onboarding": "^10.2.6",
|
|
78
|
+
"@storybook/addon-vitest": "^10.2.6",
|
|
79
|
+
"@storybook/react-vite": "^10.2.6",
|
|
80
|
+
"@types/node": "^24.10.1",
|
|
81
|
+
"@types/react": "^19.2.5",
|
|
82
|
+
"@types/react-dom": "^19.2.3",
|
|
83
|
+
"@vitejs/plugin-react": "^5.1.1",
|
|
84
|
+
"@vitest/browser-playwright": "^4.0.18",
|
|
85
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
86
|
+
"autoprefixer": "^10.4.24",
|
|
87
|
+
"babel-plugin-react-compiler": "^1.0.0",
|
|
88
|
+
"eslint": "^9.39.1",
|
|
89
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
90
|
+
"eslint-plugin-react-refresh": "^0.4.24",
|
|
91
|
+
"glob": "^13.0.1",
|
|
92
|
+
"globals": "^16.5.0",
|
|
93
|
+
"husky": "^9.1.7",
|
|
94
|
+
"lint-staged": "^16.2.7",
|
|
95
|
+
"playwright": "^1.58.1",
|
|
96
|
+
"postcss": "^8.5.6",
|
|
97
|
+
"react": "^19.2.0",
|
|
98
|
+
"react-dom": "^19.2.0",
|
|
99
|
+
"storybook": "^10.2.6",
|
|
100
|
+
"tailwind-merge": "^3.0.1",
|
|
101
|
+
"tailwindcss": "^3.4.16",
|
|
102
|
+
"tailwindcss-animate": "^1.0.7",
|
|
103
|
+
"tsc-alias": "^1.8.17",
|
|
104
|
+
"typescript": "~5.6.2",
|
|
105
|
+
"typescript-eslint": "^8.46.4",
|
|
106
|
+
"vite": "^7.2.4",
|
|
107
|
+
"vite-plugin-dts": "^4.5.0",
|
|
108
|
+
"vitest": "^4.0.18"
|
|
109
|
+
}
|
|
110
|
+
}
|