{"id":31745095,"url":"https://github.com/savetheclocktower/pulsar-ide-json","last_synced_at":"2025-10-09T12:29:30.548Z","repository":{"id":300510859,"uuid":"1006359938","full_name":"savetheclocktower/pulsar-ide-json","owner":"savetheclocktower","description":"Rich language support for JSON files in Pulsar","archived":false,"fork":false,"pushed_at":"2025-07-05T01:13:50.000Z","size":122,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-07T07:34:51.054Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/savetheclocktower.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","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-06-22T04:56:00.000Z","updated_at":"2025-07-05T01:13:54.000Z","dependencies_parsed_at":"2025-06-22T05:38:23.102Z","dependency_job_id":null,"html_url":"https://github.com/savetheclocktower/pulsar-ide-json","commit_stats":null,"previous_names":["savetheclocktower/pulsar-ide-json"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/savetheclocktower/pulsar-ide-json","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/savetheclocktower%2Fpulsar-ide-json","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/savetheclocktower%2Fpulsar-ide-json/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/savetheclocktower%2Fpulsar-ide-json/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/savetheclocktower%2Fpulsar-ide-json/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/savetheclocktower","download_url":"https://codeload.github.com/savetheclocktower/pulsar-ide-json/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/savetheclocktower%2Fpulsar-ide-json/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279001445,"owners_count":26083078,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"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":[],"created_at":"2025-10-09T12:28:44.188Z","updated_at":"2025-10-09T12:29:30.540Z","avatar_url":"https://github.com/savetheclocktower.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pulsar-ide-json\n\nRich language support for JSON files in Pulsar. Uses [vscode-langservers-extracted](https://www.npmjs.com/package/vscode-langservers-extracted).\n\n## Features\n\n* Code completion (via `autocomplete-plus`) for JSON properties and values based on the document’s [JSON schema](https://json-schema.org/) or based on existing properties/values used at other places in the document. JSON Schemas for some common types of JSON files are included; others can be configured.\n* Document symbol resolution (via `symbols-view`) for JSON properties in the document.\n* Hover (via `pulsar-hover`) for rich tooltip content based on descriptions in the document’s JSON schema.\n* Code formatting (via `pulsar-code-format`) — able to format specific ranges or the entire document.\n* Jump-to-declaration support (via `symbols-view`) for `$ref` references in JSON schemas.\n\n## TODO\n\n* Validation (i.e., diagnostics) doesn’t seem to work yet.\n\n## Configuration\n\n### Node path\n\n\u003e [!TIP]\n\u003e Soon `pulsar-ide-json` will be able to use Pulsar’s built-in version of Node. For now, though, the built-in version is too old; you’ll have to tell the language server the path to your local version of Node.\n\nThe version of Node inherited from your shell environment will usually suffice; if Pulsar fails to find it, you may specify the absolute path to your version of `node` in the “Path To Node Binary” configuration field.\n\n### JSON schemas\n\n#### Builtin schemas\n\nSeveral common schemas are included out of the box:\n\n* `tsconfig.json` and `jsconfig.json` (TypeScript configuration)\n* `package.json` (NPM metadata file)\n* `schema.json` (JSON Schema meta-schema)\n\n#### Explicit schemas\n\nAn explicit `$schema` property at the root of a JSON file will be used as the document’s schema if its value is either an `http`/`https` URL or a `file` URL that refers to an absolute path on disk.\n\n#### Custom schemas\n\nOther JSON schemas can be added — not through the settings UI, but via your `config.cson`. For each new JSON schema you want to add, create a new object property like so:\n\n```coffeescript\n\"*\":\n  \"pulsar-ide-json\":\n    jsonSchemas:\n      eslintrc:\n        fileMatch: [\".eslintrc\", \".eslintrc.json\"],\n        uri: \"https://www.schemastore.org/eslintrc.json\"\n```\n\nThe key (`\"eslintrc\"` in the example above) is not used for anything, but it should be somewhat unique from other keys to avoid collisions. As for the properties:\n\n* `fileMatch` should be an array of glob-like patterns to match against files.\n* `uri` should have either an `http`/`https` scheme or a `file` scheme; in the latter case, it should point to an absolute path on disk. ~~It can also start with a relative path on disk, in which case it will be resolved relative to the project root (TODO).~~\n\nYou can also define project-specific schemas with the help of a package like [atomic-management][] or [project-config][].\n\n\n[atomic-management]: https://web.pulsar-edit.dev/packages/atomic-management\n[project-config]: https://web.pulsar-edit.dev/packages/project-config\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsavetheclocktower%2Fpulsar-ide-json","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsavetheclocktower%2Fpulsar-ide-json","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsavetheclocktower%2Fpulsar-ide-json/lists"}