-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.62 KB
/
package.json
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
{
"name": "dicom-web-anonymizer",
"version": "0.2.5",
"description": "A DICOM web pseudonymization library in JavaScript.",
"type": "module",
"types": "./types/dcm.d.ts",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsup",
"bundle": "vite build",
"build:watch": "tsup --watch",
"clean": "rm -rf ./dist ./.tsbuildinfo",
"tsc": "tsc",
"test": "vitest run",
"test:watch": "vitest watch",
"lint": "eslint ./src --ext .js,.ts",
"ci": "npm run lint && npm run build && npm run tsc && npm run test",
"prettier-format": "prettier --config .prettierrc '' --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/radexperts/dicom-anonymizer.git"
},
"keywords": [
"DICOM",
"De-identification",
"Pseudonymization",
"Radiology"
],
"author": "Luca Dulz",
"license": "MIT",
"bugs": {
"url": "https://github.com/radexperts/dicom-anonymizer/issues"
},
"homepage": "https://github.com/radexperts/dicom-anonymizer#readme",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "^20.16.7",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.10.0",
"fs": "^0.0.1-security",
"happy-dom": "^15.7.4",
"jsdom": "^25.0.1",
"prettier": "2.8.8",
"tsup": "^6.7.0",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.2",
"vitest": "^2.1.1"
},
"dependencies": {
"dcmjs": "^0.30.1",
"get-random-values": "^2.1.0"
}
}