chore: Update modules deps (#9286)
This commit is contained in:
+1
-1
@@ -1,4 +1,4 @@
|
||||
import { MedusaError } from "@medusajs/utils"
|
||||
import { MedusaError } from "@medusajs/framework/utils"
|
||||
import Scrypt from "scrypt-kdf"
|
||||
import { EmailPassAuthService } from "../../src/services/emailpass"
|
||||
jest.setTimeout(100000)
|
||||
|
||||
@@ -26,15 +26,18 @@
|
||||
"watch": "tsc --watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@medusajs/framework": "^0.0.1",
|
||||
"cross-env": "^5.2.1",
|
||||
"jest": "^29.7.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"typescript": "^5.6.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@medusajs/utils": "^1.11.9",
|
||||
"scrypt-kdf": "^2.0.1"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@medusajs/framework": "^0.0.1"
|
||||
},
|
||||
"keywords": [
|
||||
"medusa-provider",
|
||||
"medusa-provider-auth-userpass"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { ModuleProviderExports } from "@medusajs/types"
|
||||
import { ModuleProviderExports } from "@medusajs/framework/types"
|
||||
import { EmailPassAuthService } from "./services/emailpass"
|
||||
|
||||
const services = [EmailPassAuthService]
|
||||
|
||||
@@ -5,12 +5,12 @@ import {
|
||||
AuthIdentityProviderService,
|
||||
EmailPassAuthProviderOptions,
|
||||
Logger,
|
||||
} from "@medusajs/types"
|
||||
} from "@medusajs/framework/types"
|
||||
import {
|
||||
AbstractAuthModuleProvider,
|
||||
isString,
|
||||
MedusaError,
|
||||
} from "@medusajs/utils"
|
||||
} from "@medusajs/framework/utils"
|
||||
import Scrypt from "scrypt-kdf"
|
||||
|
||||
type InjectedDependencies = {
|
||||
|
||||
Reference in New Issue
Block a user