mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-16 14:06:49 +01:00
24 lines
559 B
JSON
24 lines
559 B
JSON
{
|
|
"name": "@yaak/auth-jwt",
|
|
"displayName": "JSON Web Tokens",
|
|
"description": "Authenticate requests using JSON web tokens (JWT)",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/mountain-loop/yaak.git",
|
|
"directory": "plugins/auth-jwt"
|
|
},
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"scripts": {
|
|
"build": "yaakcli build",
|
|
"dev": "yaakcli dev",
|
|
"lint":"tsc --noEmit && eslint . --ext .ts,.tsx"
|
|
},
|
|
"dependencies": {
|
|
"jsonwebtoken": "^9.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jsonwebtoken": "^9.0.7"
|
|
}
|
|
}
|