-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.62 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.62 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
{
"name": "cap-raycast",
"title": "Cap",
"description": "Control Cap desktop recording via deeplinks",
"version": "0.0.1",
"author": "Cap Contributors",
"license": "MIT",
"commands": [
{
"name": "start-recording",
"title": "Start Recording",
"description": "Start a Cap recording from Raycast",
"mode": "view"
},
{
"name": "stop-recording",
"title": "Stop Recording",
"description": "Stop an active Cap recording",
"mode": "no-view"
},
{
"name": "pause-recording",
"title": "Pause Recording",
"description": "Pause active recording",
"mode": "no-view"
},
{
"name": "resume-recording",
"title": "Resume Recording",
"description": "Resume paused recording",
"mode": "no-view"
},
{
"name": "toggle-pause-recording",
"title": "Toggle Pause Recording",
"description": "Toggle pause state",
"mode": "no-view"
},
{
"name": "switch-microphone",
"title": "Switch Microphone",
"description": "Switch Cap microphone by label",
"mode": "form"
},
{
"name": "switch-camera",
"title": "Switch Camera",
"description": "Switch Cap camera by id/model",
"mode": "form"
}
],
"dependencies": {
"@raycast/api": "^1.99.0"
},
"devDependencies": {
"@raycast/eslint-config": "^2.0.0",
"@types/node": "20.17.24",
"eslint": "^8.57.0",
"prettier": "^3.5.3",
"typescript": "^5.8.2"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray dev",
"lint": "ray lint",
"publish": "ray publish"
}
}