mirror of
https://github.com/vesan/obsidian-table-beautifier.git
synced 2026-07-22 06:53:19 +00:00
19 lines
542 B
JSON
19 lines
542 B
JSON
{
|
|
"name": "obsidian-table-beautifier",
|
|
"version": "1.0.1",
|
|
"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"
|
|
}
|
|
}
|