├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── README.md ├── assets └── command-icon.png ├── metadata ├── phind-search-1.png ├── phind-search-2.png └── phind-search-3.png ├── package.json ├── pnpm-lock.yaml ├── raycast-env.d.ts ├── src ├── context.tsx ├── index.tsx └── utils │ ├── handleResults.ts │ ├── resultUtils.ts │ ├── types.ts │ └── useSearch.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiyogg/phind-search/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiyogg/phind-search/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiyogg/phind-search/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiyogg/phind-search/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiyogg/phind-search/HEAD/README.md -------------------------------------------------------------------------------- /assets/command-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiyogg/phind-search/HEAD/assets/command-icon.png -------------------------------------------------------------------------------- /metadata/phind-search-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiyogg/phind-search/HEAD/metadata/phind-search-1.png -------------------------------------------------------------------------------- /metadata/phind-search-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiyogg/phind-search/HEAD/metadata/phind-search-2.png -------------------------------------------------------------------------------- /metadata/phind-search-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiyogg/phind-search/HEAD/metadata/phind-search-3.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiyogg/phind-search/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiyogg/phind-search/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /raycast-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiyogg/phind-search/HEAD/raycast-env.d.ts -------------------------------------------------------------------------------- /src/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiyogg/phind-search/HEAD/src/context.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiyogg/phind-search/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/utils/handleResults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiyogg/phind-search/HEAD/src/utils/handleResults.ts -------------------------------------------------------------------------------- /src/utils/resultUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiyogg/phind-search/HEAD/src/utils/resultUtils.ts -------------------------------------------------------------------------------- /src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiyogg/phind-search/HEAD/src/utils/types.ts -------------------------------------------------------------------------------- /src/utils/useSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiyogg/phind-search/HEAD/src/utils/useSearch.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiyogg/phind-search/HEAD/tsconfig.json --------------------------------------------------------------------------------