forked from grigio/borderless-camera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 802 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
{
"name": "borderless-camera",
"description": "a simple camera app without window borders, useful for the screencast recording",
"version": "0.0.5",
"license": "MIT",
"author": {
"name": "Luigi Maselli",
"email": "[email protected]",
"url": "https://grigio.org"
},
"private": true,
"main": "src/index.js",
"scripts": {
"make-pkgs": "node_modules/.bin/build --linux AppImage",
"pack": "build --dir",
"dist": "build",
"start": "electron ."
},
"devDependencies": {
"electron": "^3.0.2",
"electron-builder": "^20.28.4"
},
"build": {
"appId": "org.grigio.borderless-camera",
"linux": {
"target": [
"deb",
"AppImage"
]
},
"mac": {
"category": "public.app-category.developer-tools"
}
}
}