najm-auth 1.1.12 → 1.1.13
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 +86 -86
package/package.json
CHANGED
|
@@ -1,86 +1,86 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "najm-auth",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "Authentication and authorization library for najm framework",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"files": [
|
|
7
|
-
"dist"
|
|
8
|
-
],
|
|
9
|
-
"main": "./dist/index.js",
|
|
10
|
-
"types": "./dist/index.d.ts",
|
|
11
|
-
"exports": {
|
|
12
|
-
".": {
|
|
13
|
-
"types": "./dist/index.d.ts",
|
|
14
|
-
"import": "./dist/index.js",
|
|
15
|
-
"default": "./dist/index.js"
|
|
16
|
-
},
|
|
17
|
-
"./pg": {
|
|
18
|
-
"types": "./dist/schema/pg.d.ts",
|
|
19
|
-
"import": "./dist/schema/pg.js",
|
|
20
|
-
"default": "./dist/schema/pg.js"
|
|
21
|
-
},
|
|
22
|
-
"./sqlite": {
|
|
23
|
-
"types": "./dist/schema/sqlite.d.ts",
|
|
24
|
-
"import": "./dist/schema/sqlite.js",
|
|
25
|
-
"default": "./dist/schema/sqlite.js"
|
|
26
|
-
},
|
|
27
|
-
"./mysql": {
|
|
28
|
-
"types": "./dist/schema/mysql.d.ts",
|
|
29
|
-
"import": "./dist/schema/mysql.js",
|
|
30
|
-
"default": "./dist/schema/mysql.js"
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
|
-
"scripts": {
|
|
34
|
-
"build": "tsup",
|
|
35
|
-
"test": "bun test",
|
|
36
|
-
"test:watch": "bun test --watch",
|
|
37
|
-
"start": "bun --watch src/main.ts",
|
|
38
|
-
"clean": "rimraf dist tsconfig.tsbuildinfo"
|
|
39
|
-
},
|
|
40
|
-
"keywords": [
|
|
41
|
-
"authentication",
|
|
42
|
-
"authorization",
|
|
43
|
-
"jwt",
|
|
44
|
-
"oauth",
|
|
45
|
-
"session",
|
|
46
|
-
"decorators",
|
|
47
|
-
"typescript"
|
|
48
|
-
],
|
|
49
|
-
"author": "",
|
|
50
|
-
"license": "MIT",
|
|
51
|
-
"devDependencies": {
|
|
52
|
-
"@types/bcryptjs": "^3.0.0",
|
|
53
|
-
"@types/jsonwebtoken": "^9.0.10",
|
|
54
|
-
"@types/node": "^25.0.2",
|
|
55
|
-
"drizzle-kit": "^0.31.8",
|
|
56
|
-
"drizzle-orm": "^0.45.1",
|
|
57
|
-
"tsup": "^8.5.1",
|
|
58
|
-
"typescript": "^5.9.3"
|
|
59
|
-
},
|
|
60
|
-
"dependencies": {
|
|
61
|
-
"najm-cookies": "
|
|
62
|
-
"najm-core": "
|
|
63
|
-
"najm-database": "
|
|
64
|
-
"najm-guard": "
|
|
65
|
-
"najm-i18n": "
|
|
66
|
-
"najm-cache": "
|
|
67
|
-
"najm-email": "
|
|
68
|
-
"najm-rate": "
|
|
69
|
-
"najm-validation": "
|
|
70
|
-
"bcryptjs": "^3.0.3",
|
|
71
|
-
"hono": "^4.0.0",
|
|
72
|
-
"jsonwebtoken": "^9.0.3",
|
|
73
|
-
"jwt-decode": "^4.0.0",
|
|
74
|
-
"lodash.isempty": "^4.4.0",
|
|
75
|
-
"nanoid": "^5.1.6",
|
|
76
|
-
"pino": "^10.1.0",
|
|
77
|
-
"postgres": "^3.4.7",
|
|
78
|
-
"reflect-metadata": "^0.2.2",
|
|
79
|
-
"timestring": "^7.0.0",
|
|
80
|
-
"zod": "^4.2.1"
|
|
81
|
-
},
|
|
82
|
-
"peerDependencies": {
|
|
83
|
-
"drizzle-orm": "^0.45.1",
|
|
84
|
-
"hono": "^4.0.0"
|
|
85
|
-
}
|
|
86
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "najm-auth",
|
|
3
|
+
"version": "1.1.13",
|
|
4
|
+
"description": "Authentication and authorization library for najm framework",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"main": "./dist/index.js",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.js",
|
|
15
|
+
"default": "./dist/index.js"
|
|
16
|
+
},
|
|
17
|
+
"./pg": {
|
|
18
|
+
"types": "./dist/schema/pg.d.ts",
|
|
19
|
+
"import": "./dist/schema/pg.js",
|
|
20
|
+
"default": "./dist/schema/pg.js"
|
|
21
|
+
},
|
|
22
|
+
"./sqlite": {
|
|
23
|
+
"types": "./dist/schema/sqlite.d.ts",
|
|
24
|
+
"import": "./dist/schema/sqlite.js",
|
|
25
|
+
"default": "./dist/schema/sqlite.js"
|
|
26
|
+
},
|
|
27
|
+
"./mysql": {
|
|
28
|
+
"types": "./dist/schema/mysql.d.ts",
|
|
29
|
+
"import": "./dist/schema/mysql.js",
|
|
30
|
+
"default": "./dist/schema/mysql.js"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"scripts": {
|
|
34
|
+
"build": "tsup",
|
|
35
|
+
"test": "bun test",
|
|
36
|
+
"test:watch": "bun test --watch",
|
|
37
|
+
"start": "bun --watch src/main.ts",
|
|
38
|
+
"clean": "rimraf dist tsconfig.tsbuildinfo"
|
|
39
|
+
},
|
|
40
|
+
"keywords": [
|
|
41
|
+
"authentication",
|
|
42
|
+
"authorization",
|
|
43
|
+
"jwt",
|
|
44
|
+
"oauth",
|
|
45
|
+
"session",
|
|
46
|
+
"decorators",
|
|
47
|
+
"typescript"
|
|
48
|
+
],
|
|
49
|
+
"author": "",
|
|
50
|
+
"license": "MIT",
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@types/bcryptjs": "^3.0.0",
|
|
53
|
+
"@types/jsonwebtoken": "^9.0.10",
|
|
54
|
+
"@types/node": "^25.0.2",
|
|
55
|
+
"drizzle-kit": "^0.31.8",
|
|
56
|
+
"drizzle-orm": "^0.45.1",
|
|
57
|
+
"tsup": "^8.5.1",
|
|
58
|
+
"typescript": "^5.9.3"
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"najm-cookies": "^1.1.4",
|
|
62
|
+
"najm-core": "^1.2.1",
|
|
63
|
+
"najm-database": "^1.1.5",
|
|
64
|
+
"najm-guard": "^1.1.4",
|
|
65
|
+
"najm-i18n": "^1.1.4",
|
|
66
|
+
"najm-cache": "^1.2.1",
|
|
67
|
+
"najm-email": "^1.1.4",
|
|
68
|
+
"najm-rate": "^1.1.4",
|
|
69
|
+
"najm-validation": "^1.1.4",
|
|
70
|
+
"bcryptjs": "^3.0.3",
|
|
71
|
+
"hono": "^4.0.0",
|
|
72
|
+
"jsonwebtoken": "^9.0.3",
|
|
73
|
+
"jwt-decode": "^4.0.0",
|
|
74
|
+
"lodash.isempty": "^4.4.0",
|
|
75
|
+
"nanoid": "^5.1.6",
|
|
76
|
+
"pino": "^10.1.0",
|
|
77
|
+
"postgres": "^3.4.7",
|
|
78
|
+
"reflect-metadata": "^0.2.2",
|
|
79
|
+
"timestring": "^7.0.0",
|
|
80
|
+
"zod": "^4.2.1"
|
|
81
|
+
},
|
|
82
|
+
"peerDependencies": {
|
|
83
|
+
"drizzle-orm": "^0.45.1",
|
|
84
|
+
"hono": "^4.0.0"
|
|
85
|
+
}
|
|
86
|
+
}
|