forked from ivmartel/dwv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.34 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.34 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
{
"name": "dwv",
"version": "0.37.0-beta.1",
"description": "DICOM Web Viewer.",
"keywords": [
"DICOM",
"medical",
"imaging"
],
"license": "GPL-3.0",
"author": "ivmartel <ivmartel@gmail.com>",
"homepage": "https://ivmartel.github.io/dwv/",
"repository": {
"type": "git",
"url": "https://github.com/ivmartel/dwv"
},
"type": "module",
"sideEffects": false,
"main": "./dist/dwv.min.js",
"types": "./dist/dwv.d.ts",
"exports": {
"types": "./dist/dwv.d.ts",
"node": "./dist/dwv.node.min.js",
"default": "./dist/dwv.min.js"
},
"engines": {
"node": ">= 14.0.0"
},
"browserslist": [
">1%, last 2 versions, not dead"
],
"dependencies": {
"jszip": "^3.10.1",
"konva": "~10.2.0",
"magic-wand-tool": "~1.1.7"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@eslint/js": "^10.0.1",
"@microsoft/api-extractor": "^7.55.1",
"@stylistic/eslint-plugin": "^5.8.0",
"@vitest/coverage-v8": "^4.0.17",
"babel-loader": "^10.0.0",
"babel-plugin-istanbul": "^7.0.1",
"benchmark": "^2.1.4",
"canvas": "^3.2.1",
"clean-jsdoc-theme": "^4.3.0",
"eslint": "^10.0.0",
"eslint-plugin-jsdoc": "^62.5.4",
"github-release-notes": "0.17.2",
"globals": "^17.0.0",
"html-webpack-plugin": "^5.6.5",
"jsdoc": "^4.0.5",
"jsdom": "^28.0.0",
"typescript": "5.6.3",
"vitest": "^4.0.17",
"webpack": "^5.105.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2",
"webpack-merge": "^6.0.1"
},
"scripts": {
"start": "webpack serve --config config/webpack.dev.js",
"pack": "webpack --config config/webpack.prod.js",
"pack-node": "webpack --config config/webpack.node.js",
"build": "yarn run pack && yarn run types && yarn run api",
"build-all": "yarn run build && yarn run pack-node",
"build-demo": "webpack --config config/webpack.demo.js",
"lint": "eslint -c config/eslint.config-full.js 'src/**/*.js' 'tests/**/*.js' '*.js'",
"test": "vitest",
"test-ci": "vitest --coverage --watch false --reporter default --reporter json",
"doc": "jsdoc -c resources/doc/jsdoc.conf.json",
"gren": "gren",
"types": "tsc -p resources/api/tsconfig.json",
"api": "api-extractor run -c resources/api/api-extractor.json --local"
},
"packageManager": "yarn@4.12.0"
}