This repository was archived by the owner on May 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.4 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
{
"name": "with-firebase-user",
"version": "0.1.1",
"description": "A higher order function that decodes a Firebase Auth JWT and decorates the NextJS api request object with a Firebase user",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"scripts": {
"clean": "rimraf dist",
"build": "bunchee src/index.ts -m --no-sourcemap",
"format": "prettier --write ./**/*.{ts,tsx}",
"lint": "eslint . --ext .ts,.tsx --cache",
"lint:fix": "yarn lint --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "yarn clean && yarn build"
},
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/danecando/with-firebase-user.git"
},
"keywords": [
"NextJS",
"api",
"Firebase",
"auth",
"JWT"
],
"author": "Dane Grant",
"license": "ISC",
"bugs": {
"url": "https://github.com/danecando/with-firebase-user/issues"
},
"homepage": "https://github.com/danecando/with-firebase-user#readme",
"devDependencies": {
"@types/jsonwebtoken": "^8.5.5",
"@types/next": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"bunchee": "^1.7.2",
"eslint": "^8.0.1",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.4"
},
"dependencies": {
"jsonwebtoken": "^8.5.1"
}
}