-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.94 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
71
72
{
"name": "agentic-medical-imaging-helper",
"version": "1.0.0",
"description": "A CLI Medical Imaging Diagnosis Agentic AI system powered by Google Gemini API (JS/TS) using LangGraph Fan-Out/Fan-In for parallel multi-series analysis.",
"type": "module",
"main": "dist/main/index.js",
"bin": {
"medical-imaging": "dist/main/index.js"
},
"exports": {
".": "./dist/main/index.js",
"./use-cases": "./dist/application/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"SECURITY.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/main/index.ts",
"start": "node dist/main/index.js",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:coverage": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
"test:live": "JEST_LIVE=1 node --experimental-vm-modules node_modules/.bin/jest tests/live --testTimeout=300000",
"typecheck": "tsc --noEmit",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"medical-imaging",
"ai",
"gemini",
"langgraph",
"cli",
"radiology",
"diagnostics"
],
"author": "Andrei Besleaga",
"license": "GPL-3.0",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@google/generative-ai": "0.24.1",
"@langchain/core": "1.2.3",
"@langchain/langgraph": "1.4.8",
"chalk": "5.6.2",
"commander": "15.0.0",
"dotenv": "17.4.2",
"ora": "9.4.1",
"p-limit": "7.3.0",
"sharp": "0.35.3",
"zod": "4.4.3"
},
"devDependencies": {
"@types/jest": "30.0.0",
"@types/node": "26.1.0",
"@types/sharp": "0.32.0",
"@typescript-eslint/eslint-plugin": "8.62.1",
"@typescript-eslint/parser": "8.62.1",
"eslint": "10.6.0",
"jest": "30.4.2",
"prettier": "3.9.4",
"ts-jest": "29.4.11",
"tsx": "4.23.0",
"typescript": "6.0.3"
}
}