* feat: update to prerelease of WADO Image Loader, add copy plugin to pull dist/dynamic-import into OHIF * fix: Set empty public path * perf: Add webpackPrefetch tags to lazy loaded components * Switch to using webpack alias to use dynamic import version of WADO Image Loader * fix lockfile * prevent polyfilling zlib * bump to wado image loader 4.0.3 with fix for public path
42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"name": "@ohif/mode-longitudinal",
|
|
"version": "0.0.1",
|
|
"description": "Longitudinal Workflow",
|
|
"author": "OHIF",
|
|
"license": "MIT",
|
|
"repository": "OHIF/Viewers",
|
|
"main": "dist/index.umd.js",
|
|
"module": "src/index.js",
|
|
"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",
|
|
"test:unit": "jest --watchAll",
|
|
"test:unit:ci": "jest --ci --runInBand --collectCoverage --passWithNoTests"
|
|
},
|
|
"peerDependencies": {
|
|
"@ohif/core": "^2.12.3"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "7.7.6"
|
|
},
|
|
"devDependencies": {
|
|
"webpack": "^5.50.0",
|
|
"webpack-merge": "^5.7.3"
|
|
}
|
|
}
|