mirror of
https://github.com/futurepress/epub.js.git
synced 2025-10-02 14:49:16 +02:00
36 lines
1,000 B
JSON
36 lines
1,000 B
JSON
{
|
|
"name": "epubjs",
|
|
"version": "0.5.0",
|
|
"description": "Parse and Render Epubs",
|
|
"main": "src/index.js",
|
|
"browser": "dist/epub.js",
|
|
"exports": "./src/index.js",
|
|
"types": "types/index.d.ts",
|
|
"repository": "https://github.com/futurepress/epub.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "",
|
|
"lint": "eslint -c .eslintrc.js src; exit 0",
|
|
"start": "rollup -w -c rollup.server.config.js",
|
|
"build": "rollup -c",
|
|
"watch": "rollup -w -c rollup.config.js",
|
|
"prepare": "npm run build"
|
|
},
|
|
"author": "fchasen@gmail.com",
|
|
"license": "BSD-2-Clause",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.17.9",
|
|
"@rollup/plugin-babel": "^5.3.1",
|
|
"@rollup/plugin-commonjs": "^21.0.3",
|
|
"@rollup/plugin-node-resolve": "^13.1.3",
|
|
"rollup": "^2.70.1",
|
|
"rollup-plugin-license": "^2.6.1",
|
|
"rollup-plugin-serve": "^1.1.0",
|
|
"serve": "^13.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@xmldom/xmldom": "^0.8.2",
|
|
"jszip": "^3.9.1",
|
|
"lodash": "^4.17.21"
|
|
}
|
|
}
|