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
4 changes: 1 addition & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
name: Release (tag)

on:
push:
tags:
- 'v*'
workflow_dispatch:

permissions:
contents: write
Expand Down
13 changes: 11 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
{
"name": "browzarr",
"version": "0.5.1",
"version": "0.6.0",
Comment thread
lazarusA marked this conversation as resolved.
"description": "A browser-based visualization toolkit for exploring and analyzing Zarr data stores.",
"type": "module",
"keywords": [
"zarr",
"netcdf",
"icechunk",
"3d",
"graphics",
"visualization",
"threejs",
"rendering",
"geometry",
Expand All @@ -31,8 +35,12 @@
"bugs": {
"url": "https://github.com/EarthyScience/Browzarr/issues/"
},
"private": true,
"packageManager": "pnpm@10.11.1",
"files": [
"out/",
"README.md",
"LICENSE"
],
Comment thread
lazarusA marked this conversation as resolved.
"scripts": {
"postinstall": "node src/hooks/copy-wasm.mjs",
"prBuild": "pnpm buildRepo",
Expand All @@ -42,6 +50,7 @@
"rmBuild": "pnpm -r exec rm -rf out",
"build": "next build",
"start": "next start",
"prepublishOnly": "pnpm run rmBuild && pnpm run build",
Comment thread
lazarusA marked this conversation as resolved.
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --max-warnings=100"
Expand Down
Loading