@ianlucas/remix-auth-steam 2.0.0 → 2.0.2
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/dist/index.js +1 -1
- package/package.json +2 -1
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { redirect } from "@remix-run/server-runtime";
|
|
6
6
|
import { Strategy } from "remix-auth";
|
|
7
7
|
import OpenID from "openid";
|
|
8
|
-
import { PromiseAuthenticate, PromiseVerifyAssertion } from "./promises";
|
|
8
|
+
import { PromiseAuthenticate, PromiseVerifyAssertion } from "./promises.js";
|
|
9
9
|
import SteamAPI from "steamapi";
|
|
10
10
|
export class SteamStrategy extends Strategy {
|
|
11
11
|
name = "steam";
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ianlucas/remix-auth-steam",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Remix authentication strategy for Steam",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Ian Lucas",
|
|
7
7
|
"repository": "ianlucas/remix-auth-steam",
|
|
8
|
+
"type": "module",
|
|
8
9
|
"main": "./dist/index.js",
|
|
9
10
|
"keywords": [
|
|
10
11
|
"auth",
|