-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.19 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.19 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
73
74
75
76
77
78
79
80
81
82
83
84
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "cap",
"title": "Cap",
"description": "Control Cap screen recording from Raycast",
"icon": "cap-icon.png",
"author": "cap",
"categories": ["Productivity", "Applications"],
"license": "MIT",
"preferences": [
{
"name": "displayName",
"title": "Display Name",
"description": "Name of the display to capture (leave empty to use the main display)",
"type": "textfield",
"required": false,
"default": ""
}
],
"commands": [
{
"name": "start-instant-recording",
"title": "Start Instant Recording",
"subtitle": "Cap",
"description": "Start an instant screen recording with Cap",
"mode": "no-view"
},
{
"name": "start-studio-recording",
"title": "Start Studio Recording",
"subtitle": "Cap",
"description": "Start a studio screen recording with Cap",
"mode": "no-view"
},
{
"name": "stop-recording",
"title": "Stop Recording",
"subtitle": "Cap",
"description": "Stop the current Cap recording",
"mode": "no-view"
},
{
"name": "toggle-pause",
"title": "Toggle Pause Recording",
"subtitle": "Cap",
"description": "Pause or resume the current Cap recording",
"mode": "no-view"
},
{
"name": "take-screenshot",
"title": "Take Screenshot",
"subtitle": "Cap",
"description": "Take a screenshot with Cap",
"mode": "no-view"
},
{
"name": "open-settings",
"title": "Open Settings",
"subtitle": "Cap",
"description": "Open Cap settings",
"mode": "no-view"
}
],
"dependencies": {
"@raycast/api": "^1.93.2",
"@raycast/utils": "^1.19.1"
},
"devDependencies": {
"@raycast/eslint-config": "^1.0.14",
"@types/node": "22.13.14",
"@types/react": "19.0.12",
"eslint": "^9.23.0",
"prettier": "^3.5.3",
"typescript": "^5.8.2"
},
"scripts": {
"build": "ray build",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"prepublishOnly": "echo \"Error: no publish\" && exit 1",
"publish": "npx @raycast/api@latest publish"
}
}