-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.23 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
{
"name": "@holoscript/medical-plugin",
"version": "1.0.0",
"description": "DICOM medical imaging and surgical simulation for HoloScript - VR medical training",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"python/",
"examples/",
"README.md"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"test": "jest --passWithNoTests",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": ["holoscript", "plugin", "medical", "dicom", "surgical", "vr", "healthcare", "simulation"],
"author": "HoloScript Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/brianonbased-dev/holoscript-medical-plugin.git"
},
"homepage": "https://github.com/brianonbased-dev/holoscript-medical-plugin#readme",
"bugs": {
"url": "https://github.com/brianonbased-dev/holoscript-medical-plugin/issues"
},
"peerDependencies": {
"holoscript": "^3.1.0"
},
"devDependencies": {
"typescript": "^5.3.0",
"@types/node": "^20.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"@types/jest": "^29.5.0",
"rimraf": "^5.0.0"
},
"python": {
"requirements": ["pydicom>=2.4.0", "numpy>=1.24.0"]
}
}