-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "electron-desktopCapturer",
"productName": "electron-desktopCapturer",
"version": "1.2.1",
"description": "Electron desktopCapturer test tool",
"license": "MIT",
"repository": "https://github.com/a-sync/electron-desktopCapturer",
"author": {
"name": "smith",
"email": "contact@andras.online",
"url": "http://andras.online"
},
"scripts": {
"test": "xo",
"start": "electron .",
"build": "electron-packager . --out=dist --asar --overwrite --all",
"buildx64linux": "electron-packager . --out=dist --asar --overwrite --platform=linux --arch=x64",
"buildx64win": "electron-packager . --out=dist --asar --overwrite --platform=win32 --arch=x64"
},
"dependencies": {
"electron-debug": "^3.0.1",
"electron-unhandled": "^2.2.0"
},
"devDependencies": {
"devtron": "^1.4.0",
"electron": "^6.1.9",
"electron-packager": "^14.0.3",
"xo": "^0.23.0"
},
"xo": {
"space": 4,
"envs": [
"node",
"browser"
],
"ignores": [
"adapter.js"
]
}
}