cedarstalking with keyboard shortcuts
1{
2 "$schema": "https://www.raycast.com/schemas/extension.json",
3 "name": "cedarstalk",
4 "title": "CedarStalk",
5 "description": "Search the Cedarville University student/staff directory",
6 "icon": "icon.png",
7 "author": "kierank",
8 "license": "MIT",
9 "commands": [
10 {
11 "name": "search-directory",
12 "title": "Search Directory",
13 "description": "Search the Cedarville directory by name",
14 "mode": "view"
15 }
16 ],
17 "dependencies": {
18 "@raycast/api": "^1.93.2"
19 },
20 "devDependencies": {
21 "@raycast/utils": "^1.17.0",
22 "@types/node": "^22.13.10",
23 "@types/react": "^19.0.10",
24 "typescript": "^5.8.2"
25 },
26 "scripts": {
27 "build": "ray build",
28 "dev": "ray develop",
29 "fix-lint": "ray lint --fix",
30 "lint": "ray lint",
31 "publish": "npx @raycast/api@latest publish"
32 }
33}