* Version Packages * pnpm lock fix --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Siddharth Suresh <siddh.suresh@gmail.com>
92 lines
2.2 KiB
JSON
92 lines
2.2 KiB
JSON
{
|
|
"name": "@blitzjs/auth",
|
|
"version": "2.0.7",
|
|
"homepage": "https://blitzjs.com/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/blitz-js/blitz.git"
|
|
},
|
|
"scripts": {
|
|
"build": "unbuild",
|
|
"predev": "wait-on -d 250 ../blitz/dist/index-server.d.ts",
|
|
"dev": "rm -rf dist && pnpm run predev && watch unbuild src --wait=0.2",
|
|
"lint": "eslint . --fix",
|
|
"test": "vitest run",
|
|
"test-watch": "vitest",
|
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
|
|
},
|
|
"main": "./dist/index-server.cjs",
|
|
"module": "./dist/index-server.mjs",
|
|
"browser": "./dist/index-browser.mjs",
|
|
"types": "./dist/index-server.d.ts",
|
|
"sideEffects": false,
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist/**",
|
|
"secure-password.*",
|
|
"next-auth.*"
|
|
],
|
|
"dependencies": {
|
|
"@types/b64-lite": "1.3.0",
|
|
"@types/cookie-session": "2.0.44",
|
|
"@types/oauth": "0.9.1",
|
|
"@types/passport": "1.0.7",
|
|
"@types/secure-password": "3.1.1",
|
|
"b64-lite": "1.4.0",
|
|
"bad-behavior": "1.0.1",
|
|
"cookie": "0.4.1",
|
|
"cookie-session": "2.0.0",
|
|
"debug": "4.3.3",
|
|
"find-up": "4.1.0",
|
|
"http": "0.0.1-security",
|
|
"jsonwebtoken": "9.0.0",
|
|
"nanoid": "3.2.0",
|
|
"oauth": "0.10.0",
|
|
"openid-client": "5.2.1",
|
|
"passport": "0.6.0",
|
|
"path": "0.12.7",
|
|
"resolve-from": "5.0.0",
|
|
"supports-color": "8.1.1",
|
|
"url": "0.11.0"
|
|
},
|
|
"peerDependencies": {
|
|
"blitz": "2.0.7",
|
|
"next": "*",
|
|
"next-auth": "*",
|
|
"secure-password": "4.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"next": {
|
|
"optional": true
|
|
},
|
|
"secure-password": {
|
|
"optional": true
|
|
},
|
|
"next-auth": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@blitzjs/config": "2.0.7",
|
|
"@testing-library/react": "13.4.0",
|
|
"@testing-library/react-hooks": "8.0.1",
|
|
"@types/cookie": "0.4.1",
|
|
"@types/debug": "4.1.7",
|
|
"@types/jsonwebtoken": "8.5.8",
|
|
"@types/react": "18.0.25",
|
|
"@types/react-dom": "17.0.14",
|
|
"blitz": "2.0.7",
|
|
"next": "canary",
|
|
"next-auth": "4.18.7",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0",
|
|
"secure-password": "4.0.0",
|
|
"typescript": "^4.8.4",
|
|
"unbuild": "0.7.6",
|
|
"watch": "1.0.2"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|