-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.51 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
{
"name": "OpenSourceSync",
"version": "1.0.0",
"description": "Control multiple PCs with a single pair of mouse and keyboard",
"main": "main.js",
"author": {
"name": "Ali Nauman",
"email": "[email protected]"
},
"scripts": {
"start": "electron .",
"pack": "build --dir",
"dist": "build",
"rebuild-robotjs": "electron-rebuild -f -w robotjs"
},
"build": {
"appId": "com.electron.opensourcesync",
"win": {},
"mac": {
"category": "your.app.category.type"
},
"linux": {
"target": [
{
"target": "deb",
"arch": [
"x64"
]
}
],
"category": "Utility"
}
},
"devDependencies": {
"electron": "1.7.10",
"electron-builder": "^20.5.1",
"vue-devtools": "^3.1.9"
},
"dependencies": {
"bonjour": "^3.5.0",
"clipboard": "^1.7.1",
"clipboardy": "^1.2.3",
"copy-to-clipboard": "^3.0.8",
"electron-rebuild": "^1.7.3",
"electron-store": "^2.0.0",
"filesize": "^3.6.1",
"global": "^4.3.2",
"iohook": "^0.1.13",
"jshint": "^2.9.5",
"keypress": "^0.2.1",
"md5": "^2.2.1",
"node-cmake": "^2.3.2",
"node-gyp": "^3.6.2",
"randomstring": "^1.1.5",
"robotjs": "^0.5.1",
"sortablejs": "^1.7.0",
"sweetalert2": "^7.21.1",
"vuedraggable": "^2.16.0"
},
"iohook": {
"targets": [
"node-59",
"electron-54"
],
"platforms": [
"win32",
"darwin",
"linux"
],
"arches": [
"x64"
]
}
}