-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
69 lines (69 loc) · 1.74 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
61
62
63
64
65
66
67
68
69
{
"name": "dicom-dimse-native",
"version": "2.4.6",
"description": "native addon using DCMTK dicom toolkit",
"main": "index.js",
"scripts": {
"install": "npx prebuild-install -r napi || npx cmake-js compile",
"compile": "npx cmake-js compile",
"prebuild": "npx prebuild -t 6 -r napi --all --verbose --backend cmake-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": "^7.2.1",
"node-addon-api": "^4.3.0",
"prebuild-install": "^7.1.1"
},
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "https://github.com/knopkem/dicom-dimse-native"
},
"binary": {
"napi_versions": [
6
]
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.3",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.3.1",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
}
}