
* Refactored manga reader to use a regular image element for all cases except for split page rendering * Fixed a weird issue where ordering of routes broke redireciton in one case. * Added comments to a lot of the enums and refactored READER_MODE to be ReaderMode and much more clearer on function. * Added bookmark effect on image renderer * Implemented keyboard shortcut modal * Introduced the new layout mode into the manga reader, updated preferences, and updated bookmark to work for said functionality. Need to implement renderer now * Hooked in ability to show double pages but all the css is broken. Committing for help from Robbie. * Fixed an issue where Language tag in metadata edit wasn't being updated * Fixed up some styling on mobile for edit series detail * Some css fixes * Hooked in ability to set background color on reader (not implemented in reader). Optimized some code in ArchiveService to avoid extra memory allocations. * Hooked in background color, generated the migration * Fixed a bug when paging to cover images, full height would be used instead of full-width for cover images * New option in reader to show screen hints (on by default). You can disable in user preferences which will stop showing pagination overlay hints * Lots of fixes for double rendering mode * Bumped the amount of cached pages to 8 * Fixed an issue where dropdowns weren't being locked on form manipulation
81 lines
2.3 KiB
JSON
81 lines
2.3 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",
|
|
"@microsoft/signalr": "^6.0.2",
|
|
"@ng-bootstrap/ng-bootstrap": "^12.0.0",
|
|
"@ngx-lite/nav-drawer": "^0.4.7",
|
|
"@ngx-lite/util": "0.0.1",
|
|
"@popperjs/core": "^2.11.2",
|
|
"@types/file-saver": "^2.0.5",
|
|
"bootstrap": "^5.1.2",
|
|
"bowser": "^2.11.0",
|
|
"file-saver": "^2.0.5",
|
|
"lazysizes": "^5.3.2",
|
|
"ng-circle-progress": "^1.6.0",
|
|
"ngx-color-picker": "^12.0.0",
|
|
"ngx-file-drop": "^13.0.0",
|
|
"ngx-toastr": "^14.2.1",
|
|
"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",
|
|
"@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",
|
|
"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$"
|
|
}
|
|
}
|
|
}
|
|
}
|