mirror of
https://github.com/ethanolivertroy/obsidian-markitdown.git
synced 2026-07-22 05:41:54 +00:00
New: drag-and-drop, URL/YouTube conversion, preview modal, post-conversion hooks, custom filename templates, recursive folders, conversion history, resolved path hint, troubleshooting UI, unit tests, BRAT beta channel. Fixed: Python detection on macOS/Windows GUI apps, settings focus loss, empty path crash, stale metadata detection.
31 lines
772 B
JSON
31 lines
772 B
JSON
{
|
|
"name": "obsidian-markitdown",
|
|
"version": "2.1.0",
|
|
"description": "Convert various file formats to Markdown using Microsoft's Markitdown library",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"test": "jest",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"markitdown",
|
|
"conversion",
|
|
"markdown"
|
|
],
|
|
"author": "Ethan Troy",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^20.11.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.25.0",
|
|
"jest": "^30.3.0",
|
|
"obsidian": "latest",
|
|
"ts-jest": "^29.4.6",
|
|
"tslib": "^2.6.0",
|
|
"typescript": "^5.4.0"
|
|
}
|
|
}
|