Commit 3e403ca2 by Percy Quispe Huarcaya

feat: Adding token creator and a parser

parent 25b8aab1
......@@ -13,7 +13,8 @@
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"jest": "^29.7.0"
"jest": "^29.7.0",
"typescript": "^5.6.3"
}
},
"node_modules/@ampproject/remapping": {
......@@ -3430,6 +3431,19 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/typescript": {
"version": "5.6.3",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz",
"integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==",
"dev": true,
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
},
"engines": {
"node": ">=14.17"
}
},
"node_modules/undici-types": {
"version": "6.19.8",
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz",
......
......@@ -4,9 +4,12 @@
"description": "Library to manage tokens using js",
"main": "index.d.ts",
"types": "index.d.ts",
"files": ["index.d.ts"],
"files": [
"index.d.ts"
],
"scripts": {
"test": "jest"
"test": "jest",
"build": "tsc"
},
"keywords": [],
"author": "",
......@@ -16,6 +19,7 @@
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"jest": "^29.7.0"
}
"jest": "^29.7.0",
"typescript": "^5.6.3"
}
}
This diff is collapsed. Click to expand it.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment