-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
55 lines (55 loc) · 1.2 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
{
"name": "Elements",
"version": "1.2.1",
"description": "A periodic table viewer desktop app",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"build": {
"appId": "de.florianfe.elements",
"mac": {
"category": "public.app-category.utilities",
"icon": "icon@2x"
},
"win": {
"icon": "build/icon"
},
"linux": {
"target": [
"deb",
"AppImage"
],
"icon": "build/icons/",
"desktop": {
"Name": "Elements",
"Comment": "An application which displays the periodic table",
"Categories": "Science;Chemistry;"
}
}
},
"repository": "https://github.com/FlorianFe/Elements",
"keywords": [
"translation",
"polymer",
"electron"
],
"author": {
"name": "Florian Fechner",
"email": "f_fech03@uni-muenster.de",
"url": "https://github.com/FlorianFe"
},
"license": "CC-0",
"devDependencies": {
"electron": "^18.3.7",
"electron-builder": "^22.7.0"
},
"dependencies": {
"electron-localshortcut": "^3.2.1",
"ipc": "0.0.1",
"lodash.debounce": "^4.0.8",
"path": "^0.12.7"
}
}