-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
25 lines (25 loc) · 1.09 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
{
"version": "1.0.0",
"name": "mobile-mouse",
"description": "Controlling computer mouse with phone",
"homepage": "https://github.com/GuskiS/mobile-mouse",
"license": "MIT",
"scripts": {
"release:linux": "yarn run release:angular && yarn run build:electron && yarn run release:build",
"release:win": "yarn run release:angular && yarn run build:electron",
"release:build": "cd app/electron && build --publish onTagOrDraft",
"release:angular": "cd app/angular && yarn run release:prod",
"prebuild": "yarn install",
"build": "yarn run build:angular && yarn run build:electron",
"build:angular": "cd app/angular && yarn run build:prod",
"build:electron": "cd app/electron && yarn run build:prod",
"electron": "yarn install && cd app/electron && yarn run build:dev",
"outdated": "cd app/angular && yarn run outdated && cd ../electron && yarn run outdated",
"postinstall": "cd app/angular && yarn install && cd ../electron && yarn install"
},
"author": {
"name": "Edvards Lazdāns",
"email": "[email protected]",
"url": "https://github.com/GuskiS"
}
}