@nerdlat/auth
Version:
Authentication library similar to Clerk for React and Express applications
67 lines • 1.46 kB
JSON
{
"version": "1.0.3",
"description": "Authentication library similar to Clerk for React and Express applications",
"name": "@nerdlat/auth",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./server": {
"import": "./dist/server/index.js",
"require": "./dist/server/index.js",
"types": "./dist/server/index.d.ts"
}
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"keywords": [
"auth",
"nerd",
"clerk",
"authentication",
"login",
"jwt",
"react",
"express",
"typescript"
],
"author": "owellandry",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nerd-lat/"
},
"peerDependencies": {
"express": ">=4.0.0",
"react": ">=17.0.0"
},
"dependencies": {
"jsonwebtoken": "^9.0.2",
"react-router-dom": "^7.6.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.0",
"@types/react": "^19.1.8",
"express": "^5.1.0",
"react": "^19.1.0",
"typescript": "^5.4.5"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"test": "echo \"No tests specified yet\" && exit 0"
}
}