* added utilities to get frameNumber from imageId and add frameNumber to per-frame instance copy * Fix measurements' display texts on the Measurements Panel to have the correct instance number and frame number * fixed minor React bugs (errors on console) * fixed React's console bugs that are logged for some series that doesn't have "description" * bug fix - multi-frame files was not loading frames correctly. It was loading Frame 1 twice, and not loading the last frame. Due to wrong frame number indexing (frame number begins with 1, not 0) * metadata parser fix - providing default values of imagePlaneModule * measurement SR support on multi-frame DICOM * bug fix - jumping to the selected measurment on multi-frame DICOM * upgrade dcmjs dependency to 2.8.1 * StudySummary component - allow "description" to be null * make getUIDsFromImageID() method public from MetadataProvider * imageId usage fixes to be more stable * change the variable name to be more meaningful * fix metaProvider importing * for(...of) instead of for(i=0;i<length;..) as that doesn't assume anything about the layout/design and just gets next until done. * use Array.findIndex instead of plain for loop * use ReferencedSOPSequence[0] - because the ReferencedSOPSequence is an array that happens to have attributes of child zero when of length 1, but you shouldn't count on that. * DisplaySetService.getDisplaySetForSOPInstanceUID() - added optional frameNumber parameter for future usage : now they are just ignored as we are not supporting multiframe splits * simple code refactoring * refactoring for checking undefined values - mappedAnnotations * remove unreachable code * code refactoring - prefer conditional chaining * fix how we access imageIds of viewport (StackViewport)
57 lines
1.5 KiB
JSON
57 lines
1.5 KiB
JSON
{
|
|
"name": "@ohif/extension-cornerstone",
|
|
"version": "3.0.0",
|
|
"description": "OHIF extension for Cornerstone",
|
|
"author": "OHIF",
|
|
"license": "MIT",
|
|
"repository": "OHIF/Viewers",
|
|
"main": "dist/index.umd.js",
|
|
"module": "src/index.tsx",
|
|
"engines": {
|
|
"node": ">=10",
|
|
"npm": ">=6",
|
|
"yarn": ">=1.16.0"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"dev": "cross-env NODE_ENV=development webpack --config .webpack/webpack.dev.js --watch --debug --output-pathinfo",
|
|
"dev:cornerstone": "yarn run dev",
|
|
"build": "cross-env NODE_ENV=production webpack --config .webpack/webpack.prod.js",
|
|
"build:package": "yarn run build",
|
|
"start": "yarn run dev"
|
|
},
|
|
"peerDependencies": {
|
|
"@ohif/core": "^3.0.0",
|
|
"@ohif/ui": "^2.0.0",
|
|
"cornerstone-wado-image-loader": "^4.2.1",
|
|
"dcmjs": "^0.28.1",
|
|
"dicom-parser": "^1.8.9",
|
|
"hammerjs": "^2.0.8",
|
|
"prop-types": "^15.6.2",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-resize-detector": "^6.7.6"
|
|
},
|
|
"devDependencies": {
|
|
"lodash": "4.17.21"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "7.17.9",
|
|
"@cornerstonejs/core": "^0.16.1",
|
|
"@cornerstonejs/streaming-image-volume-loader": "^0.4.23",
|
|
"@cornerstonejs/tools": "^0.24.1",
|
|
"@kitware/vtk.js": "^24.18.7",
|
|
"dom-to-image": "^2.6.0",
|
|
"lodash.debounce": "4.0.8",
|
|
"lodash.merge": "^4.6.2",
|
|
"shader-loader": "^1.3.1",
|
|
"worker-loader": "^3.0.8"
|
|
}
|
|
}
|