1
0
Files
cloudflare-worker-jwt/package.json

43 lines
1.1 KiB
JSON

{
"name": "@tsndr/cloudflare-worker-jwt",
"version": "2.4.3",
"description": "A lightweight JWT implementation with ZERO dependencies for Cloudflare Worker",
"type": "module",
"exports": "./index.js",
"types": "index.d.ts",
"engine": {
"node": ">=18"
},
"scripts": {
"build": "esbuild src/index.ts --bundle --outfile=index.js && tsc --emitDeclarationOnly",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsndr/cloudflare-worker-jwt.git"
},
"keywords": [
"jwt",
"token",
"cloudflare",
"worker",
"cloudflare-worker"
],
"author": "Tobias Schneider",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsndr/cloudflare-worker-jwt/issues"
},
"homepage": "https://github.com/tsndr/cloudflare-worker-jwt#readme",
"devDependencies": {
"@cloudflare/workers-types": "^4.20240129.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.14",
"esbuild": "^0.20.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}