-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.86 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
75
{
"name": "lgtv-controler",
"version": "1.0.0",
"description": "A minimal Electron application",
"main": "main.js",
"scripts": {
"postinstall": "install-app-deps",
"start": "node server",
"start:dev": "nodemon -e js,json,html server.js",
"start:electron": "electron .",
"test": "nodemon src/test",
"pack": "electron-builder --dir",
"dist:linux": "electron-builder --linux",
"dist:windows:x32": "electron-builder -w --ia32",
"dist:windows:x64": "electron-builder -w --x64",
"dist:mac": "electron-builder -m"
},
"homepage": "https://github.com/MaatheusGois/Remote-Control-LGTV",
"build": {
"appId": "maatheusgois.lgtv.remote.control",
"mac": {
"category": "maatheusgois.lgtv.remote.control",
"icon": "icon.png"
},
"nsis": {
"perMachine": true
},
"linux": {
"target": "deb"
}
},
"repository": "",
"keywords": [
"electron",
"lgtv",
"remote control",
"demo"
],
"dependencies": {
"async": "^3.2.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dgram": "^1.0.1",
"events": "^3.1.0",
"exeq": "^3.0.0",
"express": "^4.17.1",
"fs": "0.0.1-security",
"gulp": "^4.0.2",
"helmet": "^3.22.0",
"lgtv": "^0.2.4",
"local-devices": "^3.0.0",
"mkdirp": "^1.0.4",
"path": "^0.12.7",
"persist-path": "^1.0.2",
"pm2": "^4.4.0",
"util": "^0.12.2",
"websocket": "^1.0.31",
"wol": "^1.0.7"
},
"author": {
"name": "Matheus Gois",
"email": "matheusgoislimasilva@gmail.com"
},
"license": "MIT",
"devDependencies": {
"electron": "^9.4.0",
"electron-builder": "^22.6.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
}
}