davidvkimball_obsidian-astr.../package.json
David V. Kimball a0ce6d0566 Add full MDX support and fix file creation reliability issues
- Add per-content-type MDX extension toggle (useMdxExtension setting)
- Add global MDX file visibility toggle in settings (off by default)
- Fix cursor positioning to end of content instead of filename selection
- Fix content automation "every other time" dialog issue with improved debounce logic
- Fix title extraction to preserve special characters (apostrophes, quotes)
- Fix frontmatter parsing to strip quotes from string values in MDX files
- Improve file tracking to prevent race conditions during rename operations
- Add editor focus and retry logic for reliable cursor positioning
2025-12-29 14:18:05 -08:00

34 lines
1.1 KiB
JSON

{
"name": "astro-composer",
"version": "0.9.7",
"description": "Turn your notes into posts and pages for your Astro blog with automated content management features.",
"main": "main.js",
"type": "module",
"scripts": {
"preinstall": "node scripts/npm-proxy.mjs",
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "node scripts/lint-wrapper.mjs",
"lint:fix": "node scripts/lint-wrapper.mjs --fix",
"upgrade": "node scripts/upgrade.mjs"
},
"author": "David V. Kimball",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"esbuild": "0.25.5",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "5.8.3",
"@eslint/js": "^9.30.1",
"@eslint/json": "^0.14.0",
"eslint": "^9.39.1",
"eslint-plugin-obsidianmd": "0.1.9",
"globals": "14.0.0",
"typescript-eslint": "8.35.1"
},
"packageManager": "pnpm@10.20.0"
}