Skip to content

Commit

Permalink
packages/js: fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
merlindru committed Nov 28, 2023
1 parent de7fec2 commit ec5d803
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
Binary file modified packages/js/passkeys-next-auth-provider/bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions packages/js/passkeys-next-auth-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"license": "MIT",
"private": false,
"type": "module",
"version": "0.1.8",
"version": "0.1.9",
"module": "src/index.ts",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
Expand All @@ -18,7 +18,7 @@
"typescript": "^5.0.0"
},
"dependencies": {
"@teamhanko/passkeys-sdk": "^0.1.7",
"@teamhanko/passkeys-sdk": "^0.1.8",
"@github/webauthn-json": "^2.1.1",
"jose": "^5.1.1"
},
Expand Down
13 changes: 10 additions & 3 deletions packages/js/passkeys-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,19 @@
"license": "MIT",
"private": false,
"type": "module",
"version": "0.1.7",
"version": "0.1.8",
"module": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"types": "./dist/src/index.d.ts",
"exports": {
".": "./dist/src/index.js"
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js",
"default": "./dist/src/index.js"
},
"./schema": {
"types": "./dist/src/schema.d.ts"
}
},
"scripts": {
"build": "tsc"
Expand Down

0 comments on commit ec5d803

Please sign in to comment.