-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 3.72 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 3.72 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "electron-oauth-app",
"version": "1.1.0",
"description": "Electron Desktop App with Google OAuth",
"main": "main.js",
"scripts": {
"start": "electron .",
"dev": "cross-env NODE_ENV=development nodemon --watch . --exec \"electron .\"",
"clean-cache": "npm cache clean --force",
"clean-files": "rimraf dist node_modules package-lock.json",
"clean": "npm run clean-cache && npm run clean-files",
"trace-warnings": "electron . --enable-logging",
"dist": "npm run clean && npm install && cross-env NODE_ENV=production electron-builder --mac --win --linux",
"dist:mac": "npm run clean && npm install && cross-env NODE_ENV=production electron-builder --mac",
"dist:win": "npm run clean && npm install && cross-env NODE_ENV=production electron-builder --win",
"dist:win:amd64": "npm run clean && npm install && cross-env NODE_ENV=production electron-builder --win --x64",
"dist:win:arm64": "npm run clean && npm install && cross-env NODE_ENV=production electron-builder --win --arm64",
"dist:linux": "npm run clean && npm install && cross-env NODE_ENV=production electron-builder --linux",
"release": "standard-version",
"postrelease": "echo 'Release script complete. Remember to manually push changes.'",
"bump-version": "semver -i patch package.json",
"postinstall": "electron-builder install-app-deps",
"rebuild-all": "electron-rebuild -f",
"rebuild-google": "electron-rebuild -f -w google-auth-library"
},
"repository": {
"type": "git",
"url": "git+https://github.com/APratham/electron-oauth-app.git"
},
"keywords": [
"Electron",
"OAuth",
"Google",
"Desktop"
],
"author": {
"name": "APratham",
"email": "a.pratham1998@gmail.com",
"url": "https://apratham.github.io/"
},
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/APratham/electron-oauth-app/issues"
},
"homepage": "https://github.com/APratham/electron-oauth-app?tab=readme-ov-file",
"dependencies": {
"@azure/msal-angular": "^3.0.20",
"@azure/msal-browser": "^3.17.0",
"@azure/msal-node": "^2.9.2",
"electron-reload": "^2.0.0-alpha.1",
"electron-store": "^10.0.0",
"google-auth-library": "^9.11.0",
"keytar": "^7.9.0",
"minimist": "^1.2.8",
"nodemon": "^3.1.4",
"rimraf": "^5.0.8",
"semver": "^7.6.2",
"standard-version": "^9.5.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"electron": "^31.0.2",
"electron-builder": "^24.13.3",
"electron-rebuild": "^3.2.9"
},
"build": {
"appId": "com.apratham.electronoauthapp",
"productName": "Electron OAuth App",
"directories": {
"output": "dist"
},
"files": [
"**/*",
"!dist_electron/**/*",
"!*.log",
"!*.md",
"!*.plist",
"!.gitignore",
"!package-lock.json"
],
"extraResources": {
"from": "./assets/installers/global",
"to": "files",
"filter": [
"**/*"
]
},
"mac": {
"target": [
"dmg",
"zip"
],
"category": "public.app-category.developer-tools"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"arm64"
]
},
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
}
]
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64",
"arm64"
]
},
{
"target": "deb",
"arch": [
"x64",
"arm64"
]
}
],
"category": "Utility",
"maintainer": "APratham <a.pratham1998@gmail.com>"
}
}
}