@cornerstonejs/dicom-image-loader 0.1.5 → 0.2.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.
- package/README.md +7 -223
- package/dist/610.bundle.min.js +2 -0
- package/dist/610.bundle.min.js.map +1 -0
- package/dist/610.bundle.min.worker.js +2 -0
- package/dist/610.bundle.min.worker.js.map +1 -0
- package/dist/945.bundle.min.js +2 -0
- package/dist/945.bundle.min.js.map +1 -0
- package/dist/945.bundle.min.worker.js +2 -0
- package/dist/945.bundle.min.worker.js.map +1 -0
- package/dist/cornerstoneDICOMImageLoader.bundle.min.js +2 -0
- package/dist/cornerstoneDICOMImageLoader.bundle.min.js.map +1 -0
- package/dist/cornerstoneDICOMImageLoaderNoWebWorkers.bundle.min.js +2 -0
- package/dist/cornerstoneDICOMImageLoaderNoWebWorkers.bundle.min.js.map +1 -0
- package/dist/dynamic-import/5004fdc02f329ce53b69.wasm +0 -0
- package/dist/dynamic-import/610.min.worker.js +2 -0
- package/dist/dynamic-import/610.min.worker.js.map +1 -0
- package/dist/dynamic-import/65916ef3def695744bda.wasm +0 -0
- package/dist/dynamic-import/75788f12450d4c5ed494.wasm +0 -0
- package/dist/dynamic-import/945.min.worker.js +2 -0
- package/dist/dynamic-import/945.min.worker.js.map +1 -0
- package/dist/dynamic-import/c22b37c3488e1d6c3aa4.wasm +0 -0
- package/dist/dynamic-import/cornerstoneDICOMImageLoader.min.js +2 -0
- package/dist/dynamic-import/cornerstoneDICOMImageLoader.min.js.map +1 -0
- package/dist/dynamic-import/index.worker.min.worker.js +2 -0
- package/dist/dynamic-import/index.worker.min.worker.js.map +1 -0
- package/dist/index.worker.bundle.min.worker.js +2 -0
- package/dist/index.worker.bundle.min.worker.js.map +1 -0
- package/package.json +31 -15
- package/.browserslistrc +0 -6
- package/babel.config.json +0 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cornerstonejs/dicom-image-loader",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Cornerstone Image Loader for DICOM WADO-URI and WADO-RS and Local file",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"DICOM",
|
|
@@ -12,7 +12,11 @@
|
|
|
12
12
|
"author": "@cornerstonejs (previously Chris Hafey)",
|
|
13
13
|
"homepage": "https://github.com/cornerstonejs/cornerstone3D-beta",
|
|
14
14
|
"license": "MIT",
|
|
15
|
-
"main": "
|
|
15
|
+
"main": "dist/cornerstoneDICOMImageLoader.bundle.min.js",
|
|
16
|
+
"module": "dist/esm/src/imageLoader/index.js",
|
|
17
|
+
"files": [
|
|
18
|
+
"dist/"
|
|
19
|
+
],
|
|
16
20
|
"repository": {
|
|
17
21
|
"type": "git",
|
|
18
22
|
"url": "https://github.com/cornerstonejs/cornerstone3D-beta.git"
|
|
@@ -21,7 +25,14 @@
|
|
|
21
25
|
"access": "public"
|
|
22
26
|
},
|
|
23
27
|
"scripts": {
|
|
24
|
-
"build": "
|
|
28
|
+
"build:umd:dynamic": "cross-env NODE_ENV=production webpack --config .webpack/webpack-dynamic-import.js",
|
|
29
|
+
"build:umd:bundle": "cross-env NODE_ENV=production webpack --config .webpack/webpack-bundle.js",
|
|
30
|
+
"build:esm": "tsc --project ./tsconfig.esm.json",
|
|
31
|
+
"build:all": "yarn run build:umd:dynamic & yarn run build:umd:bundle",
|
|
32
|
+
"copy-dts": "echo 'not implemented yet'",
|
|
33
|
+
"build": "yarn run build:all && yarn run copy-dts",
|
|
34
|
+
"api-check": "echo 'not implemented yet'",
|
|
35
|
+
"build:update-api": "echo 'not implemented yet'",
|
|
25
36
|
"cm": "npx git-cz",
|
|
26
37
|
"clean": "npm run clean:dist && npm run clean:coverage",
|
|
27
38
|
"clean:dist": "shx rm -rf dist",
|
|
@@ -34,7 +45,7 @@
|
|
|
34
45
|
"eslint-fix": "eslint -c .eslintrc.js --fix src",
|
|
35
46
|
"eslint-fix-test": "eslint -c .eslintrc.js --fix test",
|
|
36
47
|
"start": "npm run webpack:dev",
|
|
37
|
-
"start:dev": "webpack-dev-server --config
|
|
48
|
+
"start:dev": "webpack-dev-server --config .webpack/webpack-dev",
|
|
38
49
|
"test": "npm run test:chrome",
|
|
39
50
|
"test:ci": "echo 'test:ci not implemented yet'",
|
|
40
51
|
"test:all": "npm run test && npm run test:chrome && npm run test:firefox",
|
|
@@ -43,16 +54,20 @@
|
|
|
43
54
|
"test:watch": "karma start config/karma/karma-watch.js",
|
|
44
55
|
"watch": "npm run clean && shx mkdir dist && npm run webpack:watch",
|
|
45
56
|
"dev": "npm run webpack:dev",
|
|
46
|
-
"webpack:dev": "webpack serve --progress --config
|
|
47
|
-
"webpack:dynamic-import": "webpack --progress --config
|
|
48
|
-
"webpack:bundle": "webpack --progress --config
|
|
49
|
-
"webpack:dynamic-import:watch": "webpack --progress --watch --config
|
|
50
|
-
"webpack:
|
|
51
|
-
"
|
|
57
|
+
"webpack:dev": "webpack serve --progress --config .webpack/webpack-dev.js",
|
|
58
|
+
"webpack:dynamic-import": "webpack --progress --config .webpack/webpack-dynamic-import",
|
|
59
|
+
"webpack:bundle": "webpack --progress --config .webpack/webpack-bundle",
|
|
60
|
+
"webpack:dynamic-import:watch": "webpack --progress --watch --config .webpack/webpack-dynamic-import",
|
|
61
|
+
"webpack:dynamic-import:debug": "webpack --progress --watch --config .webpack/webpack-dynamic-import-debug",
|
|
62
|
+
"webpack:watch": "webpack --progress --watch --config .webpack",
|
|
63
|
+
"prepublishOnly": "yarn run build"
|
|
52
64
|
},
|
|
53
65
|
"devDependencies": {
|
|
54
66
|
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
|
|
55
67
|
"@babel/runtime-corejs3": "^7.15.4",
|
|
68
|
+
"@types/emscripten": "^1.39.6",
|
|
69
|
+
"@types/jasmine": "^4.3.1",
|
|
70
|
+
"@types/karma": "^6.3.3",
|
|
56
71
|
"chai": "^4.3.4",
|
|
57
72
|
"concat": "^1.0.3",
|
|
58
73
|
"core-js": "^3.26.1",
|
|
@@ -70,10 +85,11 @@
|
|
|
70
85
|
},
|
|
71
86
|
"dependencies": {
|
|
72
87
|
"@babel/eslint-parser": "^7.19.1",
|
|
73
|
-
"@cornerstonejs/codec-charls": "^
|
|
74
|
-
"@cornerstonejs/codec-libjpeg-turbo-8bit": "^
|
|
75
|
-
"@cornerstonejs/codec-openjpeg": "^
|
|
76
|
-
"@cornerstonejs/codec-openjph": "^
|
|
88
|
+
"@cornerstonejs/codec-charls": "^1.2.3",
|
|
89
|
+
"@cornerstonejs/codec-libjpeg-turbo-8bit": "^1.2.2",
|
|
90
|
+
"@cornerstonejs/codec-openjpeg": "^1.2.2",
|
|
91
|
+
"@cornerstonejs/codec-openjph": "^2.4.2",
|
|
92
|
+
"@cornerstonejs/core": "^0.31.0",
|
|
77
93
|
"coverage-istanbul-loader": "^3.0.5",
|
|
78
94
|
"date-format": "^4.0.14",
|
|
79
95
|
"dicom-parser": "^1.8.9",
|
|
@@ -97,5 +113,5 @@
|
|
|
97
113
|
"path": "./node_modules/cz-conventional-changelog"
|
|
98
114
|
}
|
|
99
115
|
},
|
|
100
|
-
"gitHead": "
|
|
116
|
+
"gitHead": "e9a7f9d8a4ef4404f5213024986e5eb488b99773"
|
|
101
117
|
}
|
package/.browserslistrc
DELETED