epub-reader/package.json

46 lines
1.1 KiB
JSON
Raw Normal View History

2020-12-31 12:19:49 +08:00
{
"name": "org.bytedo.epub",
"version": "2.1.2",
"description": "E-pub Reader",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder",
"pack:mac": "electron-builder --mac"
},
"author": {
"name": "yutent",
"email": "yutent.io@gmail.com"
},
"homepage": "https://yutent.top",
"license": "MIT",
"build": {
"appId": "org.bytedo.epub",
"productName": "E-pub Reader",
"copyright": "Copyright © 2019 ${author}",
"directories": {
"buildResources": "icons",
"output": "build"
},
"electronDownload": {
"version": "11.0.4",
"mirror": "https://npm.taobao.org/mirrors/electron/"
},
2021-01-05 18:37:05 +08:00
"files": ["src/**/*", "node_modules/iofs/*", "node_modules/epub/*"],
2020-12-31 12:19:49 +08:00
"mac": {
2021-01-05 18:37:05 +08:00
"category": "public.app-category.utilities",
2020-12-31 12:19:49 +08:00
"target": "dmg",
"icon": "icons/app.icns",
"darkModeSupport": false
}
},
"devDependencies": {
"electron": "11.0.4",
"electron-builder": "^22.1.0"
},
"dependencies": {
2021-01-05 18:37:05 +08:00
"epub": "^1.2.1",
2020-12-31 12:19:49 +08:00
"iofs": "^1.3.2"
}
}