-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
39 lines (39 loc) · 896 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "next-auth-steam",
"license": "Unlicense",
"version": "0.4.0",
"description": "Steam authentication provider for NextAuth.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Nekonyx/next-auth-steam"
},
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "biome lint src",
"format": "biome format --write src",
"format:examples": "biome format --write examples"
},
"dependencies": {
"openid": "^2.0.12"
},
"peerDependencies": {
"next": "^13.3.4 || ^14 || ^15",
"next-auth": "^4",
"openid-client": "^5"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^18.19.26",
"@types/openid": "^2",
"next": "^15",
"next-auth": "^4",
"openid-client": "^5",
"typescript": "^5.7.2"
}
}