mirror of
https://github.com/caronchen/obsidian-epub-plugin.git
synced 2026-07-22 06:30:33 +00:00
37 lines
1 KiB
JSON
37 lines
1 KiB
JSON
{
|
|
"name": "obsidian-epub-plugin",
|
|
"version": "1.0.3",
|
|
"description": "This is an ePub reader plugin for Obsidian. Can open document with \".epub\" file extension.",
|
|
"main": "src/main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [
|
|
"epub",
|
|
"obsidian",
|
|
"obsidian-plugin"
|
|
],
|
|
"author": "caronchen",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.6",
|
|
"@types/react": "^18.0.8",
|
|
"@types/react-dom": "^18.0.3",
|
|
"@typescript-eslint/eslint-plugin": "^5.2.0",
|
|
"@typescript-eslint/parser": "^5.2.0",
|
|
"builtin-modules": "^3.2.0",
|
|
"esbuild": "^0.13.12",
|
|
"obsidian": "latest",
|
|
"tslib": "^2.3.1",
|
|
"typescript": "^4.4.4"
|
|
},
|
|
"dependencies": {
|
|
"epubjs": "^0.3.93",
|
|
"react": "npm:@preact/compat@^17.0.3",
|
|
"react-dom": "npm:@preact/compat@^17.0.3",
|
|
"react-reader": "^1.0.2",
|
|
"use-local-storage-state": "^17.3.0"
|
|
}
|
|
}
|