forked from IndiePass/indiepass-desktop
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.87 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
{
"name": "indigenous",
"version": "1.3.0",
"description": "An IndieWeb desktop application",
"keywords": [
"Electron",
"IndieWeb",
"Indigenous"
],
"repository": "https://github.com/marksuth/indigenous-desktop",
"license": "GPL-3.0",
"author": "marksuth",
"main": "main.js",
"scripts": {
"compile-styles": "sass css/indigenous.scss dist/styles.css --style compressed",
"make": "electron-forge make",
"package": "electron-forge package",
"start": "electron-forge start"
},
"config": {
"forge": {
"packagerConfig": {
"productName": "indigenous",
"executableName": "indigenous",
"plugins": [
"@electron-forge/plugin-electronegativity",
"@electron-forge/plugin-auto-unpack-natives"
],
"icon": "./images/icon.png"
},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "Indigenous",
"author": "marksuth.dev",
"loadingGif": "./images/loading.gif"
}
},
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin", "win32", "linux"
]
},
{
"name": "@electron-forge/maker-deb",
"config": {
"maintainer": "marksuth.dev",
"homepage": "https://indigenous.marksuth.dev",
"icon": "./images/icon.png"
}
},
{
"name": "@electron-forge/maker-rpm",
"config": {
"maintainer": "marksuth.dev",
"homepage": "https://indigenous.marksuth.dev",
"icon": "./images/icon.png"
}
},
{
"name": "@electron-forge/maker-dmg",
"config": {
"background": "./images/dmg-background.png",
"icon": "./images/icon.icns",
"format": "ULFO"
}
}
]
}
},
"dependencies": {
"dayjs": "^1.10.7",
"electron-context-menu": "^3.1.1",
"electron-squirrel-startup": "^1.0.0",
"electron-store": "^8.0.1",
"electron-window-state": "^5.0.3",
"is-in-viewport": "^3.0.4",
"jquery": "^3.6.0",
"jquery-ui": "^1.13.0",
"magnific-popup": "^1.1.0",
"mousetrap": "^1.6.5",
"normalize.css": "^8.0.1",
"pace-js": "^1.2.4",
"sass": "^1.43.4",
"tooltipster": "^4.2.8"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.61",
"@electron-forge/maker-deb": "^6.0.0-beta.61",
"@electron-forge/maker-dmg": "6.0.0-beta.61",
"@electron-forge/maker-rpm": "^6.0.0-beta.61",
"@electron-forge/maker-squirrel": "^6.0.0-beta.61",
"@electron-forge/maker-zip": "^6.0.0-beta.61",
"@electron-forge/plugin-auto-unpack-natives": "^6.0.0-beta.61",
"@electron-forge/plugin-electronegativity": "^6.0.0-beta.61",
"electron": "^15.3.0"
},
"productName": "Indigenous"
}