-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dep instead of peerDep as
jsr.io
doesnt support it yet
- Loading branch information
Oskar Gmerek
committed
Jul 3, 2024
1 parent
18209cf
commit bc84cd0
Showing
1 changed file
with
37 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,40 @@ | ||
{ | ||
"name": "@oskargmerek/surreal-lucia", | ||
"author": { | ||
"name": "Oskar Gmerek", | ||
"url": "https://oskargmerek.com" | ||
}, | ||
"module": "src/index.ts", | ||
"devDependencies": { | ||
"@biomejs/biome": "1.8.3", | ||
"@lucia-auth/adapter-test": "^5.0.1", | ||
"@types/bun": "latest", | ||
"bun": "^1.1.17" | ||
}, | ||
"peerDependencies": { | ||
"typescript": "^5.5.2", | ||
"lucia": "~3.2.0" | ||
}, | ||
"description": "SurrealDB adapter for Lucia", | ||
"keywords": [ | ||
"lucia", | ||
"adapter", | ||
"surrealdb", | ||
"surreal", | ||
"auth", | ||
"surrealdb.js", | ||
"surrealdb.ts", | ||
"typescript", | ||
"authentication", | ||
"sessions" | ||
], | ||
"license": "MIT", | ||
"scripts": { | ||
"biome:check": "biome check . --write" | ||
}, | ||
"name": "@oskargmerek/surreal-lucia", | ||
"author": { | ||
"name": "Oskar Gmerek", | ||
"url": "https://oskargmerek.com" | ||
}, | ||
"module": "src/index.ts", | ||
"devDependencies": { | ||
"@biomejs/biome": "1.8.3", | ||
"@lucia-auth/adapter-test": "^5.0.1", | ||
"@types/bun": "latest", | ||
"bun": "^1.1.17" | ||
}, | ||
"dependencies": { | ||
"@surrealdb/surrealdb": "npm:@jsr/surrealdb__surrealdb@^1.0.0-beta.12", | ||
"lucia": "~3.2.0" | ||
}, | ||
"peerDependencies": { | ||
"typescript": "^5.5.2" | ||
}, | ||
"description": "SurrealDB adapter for Lucia", | ||
"keywords": [ | ||
"lucia", | ||
"adapter", | ||
"surrealdb", | ||
"surreal", | ||
"auth", | ||
"surrealdb.js", | ||
"surrealdb.ts", | ||
"typescript", | ||
"authentication", | ||
"sessions" | ||
], | ||
"license": "MIT", | ||
"scripts": { | ||
"biome:check": "biome check . --write" | ||
}, | ||
"trustedDependencies": ["@biomejs/biome", "bufferutil", "bun", "utf-8-validate"], | ||
"type": "module", | ||
"dependencies": { | ||
"@surrealdb/surrealdb": "npm:@jsr/surrealdb__surrealdb@^1.0.0-beta.12" | ||
} | ||
"type": "module" | ||
} |