@ohif/extension-cornerstone 3.13.0-beta.92 → 3.13.0-beta.93

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 +21 -18
package/package.json CHANGED
@@ -1,10 +1,13 @@
1
1
  {
2
2
  "name": "@ohif/extension-cornerstone",
3
- "version": "3.13.0-beta.92",
3
+ "version": "3.13.0-beta.93",
4
4
  "description": "OHIF extension for Cornerstone",
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.umd.js",
9
12
  "module": "src/index.tsx",
10
13
  "types": "src/types/index.ts",
@@ -22,33 +25,22 @@
22
25
  "publishConfig": {
23
26
  "access": "public"
24
27
  },
25
- "scripts": {
26
- "clean": "shx rm -rf dist",
27
- "clean:deep": "pnpm run clean && shx rm -rf node_modules",
28
- "dev": "cross-env NODE_ENV=development rspack build --config .webpack/webpack.dev.js --watch",
29
- "dev:cornerstone": "pnpm run dev",
30
- "build": "cross-env NODE_ENV=production rspack build --config .webpack/webpack.prod.js",
31
- "build:package-1": "pnpm run build",
32
- "start": "pnpm run dev",
33
- "test:unit": "jest --watchAll",
34
- "test:unit:ci": "jest --ci --runInBand --collectCoverage --passWithNoTests"
35
- },
36
28
  "peerDependencies": {
37
29
  "@cornerstonejs/codec-charls": "1.2.3",
38
30
  "@cornerstonejs/codec-libjpeg-turbo-8bit": "1.2.2",
39
31
  "@cornerstonejs/codec-openjpeg": "1.3.0",
40
32
  "@cornerstonejs/codec-openjph": "2.4.7",
41
33
  "@cornerstonejs/dicom-image-loader": "5.0.2",
42
- "@ohif/core": "3.13.0-beta.92",
43
- "@ohif/extension-default": "3.13.0-beta.92",
44
- "@ohif/ui": "3.13.0-beta.92",
45
34
  "dcmjs": "0.49.4",
46
35
  "dicom-parser": "1.8.21",
47
36
  "hammerjs": "2.0.8",
48
37
  "prop-types": "15.8.1",
49
38
  "react": "18.3.1",
50
39
  "react-dom": "18.3.1",
51
- "react-resize-detector": "10.0.1"
40
+ "react-resize-detector": "10.0.1",
41
+ "@ohif/extension-default": "3.13.0-beta.93",
42
+ "@ohif/core": "3.13.0-beta.93",
43
+ "@ohif/ui": "3.13.0-beta.93"
52
44
  },
53
45
  "dependencies": {
54
46
  "@babel/runtime": "7.29.7",
@@ -73,5 +65,16 @@
73
65
  },
74
66
  "devDependencies": {
75
67
  "cross-env": "7.0.3"
68
+ },
69
+ "scripts": {
70
+ "clean": "shx rm -rf dist",
71
+ "clean:deep": "pnpm run clean && shx rm -rf node_modules",
72
+ "dev": "cross-env NODE_ENV=development rspack build --config .webpack/webpack.dev.js --watch",
73
+ "dev:cornerstone": "pnpm run dev",
74
+ "build": "cross-env NODE_ENV=production rspack build --config .webpack/webpack.prod.js",
75
+ "build:package-1": "pnpm run build",
76
+ "start": "pnpm run dev",
77
+ "test:unit": "jest --watchAll",
78
+ "test:unit:ci": "jest --ci --runInBand --collectCoverage --passWithNoTests"
76
79
  }
77
- }
80
+ }