mirror of
https://github.com/kvasonaft/fb2-reader.git
synced 2026-07-22 08:31:14 +00:00
Bump version to 0.2.0 across manifest, package and versions files, and add a CHANGELOG. Highlights: a paged reading mode, a Solarized Dark theme, iOS/iPadOS font suggestions, text selection/copying, and various theme and default tweaks. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
22 lines
711 B
JSON
22 lines
711 B
JSON
{
|
|
"name": "fiction-book-reader",
|
|
"version": "0.2.0",
|
|
"description": "Read FictionBook (.fb2) files as formatted books with chapters, footnotes, images, and remembered reading positions.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "esbuild src/main.ts --bundle --external:obsidian --format=cjs --target=es2021 --outfile=main.js --sourcemap=inline --watch",
|
|
"build": "tsc -noEmit -skipLibCheck && esbuild src/main.ts --bundle --external:obsidian --format=cjs --target=es2021 --outfile=main.js"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"fb2"
|
|
],
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"esbuild": "^0.21.0",
|
|
"obsidian": "latest",
|
|
"tslib": "^2.6.0",
|
|
"typescript": "^5.4.0"
|
|
}
|
|
}
|