* [refactor] measurement service mapping files - rename to .ts files * [fix] RectangleROI - measurement service mapping _getReport() function - tool name fix * [feat] added CircleROI tool from updated cornerstone3D * [refactor] fix for typescript strong typing warnings * [feat] cornerstone-dicom-sr extension - added CircleROI tool * [feat] added toolbar button for CircleROI tool * [doc] doc updates for CircleROI tool * [update] library - dcmjs to 0.29.5 * [fix] roundNumber() function when given strings * [fix] refactor after upgrading conerstonejs library 0.49.0 * yarn.lock file change
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "@ohif/extension-dicom-video",
|
|
"version": "3.0.1",
|
|
"description": "OHIF extension for video display",
|
|
"author": "OHIF",
|
|
"license": "MIT",
|
|
"repository": "OHIF/Viewers",
|
|
"main": "dist/index.umd.js",
|
|
"module": "src/index.tsx",
|
|
"engines": {
|
|
"node": ">=14",
|
|
"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",
|
|
"build": "cross-env NODE_ENV=production webpack --config .webpack/webpack.prod.js",
|
|
"build:package": "yarn run build",
|
|
"start": "yarn run dev",
|
|
"test:unit": "jest --watchAll",
|
|
"test:unit:ci": "jest --ci --runInBand --collectCoverage --passWithNoTests"
|
|
},
|
|
"peerDependencies": {
|
|
"@ohif/core": "^3.0.0",
|
|
"@ohif/ui": "^2.0.0",
|
|
"dcmjs": "^0.29.5",
|
|
"dicom-parser": "^1.8.9",
|
|
"hammerjs": "^2.0.8",
|
|
"prop-types": "^15.6.2",
|
|
"react": "^17.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.20.13",
|
|
"classnames": "^2.3.2"
|
|
}
|
|
}
|