-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.56 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
{
"name": "fcapture",
"version": "0.3.4",
"description": "A previewer and recorder (eventually) software for generic USB capture cards",
"main": "app/electron.mjs",
"build": {
"productName": "FCapture",
"appId": "com.github.otvv.fcapture",
"mac": {
"executableName": "FCapture",
"icon": "app/assets/icons/fcapture-icon.icns",
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"hardenedRuntime": true,
"gatekeeperAssess": false
},
"win": {
"executableName": "FCapture",
"icon": "app/assets/icons/fcapture-icon.ico"
},
"linux": {
"executableName": "FCapture",
"icon": "app/assets/icons/fcapture-icon-512x512.png",
"category": "Recorder"
}
},
"scripts": {
"start": "npx electron .",
"build": "node app/build.mjs",
"buildAltUnix": "sudo sh build/build.sh",
"buildAltWin": "powershell -File build/build.ps1",
"signAppMac": "codesign --deep --force --sign - dist/mac/*.app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otvv/fcapture.git"
},
"keywords": [
"usb",
"capture",
"card",
"preview",
"software",
"electron"
],
"type": "module",
"author": "otvv",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/otvv/fcapture/issues"
},
"homepage": "https://github.com/otvv/fcapture#readme",
"devDependencies": {
"electron": "^33.2.0",
"electron-builder": "^25.1.8"
},
"dependencies": {
"date-fns": "^4.1.0"
}
}