UNPKG

dicomweb-proxy

Version:

A proxy to translate between dicomweb and dimse

68 lines (67 loc) 1.87 kB
{ "name": "dicomweb-proxy", "version": "2.2.1", "description": "A proxy to translate between dicomweb and dimse", "bin": "./build/app.js", "scripts": { "start": "ts-node src/app.ts", "format": "npx prettier ./src", "build": "tsc --p ./tsconfig.json", "pkg:win": "npm run build && npx pkg --targets node16-win-x64 package.json" }, "repository": { "type": "git", "url": "git+https://github.com/knopkem/dicomweb-proxy.git" }, "keywords": [ "DICOMWEB", "PROXY", "DIMSE", "DICOM" ], "author": "Michael Knopke", "license": "MIT", "bugs": { "url": "https://github.com/knopkem/dicomweb-proxy/issues" }, "homepage": "https://github.com/knopkem/dicomweb-proxy#readme", "dependencies": { "@fastify/autoload": "^6.3.1", "@fastify/cors": "^11.2.0", "@fastify/helmet": "^13.0.2", "@fastify/sensible": "^6.0.4", "@fastify/static": "^9.0.0", "@iwharris/dicom-data-dictionary": "^1.26.0", "@wearemothership/socket.io-stream": "^0.9.1", "close-with-grace": "^2.5.0", "config": "^4.4.1", "deepmerge": "^4.3.1", "dicom-dimse-native": "^2.6.1", "dicom-parser": "^1.8.21", "fastify": "^5.8.2", "pino": "^10.3.1", "pino-roll": "^4.0.0", "shelljs": "^0.10.0", "socket.io-client": "^4.8.3", "throat": "^6.0.2" }, "devDependencies": { "@types/config": "^4.4.0", "@types/eslint": "^9.6.1", "@types/node": "^25.5.0", "@types/shelljs": "^0.10.0", "@typescript-eslint/eslint-plugin": "^8.57.1", "@typescript-eslint/parser": "^8.57.1", "eslint-config-prettier": "^10.1.8", "prettier": "^3.8.1", "ts-node": "^10.9.2", "tslib": "^2.6.2", "typescript": "^5.9.3" }, "pkg": { "assets": [ "./config/default.json", "./node_modules/dicom-dimse-native/build/Release/dcmtk.node" ] } }