azirid-react 0.6.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/README.md +1311 -0
- package/dist/index.cjs +3333 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +1570 -0
- package/dist/index.d.ts +1570 -0
- package/dist/index.js +3275 -0
- package/dist/index.js.map +1 -0
- package/dist/next.cjs +189 -0
- package/dist/next.cjs.map +1 -0
- package/dist/next.d.cts +180 -0
- package/dist/next.d.ts +180 -0
- package/dist/next.js +175 -0
- package/dist/next.js.map +1 -0
- package/dist/server.cjs +58 -0
- package/dist/server.cjs.map +1 -0
- package/dist/server.d.cts +102 -0
- package/dist/server.d.ts +102 -0
- package/dist/server.js +55 -0
- package/dist/server.js.map +1 -0
- package/dist/styles.css +2 -0
- package/package.json +114 -0
package/package.json
ADDED
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "azirid-react",
|
|
3
|
+
"version": "0.6.0",
|
|
4
|
+
"description": "Authentication components for React and Next.js — Login, Register, powered by TanStack Query and Zod.",
|
|
5
|
+
"author": "Azirid",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/azirgo-company/azirid-react.git",
|
|
10
|
+
"directory": "packages/access"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/azirgo-company/azirid-react#readme",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/azirgo-company/azirid-react/issues"
|
|
15
|
+
},
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"react",
|
|
21
|
+
"nextjs",
|
|
22
|
+
"auth",
|
|
23
|
+
"login",
|
|
24
|
+
"register",
|
|
25
|
+
"authentication",
|
|
26
|
+
"components",
|
|
27
|
+
"tailwindcss",
|
|
28
|
+
"tanstack-query",
|
|
29
|
+
"zod",
|
|
30
|
+
"server-actions"
|
|
31
|
+
],
|
|
32
|
+
"sideEffects": [
|
|
33
|
+
"*.css"
|
|
34
|
+
],
|
|
35
|
+
"type": "module",
|
|
36
|
+
"main": "./dist/index.cjs",
|
|
37
|
+
"module": "./dist/index.js",
|
|
38
|
+
"types": "./dist/index.d.ts",
|
|
39
|
+
"exports": {
|
|
40
|
+
".": {
|
|
41
|
+
"import": {
|
|
42
|
+
"types": "./dist/index.d.ts",
|
|
43
|
+
"default": "./dist/index.js"
|
|
44
|
+
},
|
|
45
|
+
"require": {
|
|
46
|
+
"types": "./dist/index.d.cts",
|
|
47
|
+
"default": "./dist/index.cjs"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"./server": {
|
|
51
|
+
"import": {
|
|
52
|
+
"types": "./dist/server.d.ts",
|
|
53
|
+
"default": "./dist/server.js"
|
|
54
|
+
},
|
|
55
|
+
"require": {
|
|
56
|
+
"types": "./dist/server.d.cts",
|
|
57
|
+
"default": "./dist/server.cjs"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"./next": {
|
|
61
|
+
"import": {
|
|
62
|
+
"types": "./dist/next.d.ts",
|
|
63
|
+
"default": "./dist/next.js"
|
|
64
|
+
},
|
|
65
|
+
"require": {
|
|
66
|
+
"types": "./dist/next.d.cts",
|
|
67
|
+
"default": "./dist/next.cjs"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"./styles.css": "./dist/styles.css"
|
|
71
|
+
},
|
|
72
|
+
"files": [
|
|
73
|
+
"dist",
|
|
74
|
+
"README.md"
|
|
75
|
+
],
|
|
76
|
+
"scripts": {
|
|
77
|
+
"build": "node scripts/build-styles.mjs && tsup && cp src/styles/compiled.css dist/styles.css",
|
|
78
|
+
"dev": "tsup --watch",
|
|
79
|
+
"lint": "tsc --noEmit",
|
|
80
|
+
"clean": "rm -rf dist"
|
|
81
|
+
},
|
|
82
|
+
"peerDependencies": {
|
|
83
|
+
"@tanstack/react-query": ">=5.0.0",
|
|
84
|
+
"next": ">=14.0.0",
|
|
85
|
+
"react": ">=18.0.0 || >=19.0.0",
|
|
86
|
+
"react-dom": ">=18.0.0 || >=19.0.0"
|
|
87
|
+
},
|
|
88
|
+
"peerDependenciesMeta": {
|
|
89
|
+
"next": {
|
|
90
|
+
"optional": true
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"dependencies": {
|
|
94
|
+
"@hookform/resolvers": "^4.1.3",
|
|
95
|
+
"class-variance-authority": "^0.7.1",
|
|
96
|
+
"clsx": "^2.1.0",
|
|
97
|
+
"radix-ui": "^1.4.3",
|
|
98
|
+
"react-hook-form": "^7.71.2",
|
|
99
|
+
"tailwind-merge": "^2.3.0",
|
|
100
|
+
"zod": "^3.23.0"
|
|
101
|
+
},
|
|
102
|
+
"devDependencies": {
|
|
103
|
+
"@azirid/typescript-config": "workspace:*",
|
|
104
|
+
"@tailwindcss/cli": "^4.2.1",
|
|
105
|
+
"@tanstack/react-query": "^5.60.0",
|
|
106
|
+
"@types/react": "^19.0.0",
|
|
107
|
+
"@types/react-dom": "^19.0.0",
|
|
108
|
+
"react": "^19.0.0",
|
|
109
|
+
"react-dom": "^19.0.0",
|
|
110
|
+
"tailwindcss": "^4.2.1",
|
|
111
|
+
"tsup": "^8.0.0",
|
|
112
|
+
"typescript": "^5.5.0"
|
|
113
|
+
}
|
|
114
|
+
}
|