-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.25 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
{
"name": "client-desktop",
"version": "1.0.3",
"main": "index.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"build:win": "electron-builder --win",
"build:mac": "electron-builder --mac"
},
"build": {
"appId": "com.clipboard-sync.desktop",
"productName": "clipboard-sync",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"extraResources": [
{
"from": "assets/",
"to": "assets/"
}
],
"mac": {
"icon": "assets/clip-icon-512.png",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64",
"universal"
]
}
]
},
"win": {
"icon": "assets/clip-icon.ico",
"target": [
"nsis"
]
},
"nsis": {
"oneClick": true,
"perMachine": true
}
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"electron": "^19.0.7",
"electron-builder": "^23.1.0"
},
"dependencies": {
"clipboard-socket": "^1.0.1",
"crypto-js": "^4.1.1",
"electron-prompt": "^1.6.2",
"electron-store": "^8.0.0",
"socket.io-client": "^4.1.3"
}
}