-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.32 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "dcmjs",
"version": "0.49.2",
"description": "Javascript implementation of DICOM manipulation",
"main": "build/dcmjs.js",
"module": "build/dcmjs.es.js",
"exports": {
".": {
"import": "./build/dcmjs.es.js",
"require": "./build/dcmjs.js"
},
"./dictionary": "./generate/dictionary.mjs"
},
"files": [
"build",
"generate/dictionary.mjs",
"README.md",
"License.txt"
],
"directories": {
"example": "examples"
},
"packageManager": "pnpm@11.1.2",
"engines": {
"node": ">=22.13"
},
"scripts": {
"prepare": "husky",
"install:update-lockfile": "pnpm install --no-frozen-lockfile",
"test": "jest --testTimeout 60000 .",
"build": "rollup -c",
"build:examples": "pnpm run build && pnpm exec cpy \"build/**/*.js\" \"build/**/*.map\" examples/js --flat",
"start": "rollup -c -w",
"dev": "rollup -c -w",
"format": "prettier --write \"src/**/*.js\" \"test/**/*.js\"",
"format:check": "prettier --check \"src/**/*.js\" \"test/**/*.js\"",
"lint": "eslint --fix \"src/**/*.js\" \"test/**/*.js\"",
"generate-dictionary": "node generate/generate-dictionary.js",
"pack-dictionary": "node generate/pack_dicom.mjs",
"bench:dictionary": "bun run generate/bench-dictionary-load.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcmjs-org/dcmjs.git"
},
"author": "Steve Pieper",
"license": "MIT",
"bugs": {
"url": "https://github.com/dcmjs-org/dcmjs/issues"
},
"homepage": "https://github.com/dcmjs-org/dcmjs#readme",
"devDependencies": {
"@babel/core": "7.23.7",
"@babel/plugin-transform-runtime": "7.23.7",
"@babel/preset-env": "7.29.5",
"@babel/register": "7.23.7",
"@eslint/js": "9.39.4",
"@rollup/plugin-babel": "6.1.0",
"@rollup/plugin-commonjs": "28.0.9",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-replace": "6.0.3",
"@rollup/plugin-terser": "1.0.0",
"acorn": "7.4.1",
"acorn-jsx": "5.3.2",
"cpy-cli": "7.0.0",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"follow-redirects": "1.15.5",
"globals": "16.3.0",
"husky": "9.1.7",
"jest": "27.5.1",
"lint-staged": "13.3.0",
"prettier": "2.8.8",
"rollup": "4.60.3",
"xml2js": "0.6.2"
},
"dependencies": {
"@babel/runtime-corejs3": "7.29.2",
"adm-zip": "0.5.17",
"gl-matrix": "3.4.4",
"lodash.clonedeep": "4.5.0",
"loglevel": "1.9.2",
"ndarray": "1.0.19",
"pako": "2.1.0"
},
"pnpm": {
"overrides": {
"@babel/traverse": "7.28.6",
"semver": "6.3.1",
"lodash": "4.18.1",
"serialize-javascript": "7.0.3",
"flatted": "3.4.2",
"picomatch": "2.3.2",
"minimatch": "3.1.5"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --write",
"git add"
]
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
]
}
}