cedarstalking with keyboard shortcuts
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 50 lines 1.3 kB view raw
1{ 2 "$schema": "https://www.raycast.com/schemas/extension.json", 3 "name": "cedarville-people-search", 4 "title": "Cedarville People Search", 5 "description": "Search the Cedarville University student/staff directory", 6 "icon": "icon.png", 7 "author": "taciturnaxolotl", 8 "license": "MIT", 9 "platforms": [ 10 "macOS" 11 ], 12 "categories": [ 13 "Productivity", 14 "Web" 15 ], 16 "commands": [ 17 { 18 "name": "search-directory", 19 "title": "Search Cedarville Directory", 20 "description": "Search the Cedarville directory by name", 21 "mode": "view", 22 "preferences": [ 23 { 24 "name": "demoMode", 25 "title": "Demo Mode", 26 "description": "Redact personal information for screenshots and demos", 27 "type": "checkbox", 28 "label": "Hide personal data", 29 "required": false, 30 "default": false 31 } 32 ] 33 } 34 ], 35 "dependencies": { 36 "@raycast/api": "^1.104.11" 37 }, 38 "devDependencies": { 39 "@types/node": "^22.19.15", 40 "@types/react": "^19.2.14", 41 "typescript": "^5.9.3" 42 }, 43 "scripts": { 44 "build": "ray build", 45 "dev": "ray develop", 46 "fix-lint": "ray lint --fix", 47 "lint": "ray lint", 48 "publish": "npx @raycast/api@latest publish" 49 } 50}