kvasonaft_fb2-reader/package.json
kvasonaft e3483ae946 Rename plugin id to fiction-book-reader
The manifest id allows only lowercase letters and hyphens, so the digit
in "fb2-reader" is invalid. Display name stays "FB2 Reader".

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-17 00:01:48 +03:00

22 lines
646 B
JSON

{
"name": "fiction-book-reader",
"version": "0.1.0",
"description": "Read FictionBook (.fb2) files directly in Obsidian.",
"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"
}
}