@spfn/auth 0.2.0-beta.68 → 0.2.0-beta.69

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spfn/auth",
3
- "version": "0.2.0-beta.68",
3
+ "version": "0.2.0-beta.69",
4
4
  "type": "module",
5
5
  "description": "Authentication, authorization, and RBAC module for SPFN",
6
6
  "author": "Ray Im <rayim@fxy.global>",
@@ -81,34 +81,33 @@
81
81
  "setupMessage": " 📚 Next steps:\n 1. Add lifecycle: .lifecycle(createAuthLifecycle()) in server.config.ts\n 2. Register router: .packages([authRouter]).use([authenticate]) in router.ts\n 3. Add interceptor: import '@spfn/auth/nextjs/api' in RPC proxy route\n 4. Set env vars: SPFN_AUTH_SESSION_SECRET (.env.local), SPFN_AUTH_VERIFICATION_TOKEN_SECRET (.env.server)\n 5. Run migrations: pnpm spfn db migrate\n 6. Full guide: https://spfn.dev/docs/guides/authentication"
82
82
  },
83
83
  "dependencies": {
84
- "bcryptjs": "^2.4.3",
85
- "drizzle-orm": "^0.45.0",
84
+ "@node-rs/bcrypt": "^1.10.7",
85
+ "drizzle-orm": "^0.45.2",
86
86
  "jose": "^6.1.0",
87
87
  "jsonwebtoken": "^9.0.2",
88
88
  "postgres": "^3.4.0"
89
89
  },
90
90
  "devDependencies": {
91
- "@types/bcryptjs": "^2.4.6",
92
91
  "@types/jsonwebtoken": "^9.0.6",
93
92
  "@types/node": "^20.11.0",
94
93
  "@types/react": "^19.2.2",
95
94
  "@types/react-dom": "^19.2.2",
96
95
  "@vitest/coverage-v8": "^4.0.6",
97
96
  "drizzle-kit": "^0.31.6",
98
- "hono": "^4.12.4",
97
+ "hono": "^4.12.25",
99
98
  "madge": "^8.0.0",
100
99
  "next": "^16.2.2",
101
100
  "tsup": "^8.5.0",
102
101
  "tsx": "^4.20.6",
103
102
  "typescript": "^5.3.3",
104
103
  "vitest": "^4.0.6",
105
- "@spfn/core": "0.2.0-beta.50",
106
- "@spfn/notification": "0.1.0-beta.20",
107
- "spfn": "0.2.0-beta.49"
104
+ "@spfn/core": "0.2.0-beta.54",
105
+ "@spfn/notification": "0.1.0-beta.21",
106
+ "spfn": "0.2.0-beta.50"
108
107
  },
109
108
  "peerDependencies": {
110
- "@spfn/core": ">=0.2.0-beta.49",
111
- "@spfn/notification": ">=0.1.0-beta.18",
109
+ "@spfn/core": ">=0.2.0-beta.54",
110
+ "@spfn/notification": ">=0.1.0-beta.21",
112
111
  "next": "^15.0.0 || ^16.0.0"
113
112
  },
114
113
  "peerDependenciesMeta": {