omeg-lu_obsidian-bionic-rea.../package.json
OMEG-Lu 8454516d09 Initial release of Bionic Reading plugin for Obsidian
Applies bionic reading effect in Reading View by bolding the first
portion of each word. Latin-only processing, skips code blocks,
configurable fixation strength via settings tab.

Made-with: Cursor
2026-03-05 13:48:07 -05:00

22 lines
496 B
JSON

{
"name": "obsidian-bionic-reading",
"version": "1.0.0",
"description": "Bionic reading effect plugin for Obsidian",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"esbuild": "0.25.5",
"tslib": "2.4.0",
"typescript": "^5.8.3"
},
"dependencies": {
"obsidian": "latest"
}
}