@ohif/extension-cornerstone-dynamic-volume 3.13.0-beta.92 → 3.13.0-beta.94

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.
Files changed (1) hide show
  1. package/package.json +22 -19
package/package.json CHANGED
@@ -1,10 +1,13 @@
1
1
  {
2
2
  "name": "@ohif/extension-cornerstone-dynamic-volume",
3
- "version": "3.13.0-beta.92",
3
+ "version": "3.13.0-beta.94",
4
4
  "description": "OHIF extension for 4D volumes data",
5
5
  "author": "OHIF",
6
6
  "license": "MIT",
7
- "repository": "OHIF/Viewers",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "OHIF/Viewers"
10
+ },
8
11
  "main": "dist/ohif-extension-cornerstone-dynamic-volume.umd.js",
9
12
  "module": "src/index.ts",
10
13
  "engines": {
@@ -21,27 +24,17 @@
21
24
  "publishConfig": {
22
25
  "access": "public"
23
26
  },
24
- "scripts": {
25
- "dev": "cross-env NODE_ENV=development rspack build --config .webpack/webpack.dev.js --watch",
26
- "build": "cross-env NODE_ENV=production rspack build --config .webpack/webpack.prod.js",
27
- "build:package": "pnpm run build",
28
- "clean": "shx rm -rf dist",
29
- "clean:deep": "pnpm run clean && shx rm -rf node_modules",
30
- "start": "pnpm run dev",
31
- "test:unit": "jest --watchAll",
32
- "test:unit:ci": "jest --ci --runInBand --collectCoverage --passWithNoTests"
33
- },
34
27
  "peerDependencies": {
35
- "@ohif/core": "3.13.0-beta.92",
36
- "@ohif/extension-cornerstone": "3.13.0-beta.92",
37
- "@ohif/extension-default": "3.13.0-beta.92",
38
- "@ohif/i18n": "3.13.0-beta.92",
39
- "@ohif/ui": "3.13.0-beta.92",
40
28
  "dcmjs": "0.49.4",
41
29
  "dicom-parser": "1.8.21",
42
30
  "hammerjs": "2.0.8",
43
31
  "prop-types": "15.8.1",
44
- "react": "18.3.1"
32
+ "react": "18.3.1",
33
+ "@ohif/core": "3.13.0-beta.94",
34
+ "@ohif/extension-cornerstone": "3.13.0-beta.94",
35
+ "@ohif/i18n": "3.13.0-beta.94",
36
+ "@ohif/extension-default": "3.13.0-beta.94",
37
+ "@ohif/ui": "3.13.0-beta.94"
45
38
  },
46
39
  "dependencies": {
47
40
  "@babel/runtime": "7.29.7",
@@ -51,5 +44,15 @@
51
44
  },
52
45
  "devDependencies": {
53
46
  "cross-env": "7.0.3"
47
+ },
48
+ "scripts": {
49
+ "dev": "cross-env NODE_ENV=development rspack build --config .webpack/webpack.dev.js --watch",
50
+ "build": "cross-env NODE_ENV=production rspack build --config .webpack/webpack.prod.js",
51
+ "build:package": "pnpm run build",
52
+ "clean": "shx rm -rf dist",
53
+ "clean:deep": "pnpm run clean && shx rm -rf node_modules",
54
+ "start": "pnpm run dev",
55
+ "test:unit": "jest --watchAll",
56
+ "test:unit:ci": "jest --ci --runInBand --collectCoverage --passWithNoTests"
54
57
  }
55
- }
58
+ }