110 lines
3.0 KiB
JSON
110 lines
3.0 KiB
JSON
{
|
|
"name": "@ohif/extension-vtk",
|
|
"version": "0.1.6",
|
|
"description": "OHIF extension for VTK.js",
|
|
"author": "OHIF",
|
|
"license": "MIT",
|
|
"repository": "OHIF/Viewers",
|
|
"main": "dist/index.umd.js",
|
|
"engines": {
|
|
"node": ">=8",
|
|
"npm": ">=5"
|
|
},
|
|
"scripts": {
|
|
"build": "webpack --progress --colors --mode development",
|
|
"build:release": "webpack --progress --colors --mode production",
|
|
"start": "webpack --watch --progress --colors --mode development",
|
|
"prepare": "yarn run build:release",
|
|
"predeploy": "cd example && yarn install && yarn run build:release",
|
|
"prepublishOnly": "yarn install && yarn run build:release",
|
|
"lint": "eslint -c .eslintrc --fix src && prettier --single-quote --write src/**/*.{js,jsx,json,css}"
|
|
},
|
|
"peerDependencies": {
|
|
"@ohif/i18n": "0.2.2",
|
|
"cornerstone-core": "^2.2.8",
|
|
"cornerstone-wado-image-loader": "^2.2.3",
|
|
"dcmjs": "^0.4.7",
|
|
"dicom-parser": "^1.8.3",
|
|
"i18next": "^17.0.3",
|
|
"i18next-browser-languagedetector": "^3.0.1",
|
|
"ohif-core": "^0.6.0",
|
|
"prop-types": "^15.7.2",
|
|
"react": "^16.8.6",
|
|
"react-dom": "^16.8.6",
|
|
"react-i18next": "^10.11.0",
|
|
"react-redux": "^7.1.0",
|
|
"react-resize-detector": "^4.2.0",
|
|
"react-viewerbase": "^0.15.1",
|
|
"redux": "^4.0.1"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.4.5",
|
|
"react-vtkjs-viewport": "0.0.11",
|
|
"vtk.js": "^9.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.4.5",
|
|
"@babel/plugin-external-helpers": "^7.2.0",
|
|
"@babel/plugin-proposal-class-properties": "^7.4.4",
|
|
"@babel/plugin-transform-runtime": "^7.4.4",
|
|
"@babel/preset-env": "^7.4.5",
|
|
"@babel/preset-react": "^7.0.0",
|
|
"babel-eslint": "^10.0.1",
|
|
"babel-loader": "^8.0.6",
|
|
"cornerstone-tools": "^3.13.0",
|
|
"cornerstone-wado-image-loader": "^2.2.3",
|
|
"cross-env": "^5.2.0",
|
|
"dcmjs": "^0.4.7",
|
|
"dicom-parser": "^1.8.3",
|
|
"eslint": "5.16.0",
|
|
"eslint-plugin-import": "^2.17.3",
|
|
"eslint-plugin-node": "^9.1.0",
|
|
"eslint-plugin-promise": "^4.1.1",
|
|
"eslint-plugin-react": "^7.13.0",
|
|
"gh-pages": "^2.0.1",
|
|
"husky": "^2.4.1",
|
|
"i18next": "^17.0.3",
|
|
"i18next-browser-languagedetector": "^3.0.1",
|
|
"lint-staged": "^8.2.0",
|
|
"ohif-core": "^0.7.0",
|
|
"prettier": "^1.18.2",
|
|
"react": "^16.6.3",
|
|
"react-dom": "^16.6.3",
|
|
"react-i18next": "^10.11.0",
|
|
"react-redux": "^7.1.0",
|
|
"react-viewerbase": "^0.15.1",
|
|
"redux": "^4.0.1",
|
|
"shader-loader": "^1.3.1",
|
|
"stylelint": "^10.1.0",
|
|
"stylelint-config-recommended": "^2.2.0",
|
|
"stylus": "^0.54.5",
|
|
"webpack": "^4.33.0",
|
|
"webpack-cli": "^3.3.4",
|
|
"worker-loader": "^2.0.0"
|
|
},
|
|
"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",
|
|
"README.md"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|