{"library":"mdt2json-ts","title":"mdt2json-ts","description":"mdt2json-ts is a TypeScript-based transpiler that converts Markdown tables into minified JSON arrays. Version 0.1.0 is the initial release, with no active release cadence. It differentiates from similar tools by producing compact JSON output without intermediate steps, targeting developers who need to extract structured data from Markdown tables programmatically. The package ships with TypeScript type definitions for type-safe usage.","language":"javascript","status":"active","last_verified":"Fri May 01","install":{"commands":["npm install mdt2json-ts"],"cli":null},"imports":["import mdt2json from 'mdt2json-ts'","import { parseTable } from 'mdt2json-ts'","import { MarkdownTableParser } from 'mdt2json-ts'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import mdt2json from 'mdt2json-ts';\n\nconst markdown = `| Name | Age |\n|------|-----|\n| Alice | 30 |\n| Bob | 25 |`;\n\nconst json = mdt2json(markdown);\nconsole.log(json);\n// Output: [{\"Name\":\"Alice\",\"Age\":\"30\"},{\"Name\":\"Bob\",\"Age\":\"25\"}]","lang":"typescript","description":"Demonstrates converting a Markdown table string to a minified JSON array using the default export.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}