forked from getstation/electron-google-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 936 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
40
41
{
"name": "@popsql/electron-google-oauth2",
"version": "2.2.1",
"description": "A Google OAuth2 module for your Electron app.",
"license": "MIT",
"repository": "popsql/electron-google-oauth2",
"main": "./lib/index",
"types": "./lib/index",
"author": {
"name": "Joël Charles",
"email": "[email protected]"
},
"scripts": {
"build": "tsc -p .",
"prepublishOnly": "yarn run build"
},
"keywords": [
"electron",
"oauth2",
"authentication",
"access token"
],
"devDependencies": {
"@electron/remote": "^2.0.9",
"electron": "^13",
"typescript": "^3.8.3"
},
"dependencies": {
"google-auth-library": "^5.9.2"
},
"peerDependencies": {
"electron": "*"
},
"engines": {
"node": ">= 8.0"
},
"bugs": {
"url": "https://github.com/popsql/electron-google-oauth2/issues"
},
"homepage": "https://github.com/popsql/electron-google-oauth2#readme"
}