@neuctra/authix 1.1.8 → 1.1.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 +15 -13
package/package.json
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neuctra/authix",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "Universal authentication SDK and UI components for React (
|
|
3
|
+
"version": "1.1.10",
|
|
4
|
+
"description": "Universal authentication SDK and UI components for React (v16–v19) with TailwindCSS.",
|
|
5
5
|
"author": "Taha Asif",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
8
|
-
"main": "./dist/
|
|
9
|
-
"module": "./dist/
|
|
8
|
+
"main": "./dist/neuctra-authix.umd.js",
|
|
9
|
+
"module": "./dist/neuctra-authix.es.js",
|
|
10
10
|
"types": "./dist/index.d.ts",
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
13
13
|
"types": "./dist/index.d.ts",
|
|
14
|
-
"import": "./dist/
|
|
15
|
-
"require": "./dist/
|
|
14
|
+
"import": "./dist/neuctra-authix.es.js",
|
|
15
|
+
"require": "./dist/neuctra-authix.umd.js"
|
|
16
16
|
},
|
|
17
17
|
"./react": {
|
|
18
18
|
"types": "./dist/react/index.d.ts",
|
|
19
19
|
"import": "./dist/react/index.es.js",
|
|
20
|
-
"require": "./dist/react/index.
|
|
20
|
+
"require": "./dist/react/index.umd.js"
|
|
21
21
|
},
|
|
22
22
|
"./sdk": {
|
|
23
23
|
"types": "./dist/sdk/index.d.ts",
|
|
24
24
|
"import": "./dist/sdk/index.es.js",
|
|
25
|
-
"require": "./dist/sdk/index.
|
|
25
|
+
"require": "./dist/sdk/index.umd.js"
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"files": [
|
|
@@ -30,14 +30,14 @@
|
|
|
30
30
|
],
|
|
31
31
|
"scripts": {
|
|
32
32
|
"dev": "vite",
|
|
33
|
-
"build": "npm run clean && vite build && tsc --emitDeclarationOnly",
|
|
34
33
|
"clean": "rimraf dist",
|
|
34
|
+
"build": "npm run clean && vite build && tsc --emitDeclarationOnly",
|
|
35
35
|
"preview": "vite preview",
|
|
36
36
|
"release": "npm publish --access public"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"react": ">=16.8.0",
|
|
40
|
-
"react-dom": ">=16.8.0"
|
|
39
|
+
"react": ">=16.8.0 <20",
|
|
40
|
+
"react-dom": ">=16.8.0 <20"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@tailwindcss/vite": "^4.1.13",
|
|
@@ -55,15 +55,17 @@
|
|
|
55
55
|
"rimraf": "^5.0.5"
|
|
56
56
|
},
|
|
57
57
|
"keywords": [
|
|
58
|
+
"neuctra",
|
|
59
|
+
"authix",
|
|
58
60
|
"ui-components",
|
|
59
61
|
"react",
|
|
60
62
|
"tailwind",
|
|
61
63
|
"vite",
|
|
62
64
|
"library",
|
|
63
|
-
"auth",
|
|
64
65
|
"authentication",
|
|
65
66
|
"jwt",
|
|
66
67
|
"otp",
|
|
67
|
-
"sdk"
|
|
68
|
+
"sdk",
|
|
69
|
+
"auth"
|
|
68
70
|
]
|
|
69
71
|
}
|