32 lines
653 B
JSON
32 lines
653 B
JSON
{
|
|
"name": "@workspace/shared-auth",
|
|
"version": "1.0.0",
|
|
"description": "Shared authentication and authorization utilities",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "vitest",
|
|
"lint": "eslint src",
|
|
"type-check": "tsc --noEmit",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"jsonwebtoken": "^9.0.2",
|
|
"bcryptjs": "^2.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.5.4",
|
|
"@types/jsonwebtoken": "^9.0.4",
|
|
"@types/bcryptjs": "^2.4.6",
|
|
"vitest": "^1.2.0"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"publishConfig": {
|
|
"access": "restricted"
|
|
}
|
|
}
|
|
|