-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.8 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.8 KB
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
{
"name": "next-auth-guilded",
"version": "1.0.3",
"description": "Provider for the unofficial Guilded OAuth API (https://authlink.app) 🚀",
"author": "Zaid \"Nico\" <contact@nico.engineer>",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/types/index.d.ts"
},
"./": "./"
},
"files": [
"dist/"
],
"tags": [
"guilded",
"guilded-api",
"next-auth",
"next-auth-provider"
],
"scripts": {
"build": "npx tsc && npx gen-esm-wrapper . ./dist/index.mjs",
"lint": "npx eslint src/ --ext .ts,.js",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npx rimraf dist/ && npm run build",
"prepare": "husky install",
"prettier": "prettier --write **/*.{ts,js,json,yml,yaml}"
},
"devDependencies": {
"@sapphire/eslint-config": "^3.2.3",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"gen-esm-wrapper": "^1.1.2",
"husky": "^6.0.0",
"lint-staged": "^10.4.2",
"next-auth": "^4.3.4",
"rimraf": "^3.0.2",
"typescript": "^4.4.2"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/GuildedAPI/next-auth-guilded.git"
},
"bugs": {
"url": "https://github.com/GuildedAPI/next-auth-guilded/issues"
},
"homepage": "https://github.com/GuildedAPI/next-auth-guilded#readme"
}