kroxt 1.3.8 → 1.3.9
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 +1 -0
- package/package.json +108 -109
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,109 +1,108 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "kroxt",
|
|
3
|
-
"version": "1.3.
|
|
4
|
-
"bin": {
|
|
5
|
-
"kroxt": "
|
|
6
|
-
},
|
|
7
|
-
"homepage": "https://kroxt.vercel.app",
|
|
8
|
-
"repository": {
|
|
9
|
-
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/adepoju-oluwatobi/kroxt.git"
|
|
11
|
-
},
|
|
12
|
-
"bugs": {
|
|
13
|
-
"url": "https://github.com/adepoju-oluwatobi/kroxt/issues"
|
|
14
|
-
},
|
|
15
|
-
"author": "Adepoju Oluwatobi <https://github.com/adepoju-oluwatobi>",
|
|
16
|
-
"keywords": [
|
|
17
|
-
"auth",
|
|
18
|
-
"authentication",
|
|
19
|
-
"headless-auth",
|
|
20
|
-
"typescript",
|
|
21
|
-
"security",
|
|
22
|
-
"session-management",
|
|
23
|
-
"token-rotation",
|
|
24
|
-
"argon2",
|
|
25
|
-
"zod",
|
|
26
|
-
"framework-agnostic",
|
|
27
|
-
"nextjs",
|
|
28
|
-
"hono",
|
|
29
|
-
"express",
|
|
30
|
-
"prisma-adapter",
|
|
31
|
-
"drizzle-adapter",
|
|
32
|
-
"mongoose-adapter"
|
|
33
|
-
],
|
|
34
|
-
"license": "MIT",
|
|
35
|
-
"description": "A framework-agnostic modular auth engine",
|
|
36
|
-
"type": "module",
|
|
37
|
-
"main": "./dist/index.cjs",
|
|
38
|
-
"module": "./dist/index.js",
|
|
39
|
-
"types": "./dist/index.d.ts",
|
|
40
|
-
"exports": {
|
|
41
|
-
".": {
|
|
42
|
-
"types": "./dist/index.d.ts",
|
|
43
|
-
"import": "./dist/index.js",
|
|
44
|
-
"require": "./dist/index.cjs"
|
|
45
|
-
},
|
|
46
|
-
"./adapter": {
|
|
47
|
-
"types": "./dist/auth/adapters/index.d.ts",
|
|
48
|
-
"import": "./dist/auth/adapters/index.js",
|
|
49
|
-
"require": "./dist/auth/adapters/index.cjs"
|
|
50
|
-
},
|
|
51
|
-
"./core": {
|
|
52
|
-
"types": "./dist/auth/core/index.d.ts",
|
|
53
|
-
"import": "./dist/auth/core/index.js",
|
|
54
|
-
"require": "./dist/auth/core/index.cjs"
|
|
55
|
-
},
|
|
56
|
-
"./providers": {
|
|
57
|
-
"types": "./dist/auth/providers/index.d.ts",
|
|
58
|
-
"import": "./dist/auth/providers/index.js",
|
|
59
|
-
"require": "./dist/auth/providers/index.cjs"
|
|
60
|
-
},
|
|
61
|
-
"./adapters/memory": {
|
|
62
|
-
"types": "./dist/auth/adapters/memory.d.ts",
|
|
63
|
-
"import": "./dist/auth/adapters/memory.js",
|
|
64
|
-
"require": "./dist/auth/adapters/memory.cjs"
|
|
65
|
-
},
|
|
66
|
-
"./adapters/mongoose": {
|
|
67
|
-
"types": "./dist/auth/adapters/mongoose.d.ts",
|
|
68
|
-
"import": "./dist/auth/adapters/mongoose.js",
|
|
69
|
-
"require": "./dist/auth/adapters/mongoose.cjs"
|
|
70
|
-
},
|
|
71
|
-
"./adapters/drizzle": {
|
|
72
|
-
"types": "./dist/auth/adapters/drizzle.d.ts",
|
|
73
|
-
"import": "./dist/auth/adapters/drizzle.js",
|
|
74
|
-
"require": "./dist/auth/adapters/drizzle.cjs"
|
|
75
|
-
},
|
|
76
|
-
"./adapters/prisma": {
|
|
77
|
-
"types": "./dist/auth/adapters/prisma.d.ts",
|
|
78
|
-
"import": "./dist/auth/adapters/prisma.js",
|
|
79
|
-
"require": "./dist/auth/adapters/prisma.cjs"
|
|
80
|
-
},
|
|
81
|
-
"./security": {
|
|
82
|
-
"types": "./dist/auth/security/index.d.ts",
|
|
83
|
-
"import": "./dist/auth/security/index.js",
|
|
84
|
-
"require": "./dist/auth/security/index.cjs"
|
|
85
|
-
}
|
|
86
|
-
},
|
|
87
|
-
"files": [
|
|
88
|
-
"dist"
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "kroxt",
|
|
3
|
+
"version": "1.3.9",
|
|
4
|
+
"bin": {
|
|
5
|
+
"kroxt": "dist/cli/index.js"
|
|
6
|
+
},
|
|
7
|
+
"homepage": "https://kroxt.vercel.app",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/adepoju-oluwatobi/kroxt.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/adepoju-oluwatobi/kroxt/issues"
|
|
14
|
+
},
|
|
15
|
+
"author": "Adepoju Oluwatobi <https://github.com/adepoju-oluwatobi>",
|
|
16
|
+
"keywords": [
|
|
17
|
+
"auth",
|
|
18
|
+
"authentication",
|
|
19
|
+
"headless-auth",
|
|
20
|
+
"typescript",
|
|
21
|
+
"security",
|
|
22
|
+
"session-management",
|
|
23
|
+
"token-rotation",
|
|
24
|
+
"argon2",
|
|
25
|
+
"zod",
|
|
26
|
+
"framework-agnostic",
|
|
27
|
+
"nextjs",
|
|
28
|
+
"hono",
|
|
29
|
+
"express",
|
|
30
|
+
"prisma-adapter",
|
|
31
|
+
"drizzle-adapter",
|
|
32
|
+
"mongoose-adapter"
|
|
33
|
+
],
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"description": "A framework-agnostic modular auth engine",
|
|
36
|
+
"type": "module",
|
|
37
|
+
"main": "./dist/index.cjs",
|
|
38
|
+
"module": "./dist/index.js",
|
|
39
|
+
"types": "./dist/index.d.ts",
|
|
40
|
+
"exports": {
|
|
41
|
+
".": {
|
|
42
|
+
"types": "./dist/index.d.ts",
|
|
43
|
+
"import": "./dist/index.js",
|
|
44
|
+
"require": "./dist/index.cjs"
|
|
45
|
+
},
|
|
46
|
+
"./adapter": {
|
|
47
|
+
"types": "./dist/auth/adapters/index.d.ts",
|
|
48
|
+
"import": "./dist/auth/adapters/index.js",
|
|
49
|
+
"require": "./dist/auth/adapters/index.cjs"
|
|
50
|
+
},
|
|
51
|
+
"./core": {
|
|
52
|
+
"types": "./dist/auth/core/index.d.ts",
|
|
53
|
+
"import": "./dist/auth/core/index.js",
|
|
54
|
+
"require": "./dist/auth/core/index.cjs"
|
|
55
|
+
},
|
|
56
|
+
"./providers": {
|
|
57
|
+
"types": "./dist/auth/providers/index.d.ts",
|
|
58
|
+
"import": "./dist/auth/providers/index.js",
|
|
59
|
+
"require": "./dist/auth/providers/index.cjs"
|
|
60
|
+
},
|
|
61
|
+
"./adapters/memory": {
|
|
62
|
+
"types": "./dist/auth/adapters/memory.d.ts",
|
|
63
|
+
"import": "./dist/auth/adapters/memory.js",
|
|
64
|
+
"require": "./dist/auth/adapters/memory.cjs"
|
|
65
|
+
},
|
|
66
|
+
"./adapters/mongoose": {
|
|
67
|
+
"types": "./dist/auth/adapters/mongoose.d.ts",
|
|
68
|
+
"import": "./dist/auth/adapters/mongoose.js",
|
|
69
|
+
"require": "./dist/auth/adapters/mongoose.cjs"
|
|
70
|
+
},
|
|
71
|
+
"./adapters/drizzle": {
|
|
72
|
+
"types": "./dist/auth/adapters/drizzle.d.ts",
|
|
73
|
+
"import": "./dist/auth/adapters/drizzle.js",
|
|
74
|
+
"require": "./dist/auth/adapters/drizzle.cjs"
|
|
75
|
+
},
|
|
76
|
+
"./adapters/prisma": {
|
|
77
|
+
"types": "./dist/auth/adapters/prisma.d.ts",
|
|
78
|
+
"import": "./dist/auth/adapters/prisma.js",
|
|
79
|
+
"require": "./dist/auth/adapters/prisma.cjs"
|
|
80
|
+
},
|
|
81
|
+
"./security": {
|
|
82
|
+
"types": "./dist/auth/security/index.d.ts",
|
|
83
|
+
"import": "./dist/auth/security/index.js",
|
|
84
|
+
"require": "./dist/auth/security/index.cjs"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"files": [
|
|
88
|
+
"dist"
|
|
89
|
+
],
|
|
90
|
+
"scripts": {
|
|
91
|
+
"build": "node build.js"
|
|
92
|
+
},
|
|
93
|
+
"dependencies": {
|
|
94
|
+
"arctic": "^3.7.0",
|
|
95
|
+
"argon2": "^0.44.0",
|
|
96
|
+
"chalk": "^5.6.2",
|
|
97
|
+
"commander": "^14.0.3",
|
|
98
|
+
"enquirer": "^2.4.1",
|
|
99
|
+
"jose": "^6.2.1",
|
|
100
|
+
"zod": "^3.23.8"
|
|
101
|
+
},
|
|
102
|
+
"devDependencies": {
|
|
103
|
+
"@types/node": "^25.5.0",
|
|
104
|
+
"esbuild": "^0.27.4",
|
|
105
|
+
"tsup": "^8.5.1",
|
|
106
|
+
"typescript": "^5.9.3"
|
|
107
|
+
}
|
|
108
|
+
}
|