-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.77 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.77 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "zoogle",
"version": "1.1.2",
"description": "Self-contained Google OAuth for Express and Next.js: setup in 2 minutes",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./nextjs": {
"types": "./dist/nextjs.d.ts",
"default": "./dist/nextjs.js"
}
},
"directories": {
"example": "examples"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PersuasivePost/zoogle.git"
},
"keywords": [
"google",
"oauth",
"authentication",
"express",
"nextjs",
"next.js",
"jwt",
"login"
],
"author": "",
"license": "ISC",
"files": [
"dist"
],
"peerDependencies": {
"express": ">=4.0.0",
"next": ">=13.0.0"
},
"peerDependenciesMeta": {
"express": {
"optional": true
},
"next": {
"optional": true
}
},
"bugs": {
"url": "https://github.com/PersuasivePost/zoogle/issues"
},
"homepage": "https://github.com/PersuasivePost/zoogle#readme",
"devDependencies": {
"@types/express": "^4.17.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"express": "^4.0.0",
"next": "^13.0.0",
"prettier": "^3.6.2",
"typescript": "^5.9.3"
},
"dependencies": {
"axios": "^1.13.2",
"dotenv": "^17.2.3",
"jsonwebtoken": "^9.0.2"
}
}