@cornerstonejs/adapters 3.32.4 → 3.32.6

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.
package/README.md CHANGED
@@ -9,17 +9,17 @@
9
9
  # History
10
10
 
11
11
  - 2014
12
- - [DCMTK](dcmtk.org) cross compiled to javascript at [CTK Hackfest](http://www.commontk.org/index.php/CTK-Hackfest-May-2014). While this was useful and powerful, it was heavyweight for typical web usage.
12
+ - [DCMTK](dcmtk.org) cross compiled to javascript at [CTK Hackfest](http://www.commontk.org/index.php/CTK-Hackfest-May-2014). While this was useful and powerful, it was heavyweight for typical web usage.
13
13
  - 2016
14
- - A [Medical Imaging Web Appliction meeting at Stanford](http://qiicr.org/web/outreach/Medical-Imaging-Web-Apps/) and [follow-on hackfest in Boston](http://qiicr.org/web/outreach/MIWS-hackfest/) helped elaborate the needs for manipulating DICOM in pure Javascript.
15
- - Based on [DICOM Part 10 read/write code](https://github.com/OHIF/dicom-dimse) initiated by Weiwei Wu of [OHIF](http://ohif.org), Steve Pieper [developed further features](https://github.com/pieper/sites/tree/gh-pages/dcmio) and [examples of creating multiframe and segmentation objects](https://github.com/pieper/sites/tree/gh-pages/DICOMzero) discussed with the community at RSNA
14
+ - A [Medical Imaging Web Appliction meeting at Stanford](http://qiicr.org/web/outreach/Medical-Imaging-Web-Apps/) and [follow-on hackfest in Boston](http://qiicr.org/web/outreach/MIWS-hackfest/) helped elaborate the needs for manipulating DICOM in pure Javascript.
15
+ - Based on [DICOM Part 10 read/write code](https://github.com/OHIF/dicom-dimse) initiated by Weiwei Wu of [OHIF](http://ohif.org), Steve Pieper [developed further features](https://github.com/pieper/sites/tree/gh-pages/dcmio) and [examples of creating multiframe and segmentation objects](https://github.com/pieper/sites/tree/gh-pages/DICOMzero) discussed with the community at RSNA
16
16
  - 2017
17
- - At [NA-MIC Project Week 25](https://na-mic.org/wiki/Project_Week_25) Erik Ziegler and Steve Pieper [worked](https://na-mic.org/wiki/Project_Week_25/DICOM_Segmentation_Support_for_Cornerstone_and_OHIF_Viewer)
18
- with the community to define some example use cases to mix the pure JavaScript DICOM code with Cornerstone and [CornerstoneTools](https://github.com/chafey/cornerstoneTools).
17
+ - At [NA-MIC Project Week 25](https://na-mic.org/wiki/Project_Week_25) Erik Ziegler and Steve Pieper [worked](https://na-mic.org/wiki/Project_Week_25/DICOM_Segmentation_Support_for_Cornerstone_and_OHIF_Viewer)
18
+ with the community to define some example use cases to mix the pure JavaScript DICOM code with Cornerstone and [CornerstoneTools](https://github.com/chafey/cornerstoneTools).
19
19
  - 2018-2022
20
- - Work continues to develop SR and SEG support to [OHIFViewer](http://ohif.org) allow interoperability with [DICOM4QI](https://legacy.gitbook.com/book/qiicr/dicom4qi/details)
20
+ - Work continues to develop SR and SEG support to [OHIFViewer](http://ohif.org) allow interoperability with [DICOM4QI](https://legacy.gitbook.com/book/qiicr/dicom4qi/details)
21
21
  - 2023
22
- - Moved the adapters into cornerstone3D from dcmjsj
22
+ - Moved the adapters into cornerstone3D from dcmjsj
23
23
 
24
24
  # Support
25
25
 
@@ -1 +1 @@
1
- export declare const version = "3.32.4";
1
+ export declare const version = "3.32.6";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cornerstonejs/adapters",
3
- "version": "3.32.4",
3
+ "version": "3.32.6",
4
4
  "description": "Adapters for Cornerstone3D to/from formats including DICOM SR and others",
5
5
  "module": "./dist/esm/index.js",
6
6
  "types": "./dist/esm/index.d.ts",
@@ -65,11 +65,10 @@
65
65
  "clean:deep": "yarn run clean && shx rm -rf node_modules",
66
66
  "dev": "rollup --watch -c rollup.config.mjs",
67
67
  "build:all": "yarn build",
68
- "format-check": "npx eslint ./src --quiet",
69
68
  "api-check": "echo 'No API check for this package'",
70
69
  "start": "rollup --watch -c rollup.config.mjs",
71
70
  "format": "prettier --write 'src/**/*.js' 'test/**/*.js'",
72
- "lint": "eslint --fix .",
71
+ "lint": "oxlint .",
73
72
  "prebuild": "node ../../scripts/generate-version.js ./"
74
73
  },
75
74
  "repository": {
@@ -90,8 +89,8 @@
90
89
  "ndarray": "^1.0.19"
91
90
  },
92
91
  "peerDependencies": {
93
- "@cornerstonejs/core": "^3.32.4",
94
- "@cornerstonejs/tools": "^3.32.4"
92
+ "@cornerstonejs/core": "^3.32.6",
93
+ "@cornerstonejs/tools": "^3.32.6"
95
94
  },
96
- "gitHead": "ab88654e25aefb7f43a807c0f38ce601af4c20a4"
95
+ "gitHead": "af40281b222938a78ea1db18d9dd1b85a975e99c"
97
96
  }