-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 1.98 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": "l1ghtingvibes",
"productName": "L1ghtingVibes",
"version": "v1.2.1",
"description": "Play mechanical keyboard sounds as you type, but better!",
"repository": "https://github.com/L1ghtingBolt/lightingvibes",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"build:win": "electron-builder -w",
"build:mac": "electron-builder -m",
"build:linux": "electron-builder -l"
},
"keywords": [],
"homepage": "https://forkerion.gq",
"author": {
"name": "L1ghtingBolt",
"email": "[email protected]"
},
"license": "MIT",
"iohook": {
"targets": [
"node-64",
"electron-73"
],
"platforms": [
"win32",
"darwin",
"linux"
],
"arches": [
"x64"
]
},
"build": {
"nsis": {
"oneClick": true
},
"win": {
"requestedExecutionLevel": "requireAdministrator",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "src/assets/icon.png"
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64"
]
}
],
"icon": "src/assets/icon.png"
},
"linux": {
"target": [
{
"target": "deb",
"arch": [
"x64"
]
},
{
"target": "snap",
"arch": [
"x64"
]
},
{
"target": "AppImage",
"arch": [
"x64"
]
}
],
"icon": "src/assets/icon.png"
}
},
"dependencies": {
"custom-electron-titlebar": "^3.2.7",
"electron-store": "^6.0.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"howler": "^2.1.2",
"iohook": "^0.6.2"
},
"devDependencies": {
"app-builder-lib": "^22.2.0",
"electron": "^6.1.5",
"electron-builder": "^21.2.0",
"electron-compile": "^6.4.4",
"electron-packager": "^14.1.1"
}
}