@lingo-reader/epub-parser
Version:
An epub parser which can extract chapter contents from an epub file
51 lines • 1.3 kB
JSON
{
"name": "@lingo-reader/epub-parser",
"type": "module",
"version": "0.4.0",
"description": "An epub parser which can extract chapter contents from an epub file",
"author": "hhk-png <fangfangluo3@qq.com>",
"license": "MIT",
"homepage": "https://github.com/hhk-png/lingo-reader#readme",
"repository": {
"type": "git",
"url": "git@github.com:hhk-png/lingo-reader.git",
"directory": "packages/epub-parser"
},
"bugs": "https://github.com/hhk-png/lingo-reader/issues",
"keywords": [
"epub",
"epub-parser",
"ebook",
"ebook-parser"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"node": {
"import": "./dist/index.node.mjs",
"require": "./dist/index.node.js",
"default": "./dist/index.node.js"
},
"browser": {
"import": "./dist/index.browser.mjs",
"require": "./dist/index.browser.js",
"default": "./dist/index.browser.mjs"
}
}
},
"main": "./src/index.node.js",
"module": "./src/index.node.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"browser": "./dist/index.browser.mjs",
"dependencies": {
"fflate": "^0.8.2",
"jszip": "^3.10.1",
"@lingo-reader/shared": "^0.4.0"
},
"scripts": {
"build": "rollup -c"
}
}