dcmjs 0.44.1 → 0.47.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/.github/workflows/publish-package.yml +12 -4
- package/README.md +2 -1
- package/build/dcmjs.es.js +93 -48
- package/build/dcmjs.es.js.map +1 -1
- package/build/dcmjs.js +93 -48
- package/build/dcmjs.js.map +1 -1
- package/build/dcmjs.min.js +1 -1
- package/build/dcmjs.min.js.map +1 -1
- package/jest.setup.js +26 -8
- package/package.json +1 -1
|
@@ -5,6 +5,12 @@ on:
|
|
|
5
5
|
branches:
|
|
6
6
|
- master
|
|
7
7
|
|
|
8
|
+
permissions:
|
|
9
|
+
contents: write
|
|
10
|
+
issues: write
|
|
11
|
+
pull-requests: write
|
|
12
|
+
id-token: write
|
|
13
|
+
|
|
8
14
|
jobs:
|
|
9
15
|
publish-package:
|
|
10
16
|
runs-on: ubuntu-latest
|
|
@@ -13,11 +19,14 @@ jobs:
|
|
|
13
19
|
steps:
|
|
14
20
|
- name: Checkout repository
|
|
15
21
|
uses: actions/checkout@v4
|
|
22
|
+
with:
|
|
23
|
+
persist-credentials: false
|
|
16
24
|
|
|
17
25
|
- name: Setup Node.js
|
|
18
26
|
uses: actions/setup-node@v4
|
|
19
27
|
with:
|
|
20
|
-
node-version:
|
|
28
|
+
node-version: 24
|
|
29
|
+
registry-url: 'https://registry.npmjs.org'
|
|
21
30
|
|
|
22
31
|
- name: Install packages
|
|
23
32
|
uses: bahmutov/npm-install@v1
|
|
@@ -29,9 +38,8 @@ jobs:
|
|
|
29
38
|
run: npm run build
|
|
30
39
|
|
|
31
40
|
- name: Semantic release
|
|
32
|
-
uses: cycjimmy/semantic-release-action@
|
|
33
|
-
with:
|
|
34
|
-
semantic_version: 19.0.2
|
|
41
|
+
uses: cycjimmy/semantic-release-action@v6
|
|
35
42
|
env:
|
|
36
43
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
37
44
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
45
|
+
NPM_CONFIG_PROVENANCE: true
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
<h1>dcmjs</h1>
|
|
3
|
-
<p>JavaScript implementation of DICOM manipulation. This code is an outgrowth of several efforts to implement web applications for medical imaging.</p>
|
|
3
|
+
<p>JavaScript implementation of DICOM manipulation. This code is an outgrowth of several efforts to implement web applications for medical imaging. the package should also work fine on node.</p>
|
|
4
4
|
</div>
|
|
5
5
|
|
|
6
6
|
<hr />
|
|
@@ -167,6 +167,7 @@ The developers gratefully acknowledge their research support:
|
|
|
167
167
|
- The [Neuroimage Analysis Center](http://nac.spl.harvard.edu)
|
|
168
168
|
- The [National Center for Image Guided Therapy](http://ncigt.org)
|
|
169
169
|
- The [NCI Imaging Data Commons](https://imagingdatacommons.github.io/) NCI Imaging Data Commons: contract number 19X037Q from Leidos Biomedical Research under Task Order HHSN26100071 from NCI
|
|
170
|
+
- dcmjs is being used and partially supported by [dicom-curate](https://github.com/bebbi/dicom-curate)
|
|
170
171
|
|
|
171
172
|
## Logging
|
|
172
173
|
|