@elysiajs/jwt 1.0.0 → 1.0.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.
Files changed (1) hide show
  1. package/package.json +54 -54
package/package.json CHANGED
@@ -1,56 +1,56 @@
1
1
  {
2
- "name": "@elysiajs/jwt",
3
- "description": "Plugin for Elysia for using JWT Authentication",
4
- "version": "1.0.0",
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/index.js",
15
- "exports": {
16
- "bun": "./dist/index.js",
17
- "node": "./dist/cjs/index.js",
18
- "require": "./dist/cjs/index.js",
19
- "import": "./dist/index.js",
20
- "default": "./dist/index.js"
21
- },
22
- "types": "./dist/index.d.ts",
23
- "bugs": "https://github.com/elysiajs/elysia-jwt/issues",
24
- "homepage": "https://github.com/elysiajs/elysia-jwt",
25
- "keywords": [
26
- "elysia",
27
- "jwt",
28
- "auth",
29
- "authentication"
30
- ],
31
- "license": "MIT",
32
- "scripts": {
33
- "dev": "bun run --hot example/index.ts",
34
- "test": "bun test && npm run test:node",
35
- "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",
36
- "build": "rimraf dist && tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json",
37
- "release": "npm run build && npm run test && npm publish --access public"
38
- },
39
- "dependencies": {
40
- "jose": "^4.14.4"
41
- },
42
- "devDependencies": {
43
- "@elysiajs/cookie": "^0.3.0",
44
- "@types/bun": "^1.0.4",
45
- "@types/node": "^20.1.4",
46
- "@typescript-eslint/eslint-plugin": "^6.6.0",
47
- "@typescript-eslint/parser": "^6.6.0",
48
- "elysia": "1.0.0",
49
- "eslint": "^8.40.0",
50
- "rimraf": "4.3",
51
- "typescript": "^5.1.6"
52
- },
53
- "peerDependencies": {
54
- "elysia": ">= 1.0.0"
55
- }
2
+ "name": "@elysiajs/jwt",
3
+ "description": "Plugin for Elysia for using JWT Authentication",
4
+ "version": "1.0.2",
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/index.js",
15
+ "exports": {
16
+ "bun": "./dist/index.js",
17
+ "node": "./dist/cjs/index.js",
18
+ "require": "./dist/cjs/index.js",
19
+ "import": "./dist/index.js",
20
+ "default": "./dist/index.js"
21
+ },
22
+ "types": "./dist/index.d.ts",
23
+ "bugs": "https://github.com/elysiajs/elysia-jwt/issues",
24
+ "homepage": "https://github.com/elysiajs/elysia-jwt",
25
+ "keywords": [
26
+ "elysia",
27
+ "jwt",
28
+ "auth",
29
+ "authentication"
30
+ ],
31
+ "license": "MIT",
32
+ "scripts": {
33
+ "dev": "bun run --hot example/index.ts",
34
+ "test": "bun test && npm run test:node",
35
+ "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",
36
+ "build": "rimraf dist && tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json",
37
+ "release": "npm run build && npm run test && npm publish --access public"
38
+ },
39
+ "dependencies": {
40
+ "jose": "^4.14.4"
41
+ },
42
+ "devDependencies": {
43
+ "@elysiajs/cookie": "^0.3.0",
44
+ "@types/bun": "^1.0.4",
45
+ "@types/node": "^20.1.4",
46
+ "@typescript-eslint/eslint-plugin": "^6.6.0",
47
+ "@typescript-eslint/parser": "^6.6.0",
48
+ "elysia": "1.0.2",
49
+ "eslint": "^8.40.0",
50
+ "rimraf": "4.3",
51
+ "typescript": "^5.1.6"
52
+ },
53
+ "peerDependencies": {
54
+ "elysia": ">= 1.0.2"
55
+ }
56
56
  }