@ohif/extension-default 3.13.0-beta.9 → 3.13.0-beta.92
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
CHANGED
|
@@ -1,41 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ohif/extension-default",
|
|
3
|
-
"version": "3.13.0-beta.
|
|
3
|
+
"version": "3.13.0-beta.92",
|
|
4
4
|
"description": "Common/default features and functionality for basic image viewing",
|
|
5
5
|
"author": "OHIF Core Team",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": "OHIF/Viewers",
|
|
8
8
|
"main": "dist/ohif-extension-default.umd.js",
|
|
9
9
|
"module": "src/index.ts",
|
|
10
|
-
"publishConfig": {
|
|
11
|
-
"access": "public"
|
|
12
|
-
},
|
|
13
10
|
"engines": {
|
|
14
|
-
"node": ">=
|
|
15
|
-
"npm": ">=6",
|
|
16
|
-
"yarn": ">=1.18.0"
|
|
11
|
+
"node": ">=24"
|
|
17
12
|
},
|
|
18
13
|
"files": [
|
|
19
14
|
"dist",
|
|
20
15
|
"README.md"
|
|
21
16
|
],
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
},
|
|
25
20
|
"scripts": {
|
|
26
21
|
"clean": "shx rm -rf dist",
|
|
27
|
-
"clean:deep": "
|
|
28
|
-
"dev": "cross-env NODE_ENV=development
|
|
29
|
-
"dev:dicom-pdf": "
|
|
30
|
-
"build": "cross-env NODE_ENV=production
|
|
31
|
-
"build:package-1": "
|
|
32
|
-
"start": "
|
|
22
|
+
"clean:deep": "pnpm run clean && shx rm -rf node_modules",
|
|
23
|
+
"dev": "cross-env NODE_ENV=development rspack build --config .webpack/webpack.dev.js --watch",
|
|
24
|
+
"dev:dicom-pdf": "pnpm run dev",
|
|
25
|
+
"build": "cross-env NODE_ENV=production rspack build --config .webpack/webpack.prod.js",
|
|
26
|
+
"build:package-1": "pnpm run build",
|
|
27
|
+
"start": "pnpm run dev",
|
|
33
28
|
"test:unit": "jest --watchAll",
|
|
34
29
|
"test:unit:ci": "jest --ci --runInBand --collectCoverage --passWithNoTests"
|
|
35
30
|
},
|
|
36
31
|
"peerDependencies": {
|
|
37
|
-
"@ohif/core": "3.13.0-beta.
|
|
38
|
-
"@ohif/i18n": "3.13.0-beta.
|
|
32
|
+
"@ohif/core": "3.13.0-beta.92",
|
|
33
|
+
"@ohif/i18n": "3.13.0-beta.92",
|
|
39
34
|
"dcmjs": "0.49.4",
|
|
40
35
|
"dicomweb-client": "0.10.4",
|
|
41
36
|
"prop-types": "15.8.1",
|
|
@@ -43,14 +38,19 @@
|
|
|
43
38
|
"react-dom": "18.3.1",
|
|
44
39
|
"react-i18next": "12.3.1",
|
|
45
40
|
"react-window": "1.8.11",
|
|
46
|
-
"webpack": "5.89.0",
|
|
47
41
|
"webpack-merge": "5.10.0"
|
|
48
42
|
},
|
|
49
43
|
"dependencies": {
|
|
50
|
-
"@babel/runtime": "7.
|
|
44
|
+
"@babel/runtime": "7.29.7",
|
|
51
45
|
"@cornerstonejs/calculate-suv": "1.1.0",
|
|
52
46
|
"lodash.get": "4.4.2",
|
|
53
47
|
"lodash.uniqby": "4.7.0",
|
|
54
48
|
"react-color": "2.19.3"
|
|
55
|
-
}
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"webpack-merge": "5.10.0"
|
|
52
|
+
},
|
|
53
|
+
"keywords": [
|
|
54
|
+
"ohif-extension"
|
|
55
|
+
]
|
|
56
56
|
}
|
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
Copyright (c) 2018 Jed Watson.
|
|
3
|
-
Licensed under the MIT License (MIT), see
|
|
4
|
-
http://jedwatson.github.io/classnames
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
/*! *****************************************************************************
|
|
8
|
-
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
9
|
-
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
10
|
-
this file except in compliance with the License. You may obtain a copy of the
|
|
11
|
-
License at http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
-
|
|
13
|
-
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
-
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
|
15
|
-
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
|
16
|
-
MERCHANTABLITY OR NON-INFRINGEMENT.
|
|
17
|
-
|
|
18
|
-
See the Apache Version 2.0 License for specific language governing permissions
|
|
19
|
-
and limitations under the License.
|
|
20
|
-
***************************************************************************** */
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* @license React
|
|
24
|
-
* react.production.min.js
|
|
25
|
-
*
|
|
26
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
27
|
-
*
|
|
28
|
-
* This source code is licensed under the MIT license found in the
|
|
29
|
-
* LICENSE file in the root directory of this source tree.
|
|
30
|
-
*/
|
|
31
|
-
|
|
32
|
-
/**
|
|
33
|
-
* @license React
|
|
34
|
-
* use-sync-external-store-shim.production.min.js
|
|
35
|
-
*
|
|
36
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
37
|
-
*
|
|
38
|
-
* This source code is licensed under the MIT license found in the
|
|
39
|
-
* LICENSE file in the root directory of this source tree.
|
|
40
|
-
*/
|
|
41
|
-
|
|
42
|
-
/**
|
|
43
|
-
* @license React
|
|
44
|
-
* use-sync-external-store-shim/with-selector.production.min.js
|
|
45
|
-
*
|
|
46
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
47
|
-
*
|
|
48
|
-
* This source code is licensed under the MIT license found in the
|
|
49
|
-
* LICENSE file in the root directory of this source tree.
|
|
50
|
-
*/
|
|
51
|
-
|
|
52
|
-
/**
|
|
53
|
-
* @remix-run/router v1.23.2
|
|
54
|
-
*
|
|
55
|
-
* Copyright (c) Remix Software Inc.
|
|
56
|
-
*
|
|
57
|
-
* This source code is licensed under the MIT license found in the
|
|
58
|
-
* LICENSE.md file in the root directory of this source tree.
|
|
59
|
-
*
|
|
60
|
-
* @license MIT
|
|
61
|
-
*/
|
|
62
|
-
|
|
63
|
-
/**
|
|
64
|
-
* React Router v6.30.3
|
|
65
|
-
*
|
|
66
|
-
* Copyright (c) Remix Software Inc.
|
|
67
|
-
*
|
|
68
|
-
* This source code is licensed under the MIT license found in the
|
|
69
|
-
* LICENSE.md file in the root directory of this source tree.
|
|
70
|
-
*
|
|
71
|
-
* @license MIT
|
|
72
|
-
*/
|
|
73
|
-
|
|
74
|
-
//! moment.js
|
|
75
|
-
|
|
76
|
-
//! moment.js locale configuration
|