@effect-auth/core 0.1.0-alpha.13 → 0.1.0-alpha.15

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -16
package/README.md CHANGED
@@ -16,7 +16,7 @@ Root exports are runtime-neutral auth primitives, service contracts, factory fun
16
16
 
17
17
  Primitive module subpaths mirror the root surface for focused imports and are also stable alpha API. Examples include `@effect-auth/core/Password`, `@effect-auth/core/Sessions`, `@effect-auth/core/OAuth`, `@effect-auth/core/Jwt`, `@effect-auth/core/ApiKey`, `@effect-auth/core/Storage`, and `@effect-auth/core/StorageMigrations`.
18
18
 
19
- Integration subpaths are public but opt-in. They may expose runtime-specific or transport-specific types and can have optional peer dependencies:
19
+ Integration subpaths are public but opt-in. They may expose runtime-specific or transport-specific types and require the app to install their adapter packages when used:
20
20
 
21
21
  ```txt
22
22
  @effect-auth/core/Client
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effect-auth/core",
3
- "version": "0.1.0-alpha.13",
3
+ "version": "0.1.0-alpha.15",
4
4
  "description": "Composable Effect-first authentication primitives.",
5
5
  "license": "MIT",
6
6
  "files": [
@@ -217,20 +217,6 @@
217
217
  "type-test": "tsc -p tsconfig.type-tests.json --pretty false"
218
218
  },
219
219
  "peerDependencies": {
220
- "@simplewebauthn/server": "^13.3.1",
221
- "alchemy": ">=2.0.0-beta.44 <3",
222
- "effect": "^4.0.0-beta.67",
223
- "effect-qb": "4.0.0-beta.66"
224
- },
225
- "peerDependenciesMeta": {
226
- "@simplewebauthn/server": {
227
- "optional": true
228
- },
229
- "alchemy": {
230
- "optional": true
231
- },
232
- "effect-qb": {
233
- "optional": true
234
- }
220
+ "effect": "4.0.0-beta.67"
235
221
  }
236
222
  }