|
| 1 | +{ |
| 2 | + "name": "@palmares/jwt-auth", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "A robust and versatile JWT authentication module designed for seamless integration with Palmares applications", |
| 5 | + "main": "./dist/src/index.cjs", |
| 6 | + "module": "./dist/src/index.js", |
| 7 | + "types": "./dist/src/index.d.ts", |
| 8 | + "files": [ |
| 9 | + "dist", |
| 10 | + "package.json", |
| 11 | + "README.md", |
| 12 | + "CHANGELOG.md" |
| 13 | + ], |
| 14 | + "exports": { |
| 15 | + ".": { |
| 16 | + "types": "./dist/src/index.d.ts", |
| 17 | + "import": "./dist/src/index.js", |
| 18 | + "require": "./dist/src/index.cjs" |
| 19 | + } |
| 20 | + }, |
| 21 | + "scripts": { |
| 22 | + "clear": "rimraf ./dist", |
| 23 | + "build:types": "tsc --project tsconfig.types.json", |
| 24 | + "build:cjs:esm": "tsup ./src --out-dir ./dist/src --format cjs,esm --silent --no-splitting", |
| 25 | + "build": "pnpm run clear && pnpm run build:cjs:esm && pnpm run build:types", |
| 26 | + "build:types:watch": "tsc --project tsconfig.types.json --watch --preserveWatchOutput", |
| 27 | + "build:cjs:esm:watch": "tsup ./src --out-dir ./dist/src --format cjs,esm --watch --silent --no-splitting", |
| 28 | + "build:watch": "pnpm run build:types:watch & pnpm run build:cjs:esm:watch" |
| 29 | + }, |
| 30 | + "repository": { |
| 31 | + "type": "git", |
| 32 | + "url": "git+https://github.com/palmaresHQ/palmares.git" |
| 33 | + }, |
| 34 | + "keywords": [ |
| 35 | + "palmares", |
| 36 | + "jwt", |
| 37 | + "authentication" |
| 38 | + ], |
| 39 | + "type": "module", |
| 40 | + "author": "Vicente Sanchez", |
| 41 | + "license": "MIT", |
| 42 | + "bugs": { |
| 43 | + "url": "https://github.com/palmaresHQ/palmares/issues" |
| 44 | + }, |
| 45 | + "homepage": "https://github.com/palmaresHQ/palmares#readme", |
| 46 | + "dependencies": { |
| 47 | + "@palmares/auth": "workspace:*", |
| 48 | + "@palmares/core": "workspace:*", |
| 49 | + "@palmares/events": "workspace:*", |
| 50 | + "@palmares/logging": "workspace:*" |
| 51 | + }, |
| 52 | + "peerDependencies": { |
| 53 | + "jose": "^6.0.8", |
| 54 | + "jsonwebtoken": "^9.0.2" |
| 55 | + }, |
| 56 | + "devDependencies": { |
| 57 | + "@types/jsonwebtoken": "^9.0.9" |
| 58 | + } |
| 59 | +} |
0 commit comments