{"id":30351067,"url":"https://github.com/mithatercan/json-key-search","last_synced_at":"2026-04-19T03:02:16.067Z","repository":{"id":309104726,"uuid":"1035159022","full_name":"mithatercan/json-key-search","owner":"mithatercan","description":"Json Key Finder is a lightweight VSCode extension that lets you quickly locate deeply nested object keys in JSON, JavaScript, and TypeScript files using dot notation. ","archived":false,"fork":false,"pushed_at":"2025-08-09T21:39:13.000Z","size":2072,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-17T13:57:48.617Z","etag":null,"topics":["json-keys","vscode-extension"],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items?itemName=MithatErcan.json-key-search","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mithatercan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-09T19:25:58.000Z","updated_at":"2025-08-09T21:39:16.000Z","dependencies_parsed_at":"2025-08-09T22:14:36.380Z","dependency_job_id":"f6fc169f-1ca2-4a8c-b858-3bcc852b26b0","html_url":"https://github.com/mithatercan/json-key-search","commit_stats":null,"previous_names":["mithatercan/object-key-search"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mithatercan/json-key-search","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mithatercan%2Fjson-key-search","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mithatercan%2Fjson-key-search/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mithatercan%2Fjson-key-search/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mithatercan%2Fjson-key-search/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mithatercan","download_url":"https://codeload.github.com/mithatercan/json-key-search/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mithatercan%2Fjson-key-search/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31992822,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["json-keys","vscode-extension"],"created_at":"2025-08-18T23:00:54.817Z","updated_at":"2026-04-19T03:02:15.995Z","avatar_url":"https://github.com/mithatercan.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JSON Key Search (VS Code Extension)\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"logo.png\" alt=\"Object Key Finder Logo\" width=\"160\" /\u003e\n  \n\u003c/p\u003e\n\nSearch deeply nested keys in JSON/JSONC and JS/TS object literals using dot notation. Precisely selects the matching value (string content only, or the full token/object/array for non-strings) and supports a live search UI similar to Ctrl+F.\n\n## Features\n\n- Exact dot-path lookup with structure-aware nesting (no false matches from siblings)\n- Works with JSON/JSONC and JS/TS objects (quoted and unquoted keys)\n- Selects just the final value content\n- Live search input that updates selection as you type\n\n## Requirements\n\n- VS Code ^1.75.0\n\n## Commands\n\n- `extension.searchJsonKey`: One-shot input. Jumps to the value of the provided dot-path.\n- `extension.searchJsonKeyLive`: Live search input. Updates selection on each keystroke.\n\n## Default Keybinding\n\n- Live search: `Ctrl+Alt+J` (Windows/Linux), `Cmd+Alt+J` (macOS)\n\n## How to Use (for Marketplace)\n\n- Open a JSON/JSONC/JS/TS file containing nested objects.\n- Press the default keybinding or run the command from the Command Palette:\n  - “Search JSON Field by Dot Notation (Live)” for a live Ctrl+F-like search.\n  - “Search JSON Field by Dot Notation” for a single prompt.\n- Type a path like `messages.errors.no_permission`.\n- The extension selects only the value of that key (string content without quotes, or the full non-string value).\n\n## Usage\n\n1. Open a JSON/JSONC/JS/TS file that contains nested data.\n2. Run a command:\n   - Command Palette → “Search JSON Field by Dot Notation” (one-shot), or\n   - Command Palette → “Search JSON Field by Dot Notation (Live)” (live UI), or\n   - Press the default keybinding for the live search.\n3. Enter a dot-path, e.g. `messages.errors.no_permission`.\n4. The extension will select only the final value.\n\n## Examples\n\nGiven:\n\n```ts\nexport const en = {\n  pages: {\n    login: {\n      title: 'Login',\n      settings: {\n        mac_address: { title: 'MAC' },\n      },\n    },\n  },\n  messages: {\n    errors: {\n      no_permission: 'You do not have permission',\n    },\n  },\n}\n```\n\n- Searching `messages.errors.no_permission` selects: `You do not have permission` (inside quotes only).\n- Searching `pages.login.settings.mac_address.title` selects: `MAC` (exact nesting; does not match `pages.login.title`).\n\n## Installation (Local dev)\n\n- Clone this repo, then open it in VS Code.\n- Press F5 (Run Extension) to launch a new Extension Development Host.\n\n## Packaging (optional)\n\n- Use `vsce` if you want to package/publish:\n  - Install: `npm i -g @vscode/vsce`\n  - Package: `vsce package`\n\n## Notes \u0026 Limitations\n\n- The matcher is tolerant but still expects syntactically valid structures.\n- For large files, live updates use a small debounce (≈120ms).\n- Keys are matched exactly by segment; the final segment is not prefix-matched.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmithatercan%2Fjson-key-search","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmithatercan%2Fjson-key-search","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmithatercan%2Fjson-key-search/lists"}