forked from alexkim205/G-Desktop-Suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.22 KB
/
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
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
{
"name": "gdesktopsuite",
"productName": "G Desktop Suite",
"version": "0.3.2",
"description": "A Google Suite desktop app made with Electron",
"copyright": "Copyright © 2018-2020 Alex Gyujin Kim",
"main": "app.js",
"scripts": {
"start": "electron .",
"dev": "cross-env NODE_ENV=development electron .",
"pack": "electron-builder --dir && yarn update-cask",
"build": "electron-builder -mwl -p never",
"deploy": "electron-builder -mwl -p onTagOrDraft",
"build-cask": "./Casks/update.sh $npm_package_version",
"deploy-cask": "cask-repair g-desktop-suite -v $npm_package_version -b",
"clean": "concurrently \"prettier './**/*.js' --write\" \"eslint ./**/*.js --fix\"",
"clean-check": "concurrently \"prettier './**/*.js' --list-different\" \"eslint ./**/*.js\""
},
"husky": {
"hooks": {
"pre-commit": "yarn clean-check",
"pre-push": "yarn clean"
}
},
"keywords": [
"google",
"drive",
"google drive",
"google suite",
"desktop"
],
"repository": {
"type": "git",
"url": "https://github.com/alexkim205/G-Desktop-Suite.git",
"report": "https://github.com/alexkim205/G-Desktop-Suite/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc"
},
"author": {
"name": "Alex Gyujin Kim",
"email": "[email protected]"
},
"license": "MIT",
"build": {
"appId": "com.alexgyujinkim.GDesktopSuite",
"copyright": "Copyright © 2018-2020 Alex Gyujin Kim",
"publish": [
{
"provider": "github",
"repo": "G-Desktop-Suite",
"owner": "alexkim205",
"releaseType": "release"
}
],
"files": [
"./build/**/*",
"./src/**/*",
"./app.js",
"./package.json"
],
"mac": {
"artifactName": "G-Desktop-Suite-${version}.${ext}",
"category": "public.app-category.productivity",
"darkModeSupport": true
},
"win": {
"artifactName": "G-Desktop-Suite-${version}.${ext}",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"linux": {
"artifactName": "G-Desktop-Suite-${version}.${ext}",
"target": [
"deb",
"rpm",
"AppImage",
"tar.gz"
],
"category": "Development"
},
"dmg": {
"artifactName": "G-Desktop-Suite-${version}.${ext}"
},
"pkg": {
"artifactName": "G-Desktop-Suite-${version}.${ext}"
},
"nsis": {
"artifactName": "G-Desktop-Suite-${version}.${ext}"
},
"appImage": {
"artifactName": "G-Desktop-Suite-${version}.${ext}"
}
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"del": "^5.1.0",
"electron": "^8.2.5",
"electron-builder": "^22.6.0",
"electron-log": "^4.1.4",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"prettier": "^2.0.5"
},
"dependencies": {
"about-window": "^1.12.1",
"darkreader": "^4.9.2",
"electron-localshortcut": "^3.2.1",
"electron-store": "^5.1.1",
"electron-updater": "^4.3.1",
"electron-window-state": "^5.0.1",
"file-system": "^2.2.2"
}
}