@ohif/extension-default 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@ohif/extension-default",
3
+ "version": "3.0.0",
4
+ "description": "Common/default features and functionality for basic image viewing",
5
+ "author": "OHIF Core Team",
6
+ "license": "MIT",
7
+ "repository": "OHIF/Viewers",
8
+ "main": "dist/ohif-extension-default.umd.js",
9
+ "module": "src/index.ts",
10
+ "publishConfig": {
11
+ "access": "public"
12
+ },
13
+ "engines": {
14
+ "node": ">=14",
15
+ "npm": ">=6",
16
+ "yarn": ">=1.18.0"
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "README.md"
21
+ ],
22
+ "keywords": [
23
+ "ohif-extension"
24
+ ],
25
+ "scripts": {
26
+ "dev": "cross-env NODE_ENV=development webpack --config .webpack/webpack.dev.js --watch --output-pathinfo",
27
+ "dev:dicom-pdf": "yarn run dev",
28
+ "build": "cross-env NODE_ENV=production webpack --config .webpack/webpack.prod.js",
29
+ "build:package": "yarn run build",
30
+ "start": "yarn run dev"
31
+ },
32
+ "peerDependencies": {
33
+ "@ohif/core": "^3.0.0",
34
+ "@ohif/i18n": "^1.0.0",
35
+ "dcmjs": "^0.29.5",
36
+ "dicomweb-client": "^0.10.2",
37
+ "prop-types": "^15.6.2",
38
+ "react": "^17.0.2",
39
+ "react-dom": "^17.0.2",
40
+ "react-i18next": "^12.2.2",
41
+ "react-window": "^1.8.9",
42
+ "webpack": "^5.50.0",
43
+ "webpack-merge": "^5.7.3"
44
+ },
45
+ "dependencies": {
46
+ "@babel/runtime": "^7.20.13",
47
+ "@cornerstonejs/calculate-suv": "^1.0.3"
48
+ }
49
+ }