* feat: Context menu feat: Custom context menu Adding documentation PR updates * fix: Capture tool exception * PR updates * Add fully worked out examples in the basic test mode/extension * Fix the menu display * fix: Make the commands on clicks much more configurable * Wait for load before double clicking * docs * PR changes - nothing functional, just moving things endlessly * PR comments * PR changes - rename the default context menu * Renamed the cornerstoneContextMenu to measurementsContextMenu * Add chevron right to the sub-menus
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "@ohif/extension-default",
|
|
"version": "3.0.0",
|
|
"description": "Common/default features and functionality for basic image viewing",
|
|
"author": "OHIF Core Team",
|
|
"license": "MIT",
|
|
"repository": "OHIF/Viewers",
|
|
"main": "dist/index.umd.js",
|
|
"module": "src/index.ts",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"engines": {
|
|
"node": ">=14",
|
|
"npm": ">=6",
|
|
"yarn": ">=1.18.0"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"keywords": [
|
|
"ohif-extension"
|
|
],
|
|
"scripts": {
|
|
"dev": "cross-env NODE_ENV=development webpack --config .webpack/webpack.dev.js --watch --debug --output-pathinfo",
|
|
"dev:dicom-pdf": "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/i18n": "^1.0.0",
|
|
"dcmjs": "^0.29.4",
|
|
"dicomweb-client": "^0.8.4",
|
|
"prop-types": "^15.6.2",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-i18next": "^10.11.0",
|
|
"webpack": "^5.50.0",
|
|
"webpack-merge": "^5.7.3"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.20.13",
|
|
"@cornerstonejs/calculate-suv": "^1.0.3"
|
|
}
|
|
}
|