-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
39 lines (39 loc) · 940 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
{
"name": "@getstation/electron-google-oauth2",
"version": "14.0.0",
"description": "A Google OAuth2 module for your Electron app.",
"license": "MIT",
"repository": "getstation/electron-google-oauth2",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"author": {
"name": "Joël Charles",
"email": "[email protected]"
},
"scripts": {
"build": "tsc -p .",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"electron",
"oauth2",
"authentication",
"access token"
],
"devDependencies": {
"@electron/remote": "^2.0.10",
"electron": "^14.0.0",
"typescript": "^3.9.10"
},
"dependencies": {
"google-auth-library": "^8.8.0"
},
"engines": {
"node": ">=14.0"
},
"bugs": {
"url": "https://github.com/getstation/electron-google-oauth2/issues"
},
"homepage": "https://github.com/getstation/electron-google-oauth2#readme",
"files": ["./lib"]
}