jwt/package.json

28 lines
463 B
JSON
Raw Normal View History

2020-09-17 19:11:10 +08:00
{
"name": "@gm5/jwt",
2025-01-06 10:56:51 +08:00
"version": "3.0.1",
2020-09-17 19:11:10 +08:00
"type": "module",
2020-09-18 14:45:42 +08:00
"description": "json web token",
2020-09-17 19:11:10 +08:00
"main": "index.js",
2025-01-02 12:13:27 +08:00
"types": "index.d.ts",
2020-09-17 19:11:10 +08:00
"author": "yutent",
2023-10-31 18:37:08 +08:00
"keywords": [
"fivejs",
"gm5",
"jwt",
"http",
"json_web_token"
],
2025-01-06 10:56:51 +08:00
"repository": {
"type": "git",
"url": "https://git.wkit.fun/gm5/jwt.git"
},
2020-09-17 19:11:10 +08:00
"license": "MIT",
"dependencies": {
2025-01-06 10:53:20 +08:00
"crypto.js": "^3.3.4"
2025-01-06 10:56:51 +08:00
},
"engines": {
"node": ">=16.0.0"
2020-09-17 19:11:10 +08:00
}
}