@elysiajs/jwt 1.3.3 → 1.4.1

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 CHANGED
@@ -1,56 +1,57 @@
1
1
  {
2
- "name": "@elysiajs/jwt",
3
- "description": "Plugin for Elysia for using JWT Authentication",
4
- "version": "1.3.3",
5
- "author": {
6
- "name": "saltyAom",
7
- "url": "https://github.com/SaltyAom",
8
- "email": "saltyaom@gmail.com"
9
- },
10
- "repository": {
11
- "type": "git",
12
- "url": "https://github.com/elysiajs/elysia-jwt"
13
- },
14
- "main": "./dist/cjs/index.js",
15
- "module": "./dist/index.mjs",
16
- "types": "./dist/index.d.ts",
17
- "exports": {
18
- "./package.json": "./package.json",
19
- ".": {
20
- "types": "./dist/index.d.ts",
21
- "import": "./dist/index.mjs",
22
- "require": "./dist/cjs/index.js"
23
- }
24
- },
25
- "bugs": "https://github.com/elysiajs/elysia-jwt/issues",
26
- "homepage": "https://github.com/elysiajs/elysia-jwt",
27
- "keywords": [
28
- "elysia",
29
- "jwt",
30
- "auth",
31
- "authentication"
32
- ],
33
- "license": "MIT",
34
- "scripts": {
35
- "dev": "bun run --hot example/index.ts",
36
- "test": "bun test && npm run test:node",
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
- "build": "bun build.ts",
39
- "release": "npm run build && npm run test && npm publish --access public"
40
- },
41
- "dependencies": {
42
- "jose": "^6.0.11"
43
- },
44
- "devDependencies": {
45
- "@types/bun": "1.2.15",
46
- "@typescript-eslint/eslint-plugin": "^8.33.0",
47
- "@typescript-eslint/parser": "^8.33.0",
48
- "elysia": "^1.3.3",
49
- "eslint": "9.27.0",
50
- "tsup": "^8.5.0",
51
- "typescript": "^5.8.3"
52
- },
53
- "peerDependencies": {
54
- "elysia": ">= 1.3.0"
55
- }
2
+ "name": "@elysiajs/jwt",
3
+ "description": "Plugin for Elysia for using JWT Authentication",
4
+ "version": "1.4.1",
5
+ "author": {
6
+ "name": "saltyAom",
7
+ "url": "https://github.com/SaltyAom",
8
+ "email": "saltyaom@gmail.com"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/elysiajs/elysia-jwt"
13
+ },
14
+ "main": "./dist/cjs/index.js",
15
+ "module": "./dist/index.mjs",
16
+ "types": "./dist/index.d.ts",
17
+ "exports": {
18
+ "./package.json": "./package.json",
19
+ ".": {
20
+ "types": "./dist/index.d.ts",
21
+ "import": "./dist/index.mjs",
22
+ "require": "./dist/cjs/index.js"
23
+ }
24
+ },
25
+ "bugs": "https://github.com/elysiajs/elysia-jwt/issues",
26
+ "homepage": "https://github.com/elysiajs/elysia-jwt",
27
+ "keywords": [
28
+ "elysia",
29
+ "jwt",
30
+ "auth",
31
+ "authentication"
32
+ ],
33
+ "license": "MIT",
34
+ "scripts": {
35
+ "dev": "bun run --watch example/index.ts",
36
+ "test": "bun test && npm run test:node",
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
+ "build": "bun build.ts",
39
+ "release": "npm run build && npm run test && npm publish --access public"
40
+ },
41
+ "dependencies": {
42
+ "jose": "^6.0.11"
43
+ },
44
+ "devDependencies": {
45
+ "@types/bun": "1.2.15",
46
+ "@typescript-eslint/eslint-plugin": "^8.33.0",
47
+ "@typescript-eslint/parser": "^8.33.0",
48
+ "elysia": "1.4.27",
49
+ "eslint": "9.27.0",
50
+ "tsup": "^8.5.0",
51
+ "typescript": "^5.8.3",
52
+ "zod": "^4.3.6"
53
+ },
54
+ "peerDependencies": {
55
+ "elysia": ">= 1.4.27"
56
+ }
56
57
  }