-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 967 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "lazy-webtoken",
"version": "1.1.37",
"main": "dist/index.js",
"scripts": {
"dev:build": "npx enmav --update-version && rm -rf dist && tsc",
"build:release": "rm -rf dist && npx enmav --update-version && tsc && npm publish --access=public"
},
"author": "permaficus <abukhalif2019@gmail.com>",
"license": "MIT",
"description": "Authentication and Refresh Token generator for WebApp",
"files": [
"dist",
"package.json",
"licence.md",
"README.md"
],
"keywords": [
"JWT Token",
"Authorization Token",
"Refresh Token",
"Cookies Token",
"User Session"
],
"bugs": {
"url": "https://github.com/permaficus/WebToken/issues"
},
"homepage": "https://github.com/permaficus/WebToken#readme",
"devDependencies": {
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.9",
"enmav": "^0.7.12"
},
"dependencies": {
"jsonwebtoken": "^9.0.2",
"typescript": "^5.5.2"
}
}