vesan_obsidian-table-beauti.../package.json
Vesa Vänskä 2503c08863
feat: Obsidian plugin to convert box-drawing tables to Markdown
Parses ASCII (+/-/|) and Unicode (┌─┬─┐│├┼┤└┴┘) table formats
from CLI tool output and converts them to properly formatted
Markdown pipe tables. Identifier-like cell values are auto-wrapped
in backticks.

Available via right-click context menu and command palette.
2026-04-26 19:16:31 +03:00

19 lines
542 B
JSON

{
"name": "obsidian-table-beautifier",
"version": "1.0.0",
"description": "Obsidian plugin that converts ASCII/Unicode box-drawing tables into Markdown tables",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@types/node": "^20.11.0",
"esbuild": "^0.20.0",
"obsidian": "latest",
"typescript": "^5.3.0",
"vitest": "^1.2.0"
}
}