forked from karaggeorge/kap-camera
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 861 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
{
"name": "kap-cam",
"version": "1.0.1",
"description": "Loom-like webcam overlay for Kap",
"repository": "clearlysid/kap-cam",
"license": "MIT",
"author": {
"name": "Siddharth",
"email": "[email protected]",
"url": "https://www.sid.me"
},
"keywords": [
"kap-plugin",
"camera",
"webcam",
"recording",
"loom"
],
"kap": {
"version": ">=3.3.2"
},
"scripts": {
"build-devices": "swiftc -o ./binaries/devices -target 'x86_64-apple-macosx10.14' ./binaries/devices.swift",
"build-permissions": "swiftc -o ./binaries/permissions -target 'x86_64-apple-macosx10.14' ./binaries/permissions.swift",
"build": "yarn run build-devices && yarn run build-permissions"
},
"peerDependencies": {
"electron": "*"
},
"dependencies": {
"electron-util": "^0.14.2",
"execa": "^4.0.3"
}
}