gabriele-cusato_HandTranscr.../HandTranscriptMd/package.json
gabriele-cusato c1dc48ab28 fix: resolve ESLint errors, fix parser empty values and TABLE rows, bump to 1.0.1
- Fix collapse/expand animation: use img.naturalWidth (actual SVG viewBox width)
    instead of settings.canvasWidth, which could differ when the canvas auto-widened
    on wide screens; add WAAPI animation replacing CSS height transition
  - Add resolveJsonModule to tsconfig to fix i18n.ts JSON import typing errors
  - Cast JSON.parse results to explicit types in embed.ts and svg-utils.ts
  - Replace Vault.delete() with FileManager.trashFile() in embed.ts and editor-view.ts
  - Remove unused MarkdownView import from main.ts
  - Remove stale eslint-disable comments on WAAPI style assignments
  - Fix md-parser: preserve empty comma-separated values in LIST, NUMLIST, CHECK
    and TABLE headers (removed .filter(item => item))
  - Fix md-parser TABLE: remove body-row continuation (rows ending with comma were
    merged with the next line, causing multiple rows to collapse into one)
  - Bump version to 1.0.1 in manifest.json, package.json, versions.json
2026-03-28 20:04:42 +01:00

31 lines
836 B
JSON

{
"name": "handwriting-to-markdown",
"version": "1.0.1",
"description": "Inline handwriting canvas with conversion to structured markdown",
"main": "main.js",
"type": "module",
"scripts": {
"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": "eslint src/"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@types/node": "^16.11.6",
"@typescript-eslint/parser": "^8.57.2",
"esbuild": "0.25.5",
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.1.9",
"globals": "^17.4.0",
"jiti": "^2.6.1",
"tslib": "2.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.57.2"
},
"dependencies": {
"obsidian": "latest"
}
}