forked from Nekonyx/next-auth-steam
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.81 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@hyperplay/next-auth-steam",
"version": "0.2.5",
"license": "MIT",
"description": "Steam authentication provider for next-auth",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/HyperPlay-Gaming/next-auth-steam"
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"build:watch": "vite build --watch",
"lint": "eslint --ext .js,.jsx,.ts,.json,.mdx ./src",
"lint:fix": "eslint --fix -c .eslintrc.cjs --ext ts ./src",
"prepack": "json -f package.json -I -e \"delete this.devDependencies; delete this.dependencies\"",
"prettier:fix": "prettier --write .",
"prettier": "prettier --check ."
},
"peerDependencies": {
"next": "^13.3.4",
"next-auth": "^4.22.1",
"openid-client": "^5.4.2"
},
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
}
},
"dependencies": {
"@types/uuid": "^9.0.7",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"babel-loader": "^8.3.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"json": "^11.0.0",
"next": "^13.3.4",
"next-auth": "^4.22.1",
"openid-client": "^5.4.2",
"prettier": "^2.8.3",
"rollup-plugin-visualizer": "^5.9.2",
"semver": "^7.3.8",
"typescript": "^4.9.3",
"vite": "^4.2.1",
"vite-plugin-dts": "^1.7.3",
"vite-plugin-linter": "^2.0.2",
"vite-plugin-node-polyfills": "0.16.0",
"vite-plugin-static-copy": "^0.13.0"
}
}