-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 2.3 KB
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
{
"name": "mechvibesplusplus",
"productName": "MechvibesPlusPlus",
"version": "v2.4.0",
"description": "Play mechanical keyboard sounds as you type.",
"repository": "https://github.com/PyroCalzone/MechVibesPlusPlus",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"build:quick": "electron-builder -- --dir",
"build:win": "electron-builder -w",
"build:mac": "electron-builder -m",
"build:linux": "electron-builder -l"
},
"keywords": [],
"homepage": "https://mechvibes.com",
"author": {
"name": "Pyro Calzone",
"email": "pyrocalzoneemail+MechVibesPlusPlus@gmail.com"
},
"license": "MIT",
"iohook": {
"targets": [
"node-64",
"electron-73"
],
"platforms": [
"win32",
"darwin",
"linux"
],
"arches": [
"x64"
]
},
"build": {
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"include": "build/installer.nsh"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"requestedExecutionLevel": "requireAdministrator",
"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": {
"discord.js": "^13.1.0",
"dotenv": "^8.2.0",
"electron-debug": "^3.2.0",
"electron-is-dev": "^1.2.0",
"electron-store": "^6.0.0",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"howler": "^2.1.2",
"iohook": "^0.6.2",
"jquery": "^3.6.0",
"node-fetch": "^2.6.1",
"path": "^0.12.7"
},
"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"
}
}