-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.45 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
{
"name": "electron-google-classroom",
"version": "1.0.0",
"description": "Unofficial google classroom desktop app, build with electronjs",
"main": "app.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"build": {
"appId": "org.teamupdev.gcr",
"productName": "Unofficial Google Classroom Desktop",
"icon": "icons/512x512.png",
"linux": {
"target": [
"deb",
"rpm",
"AppImage"
],
"icon": "icons/png/",
"category": "Education"
},
"win": {
"target": [
"nsis",
"zip"
],
"icon": "icons/win/icon.ico"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Team-Up-Dev/electron-google-classroom.git"
},
"author": {
"name": "Ezra Khairan Permana",
"email": "ezrakhairan123@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Team-Up-Dev/electron-google-classroom/issues"
},
"homepage": "https://github.com/Team-Up-Dev/electron-google-classroom#readme",
"keywords": [
"google-classroom",
"google",
"electron"
],
"devDependencies": {
"electron": "^11.1.1",
"electron-builder": "^22.9.1",
"electron-reload": "^1.5.0"
},
"dependencies": {
"about-window": "^1.13.4",
"darkreader": "^4.9.26",
"electron-is-dev": "^1.2.0",
"electron-store": "^6.0.1",
"electron-window-state": "^5.0.3"
}
}