@elysiajs/jwt 1.4.0 → 1.4.2
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 +32 -106
- package/bun.lock +78 -132
- package/dist/cjs/index.d.ts +11 -7
- package/dist/cjs/index.js +18 -2640
- package/dist/index.d.ts +11 -7
- package/dist/index.mjs +19 -2651
- package/package.json +8 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elysiajs/jwt",
|
|
3
|
-
"description": "
|
|
4
|
-
"version": "1.4.
|
|
3
|
+
"description": "Elysia plugin to integrate JSON Web Tokens (JWT)",
|
|
4
|
+
"version": "1.4.2",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "saltyAom",
|
|
7
7
|
"url": "https://github.com/SaltyAom",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
],
|
|
33
33
|
"license": "MIT",
|
|
34
34
|
"scripts": {
|
|
35
|
-
"dev": "bun run --
|
|
35
|
+
"dev": "bun run --watch example/index.ts",
|
|
36
36
|
"test": "bun test && npm run test:node",
|
|
37
37
|
"test:node": "npm install --prefix ./test/node/cjs/ && npm install --prefix ./test/node/esm/ && node ./test/node/cjs/index.js && node ./test/node/esm/index.js",
|
|
38
38
|
"build": "bun build.ts",
|
|
@@ -45,12 +45,13 @@
|
|
|
45
45
|
"@types/bun": "1.2.15",
|
|
46
46
|
"@typescript-eslint/eslint-plugin": "^8.33.0",
|
|
47
47
|
"@typescript-eslint/parser": "^8.33.0",
|
|
48
|
-
"elysia": "1.4.
|
|
48
|
+
"elysia": "1.4.27",
|
|
49
49
|
"eslint": "9.27.0",
|
|
50
50
|
"tsup": "^8.5.0",
|
|
51
|
-
"typescript": "^5.8.3"
|
|
51
|
+
"typescript": "^5.8.3",
|
|
52
|
+
"zod": "^4.3.6"
|
|
52
53
|
},
|
|
53
54
|
"peerDependencies": {
|
|
54
|
-
"elysia": ">= 1.4.
|
|
55
|
+
"elysia": ">= 1.4.27"
|
|
55
56
|
}
|
|
56
|
-
}
|
|
57
|
+
}
|