-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 847 Bytes
/
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
{
"name": "Marlo",
"version": "0.1.0",
"description": "Quick toggle tools for Arlo Cameras",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "build --dir",
"dist": "build"
},
"build": {
"appId": "Marlo",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
}
},
"repository": "https://github.com/CyrisXD/Marlo",
"keywords": [
"Marlo",
"arlo",
"cameras",
"electron",
"nodejs",
"api"
],
"author": "CyrisXD",
"license": "MIT",
"devDependencies": {
"electron": "^15.5.5",
"electron-builder": "^20.15.1"
},
"dependencies": {
"electron-ga": "^1.0.6",
"request": "^2.87.0"
}
}