forked from FNNDSC/ami
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 1.82 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
{
"name": "ami.js",
"version": "0.34.0",
"type": "module",
"main": "./build/ami.cjs",
"module": "./build/ami.js",
"types": "./build/ami.d.ts",
"exports": {
".": {
"types": "./build/ami.d.ts",
"import": "./build/ami.js",
"require": "./build/ami.cjs"
}
},
"files": [
"build"
],
"keywords": [
"ami",
"ami.js",
"three.js",
"webgl",
"dicom",
"nifti",
"medical",
"imaging",
"nrrd",
"vtk",
"stl",
"trk"
],
"author": {
"name": "Nicolas Rannou",
"email": "nicolas@eunate.ch",
"url": "https://eunate.ch"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://fnndsc.github.io/ami"
},
"sideEffects": false,
"peerDependencies": {
"three": ">=0.180.0"
},
"dependencies": {
"@cornerstonejs/codec-openjpeg": "^1.3.0",
"dicom-parser": "1.8.21",
"eventemitter3": "^5.0.4",
"jpeg-lossless-decoder-js": "2.1.2",
"math-float32-to-binary-string": "^1.0.0",
"nifti-reader-js": "0.8.0",
"nrrd-js": "^0.2.1",
"pako": "2.1.0"
},
"devDependencies": {
"@types/jasmine": "^6.0.0",
"@types/node": "^25.6.0",
"cross-env": "^10.1.0",
"jsdoc": "^4.0.0",
"jsdom": "^29.1.1",
"rimraf": "^6.1.3",
"shelljs": "^0.10.0",
"sinon": "^21.1.2",
"three": "^0.184.0",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vite-plugin-dts": "^5.0.0",
"vitest": "^4.1.5"
},
"scripts": {
"build": "vite build",
"build:prod": "vite build --mode production",
"clean": "rimraf build",
"dev": "vite build --watch",
"dev:examples": "vite --config vite.examples.config.ts",
"test": "vitest run",
"test:watch": "vitest",
"doc": "jsdoc -p -r -R README.md -c jsdoc.json -d dist/doc src"
},
"engines": {
"node": ">=18.0.0"
}
}