dicom-curate 0.1.2 → 0.3.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dicom-curate",
3
- "version": "0.1.2",
3
+ "version": "0.3.0",
4
4
  "description": "Organize and de-identify DICOM header data ",
5
5
  "type": "module",
6
6
  "main": "dist/esm/index.js",
@@ -11,6 +11,12 @@
11
11
  "import": "./dist/esm/index.js",
12
12
  "types": "./dist/types/index.d.ts",
13
13
  "default": "./dist/esm/index.js"
14
+ },
15
+ "./umd": {
16
+ "require": "./dist/umd/dicom-curate.umd.js"
17
+ },
18
+ "./umd.min": {
19
+ "require": "./dist/umd/dicom-curate.umd.min.js"
14
20
  }
15
21
  },
16
22
  "files": [
@@ -38,7 +44,7 @@
38
44
  },
39
45
  "scripts": {
40
46
  "clean": "bebbi-scripts clean",
41
- "build": "yarn generate:sampleSpec && bebbi-scripts build esm types",
47
+ "build": "yarn generate:sampleSpec && bebbi-scripts build esm types && rollup -c",
42
48
  "watch": "bebbi-scripts build --watch",
43
49
  "test": "bebbi-scripts test",
44
50
  "format": "bebbi-scripts format",
@@ -61,6 +67,9 @@
61
67
  "devDependencies": {
62
68
  "@commitlint/cli": "^19.8.1",
63
69
  "@commitlint/config-conventional": "^19.8.1",
70
+ "@rollup/plugin-commonjs": "^28.0.6",
71
+ "@rollup/plugin-node-resolve": "^16.0.1",
72
+ "@rollup/plugin-typescript": "^12.1.3",
64
73
  "@semantic-release/changelog": "^6.0.3",
65
74
  "@semantic-release/git": "^10.0.1",
66
75
  "@semantic-release/github": "^11.0.3",
@@ -71,12 +80,15 @@
71
80
  "husky": "^8.0.3",
72
81
  "node-fetch": "^3.3.2",
73
82
  "prettier": "^3.4.2",
83
+ "rollup": "^4.43.0",
84
+ "rollup-plugin-polyfill-node": "^0.13.0",
85
+ "rollup-plugin-terser": "^7.0.2",
74
86
  "semantic-release": "^24.2.5",
75
87
  "ts-jest": "^29.2.6",
76
88
  "tsx": "^4.19.3",
77
89
  "typescript": "^5.8.3",
78
90
  "xml2js": "^0.6.2"
79
91
  },
80
- "license": "MIT",
92
+ "license": "Apache-2.0",
81
93
  "packageManager": "yarn@4.5.3"
82
94
  }