@cornerstonejs/nifti-volume-loader 5.0.0-beta.1 → 5.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- export declare const version = "5.0.0-beta.1";
1
+ export declare const version = "5.0.1";
@@ -1 +1 @@
1
- export const version = '5.0.0-beta.1';
1
+ export const version = '5.0.1';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cornerstonejs/nifti-volume-loader",
3
- "version": "5.0.0-beta.1",
3
+ "version": "5.0.1",
4
4
  "description": "Nifti Image Loader for Cornerstone3D",
5
5
  "module": "./dist/esm/index.js",
6
6
  "types": "./dist/esm/index.d.ts",
@@ -49,23 +49,26 @@
49
49
  },
50
50
  "scripts": {
51
51
  "prebuild": "node ../../scripts/generate-version.js ./",
52
- "build:esm": "tsc --project ./tsconfig.json",
52
+ "build:esm": "pnpm run prebuild && tsc --project ./tsconfig.json",
53
53
  "build:esm:watch": "tsc --project ./tsconfig.json --watch",
54
- "build:all": "yarn run build:esm",
54
+ "build:all": "pnpm run build:esm",
55
55
  "dev": "tsc --project ./tsconfig.json --watch",
56
- "build": "yarn run build:all",
56
+ "build": "pnpm run build:all",
57
57
  "clean": "rm -rf node_modules/.cache/storybook && shx rm -rf dist",
58
- "clean:deep": "yarn run clean && shx rm -rf node_modules",
58
+ "clean:deep": "pnpm run clean && shx rm -rf node_modules",
59
59
  "lint": "oxlint .",
60
60
  "api-check": "api-extractor --debug run ",
61
- "prepublishOnly": "yarn run build",
61
+ "prepublishOnly": "pnpm run build",
62
62
  "webpack:watch": "webpack --mode development --progress --watch --config ./.webpack/webpack.dev.js"
63
63
  },
64
64
  "dependencies": {
65
65
  "nifti-reader-js": "0.6.9"
66
66
  },
67
+ "devDependencies": {
68
+ "@cornerstonejs/core": "5.0.1"
69
+ },
67
70
  "peerDependencies": {
68
- "@cornerstonejs/core": "5.0.0-beta.1"
71
+ "@cornerstonejs/core": "5.0.1"
69
72
  },
70
73
  "contributors": [
71
74
  {
@@ -78,5 +81,5 @@
78
81
  "type": "individual",
79
82
  "url": "https://ohif.org/donate"
80
83
  },
81
- "gitHead": "269b3089ffd45d016454fde74374389d03feebac"
84
+ "gitHead": "b9a412e903308bff798b913ed0f9539bbd11380a"
82
85
  }