mirror of
https://github.com/bkindler/imagefull.git
synced 2026-07-22 06:05:53 +00:00
- Replace img.style.transform with setCssProps/CSS custom properties (lint-compliant) - Switch classList to Obsidian toggleClass/addClass/removeClass helpers - Remove unused async from onload, remove dead panning state - Track open viewers so onunload closes all overlays cleanly - Translate hint text and description to English for directory - Add LICENSE (MIT), README, .gitignore, package.json, eslint config - Stop tracking MEMORY.md (dev-only artifact)
22 lines
583 B
JSON
22 lines
583 B
JSON
{
|
|
"name": "imagefull",
|
|
"version": "1.0.0",
|
|
"description": "Open embedded images fullscreen with double-click. Pinch to zoom, two-finger swipe to pan.",
|
|
"main": "main.js",
|
|
"author": "Björn Kindler",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/bkindler/imagefull.git"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint main.js"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^8.58.2",
|
|
"@typescript-eslint/parser": "^8.58.2",
|
|
"eslint": "^9.17.0",
|
|
"eslint-plugin-no-unsanitized": "^4.1.5",
|
|
"eslint-plugin-obsidianmd": "latest"
|
|
}
|
|
}
|