-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.8 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
{
"name": "dicom-dimse-native",
"version": "2.6.1",
"description": "native addon using DCMTK dicom toolkit",
"main": "index.js",
"scripts": {
"install": "npx prebuild-install -r napi || node ./scripts/compile-native.js",
"setup:libiconv": "node ./scripts/setup-libiconv.js",
"compile": "node ./scripts/compile-native.js",
"pack:prebuilds": "node ./scripts/pack-prebuild.js",
"build": "tsc index.ts",
"prepare": "npm run build",
"example:echoscu": "ts-node ./examples/echoscu.ts",
"example:findscu": "ts-node ./examples/findscu.ts",
"example:getscu": "ts-node ./examples/getscu.ts",
"example:movescu": "ts-node ./examples/movescu.ts",
"example:storescu": "ts-node ./examples/storescu.ts",
"example:storescp": "ts-node ./examples/storescp.ts",
"example:shutdownscu": "ts-node ./examples/shutdownscu.ts",
"example:parse": "ts-node ./examples/parse.ts",
"example:recompress": "ts-node ./examples/recompress.ts",
"test": "jest"
},
"keywords": [
"DICOM",
"DIMSE",
"NATIVE",
"DICOM-DIMSE",
"DICOM-DIMSE-NATIVE",
"DCMTK",
"NETWORK",
"DICOMJS",
"SCU",
"SCP",
"C-ECHO",
"C-FIND",
"C-MOVE",
"C-STORE",
"PACS"
],
"author": "Michael Knopke",
"license": "MIT",
"dependencies": {
"bindings": "^1.5.0",
"cmake-js": "^8.0.0",
"node-addon-api": "^8.6.0",
"prebuild-install": "^7.1.3"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://github.com/knopkem/dicom-dimse-native"
},
"binary": {
"napi_versions": [
6
]
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"jest": "^30.3.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
}
}