Skip to content

Releases: SolvoHQ/json-to-ts

VS Code extension v0.1.0

Choose a tag to compare

@west0nG west0nG released this 10 May 13:12

First .vsix release of the VS Code extension for json-to-ts — the 6th artifact in the parity lineage (UI / CLI / API / Action / Embed / VS Code).

Install

code --install-extension json-to-ts-0.1.0.vsix

Or in VS Code: Extensions panel → menu → Install from VSIX… → pick the downloaded file.

What you get

Two commands in the command palette:

  • JSON to TS: Convert Selection (or Document) — converts the active editor selection (or the whole document if none is selected).
  • JSON to TS: Convert Clipboard — converts whatever JSON is on your system clipboard.

Both prompt for output mode (ts / zod / valibot) via QuickPick and open the result in a new untitled TypeScript document.

Settings

  • jsonToTs.apiUrl — defaults to https://json-to-ts-app.netlify.app/api/convert. Override only if you self-host the function.
  • jsonToTs.rootName — defaults to Root.

Notes

  • Plain JavaScript, zero runtime deps, ~6.7 KB .vsix.
  • Calls the public /api/convert endpoint — emitter upgrades reach you without re-installing.
  • Marketplace listing is a follow-up (operator-blocked publisher gate). Install via .vsix in the meantime.

Source