* fix(dependencies): Bump react-cornerstone-viewport to 0.1.29 * fix(dependencies): Bump ohif-cornerstone-extension to 0.0.32 * fix(layout): Get missing display set fields in viewport specific data from the original display set * fix(layout): Cache the viewport data to be used for the replaced viewport when it is empty since viewportSpecificData is cleaned when viewport is changed
98 lines
2.6 KiB
JSON
98 lines
2.6 KiB
JSON
{
|
|
"name": "ohif-cornerstone-extension",
|
|
"version": "0.0.32",
|
|
"description": "OHIF extension for Cornerstone",
|
|
"author": "OHIF",
|
|
"license": "MIT",
|
|
"repository": "OHIF/Viewers",
|
|
"main": "dist/index.umd.js",
|
|
"module": "dist/index.es.js",
|
|
"jsnext:main": "dist/index.es.js",
|
|
"engines": {
|
|
"node": ">=8",
|
|
"npm": ">=5"
|
|
},
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"prepublishOnly": "npm run build",
|
|
"start": "rollup -c -w",
|
|
"lint": "eslint -c .eslintrc --fix src && prettier --single-quote --write src/**/*.{js,jsx,json,css}"
|
|
},
|
|
"peerDependencies": {
|
|
"cornerstone-core": "^2.2.8",
|
|
"cornerstone-math": "^0.1.8",
|
|
"cornerstone-tools": "^3.1.0",
|
|
"cornerstone-wado-image-loader": "^2.2.3",
|
|
"dcmjs": "^0.3.8",
|
|
"dicom-parser": "^1.8.3",
|
|
"hammerjs": "^2.0.8",
|
|
"ohif-core": "^0.3.5",
|
|
"prop-types": "^15.6.2",
|
|
"react": "^15.0.0 || ^16.0.0",
|
|
"react-dom": "^15.0.0 || ^16.0.0",
|
|
"react-redux": "^6.0.0",
|
|
"react-resize-detector": "^3.4.0",
|
|
"react-viewerbase": "^0.2.10",
|
|
"redux": "^4.0.1"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.2.0",
|
|
"classnames": "^2.2.6",
|
|
"lodash.throttle": "^4.1.1",
|
|
"react-cornerstone-viewport": "0.1.29"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.2.2",
|
|
"@babel/plugin-external-helpers": "^7.2.0",
|
|
"@babel/plugin-proposal-class-properties": "^7.2.3",
|
|
"@babel/plugin-transform-runtime": "^7.2.0",
|
|
"@babel/preset-env": "^7.2.3",
|
|
"@babel/preset-react": "^7.0.0",
|
|
"babel-eslint": "^10.0.1",
|
|
"cross-env": "^5.2.0",
|
|
"eslint": "5.13.0",
|
|
"eslint-plugin-import": "^2.14.0",
|
|
"eslint-plugin-node": "^8.0.0",
|
|
"eslint-plugin-promise": "^4.0.1",
|
|
"eslint-plugin-react": "^7.11.1",
|
|
"gh-pages": "^2.0.1",
|
|
"husky": "^1.3.1",
|
|
"lint-staged": "^8.1.0",
|
|
"lodash.clonedeep": "^4.5.0",
|
|
"prettier": "^1.15.3",
|
|
"react": "^16.6.3",
|
|
"react-dom": "^16.6.3",
|
|
"rollup": "^1.1.2",
|
|
"rollup-plugin-babel": "^4.2.0",
|
|
"rollup-plugin-commonjs": "^9.2.0",
|
|
"rollup-plugin-node-builtins": "^2.1.2",
|
|
"rollup-plugin-node-resolve": "^4.0.0",
|
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
|
"rollup-plugin-postcss": "^2.0.3",
|
|
"rollup-plugin-url": "^2.1.0",
|
|
"stylelint": "^9.9.0",
|
|
"stylelint-config-recommended": "^2.1.0",
|
|
"stylus": "^0.54.5"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"src/**/*.{js,jsx,json,css}": [
|
|
"prettier --single-quote --write",
|
|
"git add"
|
|
]
|
|
},
|
|
"browserslist": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not ie <= 11",
|
|
"not op_mini all"
|
|
],
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|