-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.75 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "cap",
"title": "Cap",
"description": "Control Cap screen recorder - start, stop, pause recordings and switch devices",
"icon": "cap-icon.png",
"author": "BossChaos",
"license": "MIT",
"commands": [
{
"name": "start-recording",
"title": "Start Recording",
"description": "Start a new screen recording",
"mode": "view"
},
{
"name": "stop-recording",
"title": "Stop Recording",
"description": "Stop the current recording",
"mode": "view"
},
{
"name": "pause-recording",
"title": "Pause Recording",
"description": "Pause the current recording",
"mode": "view"
},
{
"name": "resume-recording",
"title": "Resume Recording",
"description": "Resume a paused recording",
"mode": "view"
},
{
"name": "toggle-pause",
"title": "Toggle Pause",
"description": "Toggle pause state of current recording",
"mode": "view"
},
{
"name": "switch-microphone",
"title": "Switch Microphone",
"description": "Switch to a different microphone",
"mode": "view"
},
{
"name": "switch-camera",
"title": "Switch Camera",
"description": "Switch to a different camera",
"mode": "view"
},
{
"name": "open-settings",
"title": "Open Settings",
"description": "Open Cap settings",
"mode": "view"
}
],
"dependencies": {
"@raycast/api": "^1.55.2",
"@raycast/utils": "^1.17.0"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@types/react": "^18.2.42",
"typescript": "^5.3.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop"
}
}