@ohif/core 2.16.35 → 3.5.0-beta.1

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.
@@ -0,0 +1,16 @@
1
+ /*!
2
+ * validate.js 0.12.0
3
+ *
4
+ * (c) 2013-2017 Nicklas Ansman, 2013 Wrapp
5
+ * Validate.js may be freely distributed under the MIT license.
6
+ * For all details and documentation:
7
+ * http://validatejs.org/
8
+ */
9
+
10
+ /*! cornerstone-math - 0.1.10 - 2022-06-09 | (c) 2017 Chris Hafey | https://github.com/cornerstonejs/cornerstoneMath */
11
+
12
+ /*! dicom-parser - 1.8.12 - 2023-02-20 | (c) 2017 Chris Hafey | https://github.com/cornerstonejs/dicomParser */
13
+
14
+ //! moment.js
15
+
16
+ //! moment.js locale configuration
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@ohif/core",
3
- "version": "2.16.35",
3
+ "version": "3.5.0-beta.1",
4
4
  "description": "Generic business logic for web-based medical imaging applications",
5
5
  "author": "OHIF Core Team",
6
6
  "license": "MIT",
7
7
  "repository": "OHIF/Viewers",
8
- "main": "dist/index.umd.js",
9
- "module": "src/index.js",
8
+ "main": "dist/ohif-core.umd.js",
9
+ "module": "src/index.ts",
10
+ "types": "src/types/index.ts",
10
11
  "sideEffects": "false",
11
12
  "publishConfig": {
12
13
  "access": "public"
@@ -16,7 +17,7 @@
16
17
  "README.md"
17
18
  ],
18
19
  "engines": {
19
- "node": ">=10",
20
+ "node": ">=14",
20
21
  "npm": ">=6",
21
22
  "yarn": ">=1.16.0"
22
23
  },
@@ -25,30 +26,35 @@
25
26
  "dev:core": "yarn run dev",
26
27
  "build": "cross-env NODE_ENV=production webpack --config .webpack/webpack.prod.js",
27
28
  "build:package": "yarn run build",
28
- "prepublishOnly": "yarn run build",
29
29
  "start": "yarn run dev",
30
30
  "test:unit": "jest --watchAll",
31
31
  "test:unit:ci": "jest --ci --runInBand --collectCoverage"
32
32
  },
33
33
  "peerDependencies": {
34
- "cornerstone-core": "^2.6.1",
35
- "cornerstone-tools": "^6.0.6",
36
- "cornerstone-wado-image-loader": "^4.2.1",
37
- "dicom-parser": "^1.8.11"
34
+ "@cornerstonejs/codec-charls": "^1.2.3",
35
+ "@cornerstonejs/codec-libjpeg-turbo-8bit": "^1.2.2",
36
+ "@cornerstonejs/codec-openjpeg": "^1.2.2",
37
+ "@cornerstonejs/codec-openjph": "^2.4.2",
38
+ "@cornerstonejs/dicom-image-loader": "^0.6.8",
39
+ "@ohif/ui": "3.5.0-beta.1",
40
+ "cornerstone-math": "0.1.9",
41
+ "dicom-parser": "^1.8.21"
38
42
  },
39
43
  "dependencies": {
40
- "@babel/runtime": "^7.5.5",
41
- "ajv": "^6.10.0",
42
- "dcmjs": "0.29.3",
43
- "dicomweb-client": "^0.8.3",
44
- "immer": "9.0.12",
44
+ "@babel/runtime": "^7.20.13",
45
+ "dcmjs": "^0.29.5",
46
+ "dicomweb-client": "^0.10.2",
47
+ "gl-matrix": "^3.4.3",
45
48
  "isomorphic-base64": "^1.0.2",
46
49
  "lodash.clonedeep": "^4.5.0",
47
50
  "lodash.merge": "^4.6.1",
48
- "mathjs": "^10.1.0",
49
- "mousetrap": "^1.6.3",
50
- "retry": "^0.12.0",
51
+ "moment": "^2.24.0",
52
+ "object-hash": "2.1.1",
53
+ "query-string": "^6.14.0",
51
54
  "validate.js": "^0.12.0"
52
55
  },
53
- "gitHead": "cb9aa6a765da95b5d7eed9636fd7bf26218e706f"
56
+ "devDependencies": {
57
+ "webpack-merge": "5.7.3"
58
+ },
59
+ "gitHead": "6d7561946b02ce49fbaa9a0f47df5818eb3d7983"
54
60
  }