|
| 1 | +{ |
| 2 | + "$schema": "https://www.raycast.com/schemas/extension.json", |
| 3 | + "name": "cap", |
| 4 | + "title": "Cap", |
| 5 | + "description": "Control Cap screen recorder from Raycast", |
| 6 | + "icon": "command-icon.png", |
| 7 | + "author": "sixty-dollar-agent", |
| 8 | + "categories": ["Productivity"], |
| 9 | + "license": "MIT", |
| 10 | + "commands": [ |
| 11 | + { |
| 12 | + "name": "start-recording", |
| 13 | + "title": "Start Recording", |
| 14 | + "description": "Start a new Cap screen recording", |
| 15 | + "mode": "no-view" |
| 16 | + }, |
| 17 | + { |
| 18 | + "name": "stop-recording", |
| 19 | + "title": "Stop Recording", |
| 20 | + "description": "Stop the current Cap recording", |
| 21 | + "mode": "no-view" |
| 22 | + }, |
| 23 | + { |
| 24 | + "name": "pause-recording", |
| 25 | + "title": "Pause Recording", |
| 26 | + "description": "Pause the current Cap recording", |
| 27 | + "mode": "no-view" |
| 28 | + }, |
| 29 | + { |
| 30 | + "name": "resume-recording", |
| 31 | + "title": "Resume Recording", |
| 32 | + "description": "Resume a paused Cap recording", |
| 33 | + "mode": "no-view" |
| 34 | + } |
| 35 | + ], |
| 36 | + "dependencies": { |
| 37 | + "@raycast/api": "^1.64.0" |
| 38 | + }, |
| 39 | + "devDependencies": { |
| 40 | + "@raycast/eslint-config": "^1.0.8", |
| 41 | + "typescript": "^5.3.3" |
| 42 | + } |
| 43 | +} |
0 commit comments