
* Refactored all the code that opens the reader to use a unified function. Added new library and setup basic pdf reader route. * Progress saving is implemented. Targeting ES6 now. * Customized the toolbar to remove things we don't want, made the download button download with correct filename. Adjusted zoom setting to work well on first load regardless of device. * Stream the pdf file to the UI rather than handling the download ourselves. * Started implementing a custom toolbar. * Fixed up the jump bar calculations * Fixed filtering being broken * Pushing up for Robbie to cleanup the toolbar layout * Added an additional button. Working on logic while robbie takes styling * Tried to fix the code for robbie * Tweaks for fonts * Added button for book mode, but doesn't seem to work after renderer is built * Removed book mode * Removed the old image caching code for pdfs as it's not needed with new reader * Removed the interfaces to extract images from pdf. * Fixed original pagination area not scaling correctly * Integrated series remove events to library detail * Cleaned up the getter naming convention * Cleaned up some of the manga reader code to reduce cluter and improve re-use * Implemented Japanese parser support for volume and chapters. * Fixed a bug where resetting scroll in manga reader wasn't working * Fixed a bug where word count grew on each scan. * Removed unused variable * Ensure we calculate word count on files with their own cache timestamp * Adjusted size of reel headers * Put some code in for moving on original image with keyboard, but it's not in use. * Cleaned up the css for the pdf reader * Cleaned up the code * Tweaked the list item so we show scrollbar now when fully read
86 lines
2.4 KiB
JSON
86 lines
2.4 KiB
JSON
{
|
|
"name": "kavita-webui",
|
|
"version": "0.4.2",
|
|
"scripts": {
|
|
"ng": "ng",
|
|
"start": "ng serve",
|
|
"build": "ng build",
|
|
"prod": "ng build --configuration production",
|
|
"explore": "ng build --stats-json && webpack-bundle-analyzer dist/stats.json",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"lint": "ng lint",
|
|
"e2e": "ng e2e"
|
|
},
|
|
"private": true,
|
|
"dependencies": {
|
|
"@angular-slider/ngx-slider": "^2.0.3",
|
|
"@angular/animations": "~13.2.2",
|
|
"@angular/cdk": "^13.2.2",
|
|
"@angular/common": "~13.2.2",
|
|
"@angular/compiler": "~13.2.2",
|
|
"@angular/core": "~13.2.2",
|
|
"@angular/forms": "~13.2.2",
|
|
"@angular/localize": "~13.2.2",
|
|
"@angular/platform-browser": "~13.2.2",
|
|
"@angular/platform-browser-dynamic": "~13.2.2",
|
|
"@angular/router": "~13.2.2",
|
|
"@fortawesome/fontawesome-free": "^6.0.0",
|
|
"@iharbeck/ngx-virtual-scroller": "^13.0.4",
|
|
"@microsoft/signalr": "^6.0.2",
|
|
"@ng-bootstrap/ng-bootstrap": "^12.1.2",
|
|
"@popperjs/core": "^2.11.2",
|
|
"@types/file-saver": "^2.0.5",
|
|
"bootstrap": "^5.1.2",
|
|
"bowser": "^2.11.0",
|
|
"eventsource": "^2.0.2",
|
|
"file-saver": "^2.0.5",
|
|
"lazysizes": "^5.3.2",
|
|
"ng-circle-progress": "^1.6.0",
|
|
"ngx-color-picker": "^12.0.0",
|
|
"ngx-extended-pdf-viewer": "^13.5.2",
|
|
"ngx-file-drop": "^13.0.0",
|
|
"ngx-infinite-scroll": "^13.0.2",
|
|
"ngx-toastr": "^14.2.1",
|
|
"requires": "^1.0.2",
|
|
"rxjs": "~7.5.4",
|
|
"swiper": "^8.0.6",
|
|
"tslib": "^2.3.1",
|
|
"webpack-bundle-analyzer": "^4.5.0",
|
|
"zone.js": "~0.11.4"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/build-angular": "~13.2.3",
|
|
"@angular/cli": "^13.2.3",
|
|
"@angular/compiler-cli": "~13.2.2",
|
|
"@playwright/test": "^1.20.2",
|
|
"@types/jest": "^27.4.0",
|
|
"@types/node": "^17.0.17",
|
|
"codelyzer": "^6.0.2",
|
|
"jest": "^27.5.1",
|
|
"jest-preset-angular": "^11.1.0",
|
|
"karma-coverage": "~2.2.0",
|
|
"playwright": "^1.20.2",
|
|
"protractor": "~7.0.0",
|
|
"ts-node": "~10.5.0",
|
|
"tslint": "^6.1.3",
|
|
"typescript": "~4.5.5"
|
|
},
|
|
"jest": {
|
|
"preset": "jest-preset-angular",
|
|
"setupFilesAfterEnv": [
|
|
"<rootDir>/setupJest.ts"
|
|
],
|
|
"testPathIgnorePatterns": [
|
|
"<rootDir>/node_modules/",
|
|
"<rootDir>/dist/"
|
|
],
|
|
"globals": {
|
|
"ts-jest": {
|
|
"tsConfig": "<rootDir>/tsconfig.spec.json",
|
|
"stringifyContentPathRegex": "\\.html$"
|
|
}
|
|
}
|
|
}
|
|
}
|