mirror of
https://github.com/omeg-lu/obsidian-bionic-reading.git
synced 2026-07-22 15:00:31 +00:00
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
22 lines
496 B
JSON
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"
|
|
}
|
|
}
|