Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

## [0.2.0] - 2026-05-25

### Added

- Support for OpenSeadragon 6

Comment thread
jwindhager marked this conversation as resolved.
## [0.1.2] - 2026-05-25

### Added
Expand Down Expand Up @@ -56,7 +62,8 @@ Complete package.json

Initial release

[unreleased]: https://github.com/TissUUmaps/OMEZarrTileSource/compare/v0.1.2...HEAD
[unreleased]: https://github.com/TissUUmaps/OMEZarrTileSource/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/TissUUmaps/OMEZarrTileSource/compare/v0.1.2...v0.2.0
[0.1.2]: https://github.com/TissUUmaps/OMEZarrTileSource/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/TissUUmaps/OMEZarrTileSource/compare/v0.0.3...v0.1.1
[0.0.3]: https://github.com/TissUUmaps/OMEZarrTileSource/compare/v0.0.2...v0.0.3
Expand Down
37 changes: 18 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "omezarr-tilesource",
"version": "0.1.2",
"version": "0.2.0",
"description": "An OpenSeadragon tile source for the OME-Zarr bioimage file format",
"homepage": "https://github.com/TissUUmaps/OMEZarrTileSource#readme",
"bugs": "https://github.com/TissUUmaps/OMEZarrTileSource/issues",
Expand Down Expand Up @@ -38,37 +38,36 @@
"preview": "vite preview"
},
"dependencies": {
"@zarrita/storage": "^0.1.4",
"ome-zarr.js": "^0.0.17",
"zarrita": "^0.5.4"
"@zarrita/storage": "0.2.0",
"ome-zarr.js": "0.0.19",
"zarrita": "0.5.4"
},
"peerDependencies": {
"openseadragon": "^5.0.1"
"openseadragon": ">=5.0.1 <7.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@microsoft/api-extractor": "^7.58.2",
"@microsoft/api-extractor": "^7.58.7",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/openseadragon": "^5.0.2",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^10.2.0",
"@vitest/coverage-v8": "^4.1.7",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"openseadragon": "^5.0.1",
"prettier": "^3.8.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1",
"unplugin-dts": "1.0.0-beta.6",
"vite": "^7.3.2",
"vite-plugin-node-polyfills": "^0.24.0",
"vitest": "^4.1.4"
"lint-staged": "^17.0.5",
Comment thread
jwindhager marked this conversation as resolved.
"openseadragon": ">=5.0.1 <7.0.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4",
"unplugin-dts": "1.0.1",
"vite": "^8.0.14",
"vite-plugin-node-polyfills": "^0.28.0",
"vitest": "^4.1.7"
},
"lint-staged": {
"**/*.{js,ts}": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
},
"engines": {
"node": ">=20.19.0"
"node": ">=22.22.1"
Comment thread
jwindhager marked this conversation as resolved.
}
}
Loading
Loading