forked from amoshydra/pc-remote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.1 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
{
"name": "remote-control-server",
"productName": "PC Remote Server",
"description": "HTTP remote control server with socket.io",
"version": "0.0.3",
"author": "amoshydra",
"private": true,
"postinstall": "install-app-deps",
"main": "./application/main.js",
"scripts": {
"start": "electron ./application/main.js",
"watch": "nodemon --exec electron application/main.js",
"setup": "npm install && npm run rebuild",
"rebuild": "npm rebuild --runtime=electron --target=1.4.13 --disturl=https://atom.io/download/atom-shell --abi=48",
"pack": "build --dir",
"dist": "build"
},
"build": {
"appId": "com.amoshydra.electron.remote-control-server"
},
"dependencies": {
"copy-paste": "^1.3.0",
"debug": "~2.2.0",
"express": "~4.13.4",
"hbs": "~4.0.0",
"lodash": "^4.17.2",
"morgan": "~1.7.0",
"robotjs": "^0.4.5",
"serve-favicon": "~2.3.0",
"socket.io": "^1.7.2"
},
"devDependencies": {
"electron": "1.4.13",
"electron-builder": "^10.9.2",
"nodemon": "^1.11.0"
},
"optionalDependencies": {
"7zip-bin-win": "^2.0.2"
}
}