-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.34 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
{
"name": "wavy-x-desktop",
"description": "🌊 Amazing Wavy App targeting iOS, Android, Web and Desktop wavy.fr",
"version": "2.2.4",
"author": "www.wavy.fr",
"dependencies": {},
"devDependencies": {
"electron": "^3.0.3",
"electron-builder": "^19.56.2",
"electron-icon-maker": "^0.0.4",
"electron-packager": "^12.2.0",
"electron-publish": "^20.28.3",
"electron-publisher-s3": "^20.17.2",
"run.env": "^1.1.0"
},
"main": "index.electron.js",
"private": true,
"scripts": {
"electron-icon": "yarn electron-icon-maker --input ./assets/images/electron-logo.png --output build",
"copy-icons": "cp build/icons/mac/icon.icns build/; cp build/icons/win/icon.ico build/;rm -fr build/icons",
"build": "electron-builder",
"clean": "rm -fr build/*",
"build:osx": "run.env electron-builder",
"build:win": "run.env electron-builder --win",
"prebuild": "yarn clean && yarn electron-icon && yarn copy-icons",
"watch:electron": "NODE_ENV=development electron .",
"watch:native": "react-native start",
"watch:native:clean": "react-native start --resetCache"
},
"build": {
"productName": "Wavy X",
"appId": "fr.wavy.x",
"win": {
"target": [
"nsis:ia32",
"nsis:x64"
]
},
"publish": {
"provider": "github",
"releaseType": "release"
}
}
}