-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.79 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
73
74
75
76
{
"name": "practice-fusion-mcp",
"version": "0.4.0",
"description": "FHIR-first, read-only MCP server for Practice Fusion",
"mcpName": "io.github.kushaim/practice-fusion-mcp",
"license": "MIT",
"type": "module",
"keywords": [
"mcp",
"model-context-protocol",
"fhir",
"practice-fusion",
"ehr",
"healthcare"
],
"homepage": "https://github.com/kushaim/practice-fusion-mcp#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kushaim/practice-fusion-mcp.git"
},
"bugs": {
"url": "https://github.com/kushaim/practice-fusion-mcp/issues"
},
"main": "dist/index.js",
"bin": {
"practice-fusion-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"prepublishOnly": "pnpm build",
"dev": "node --env-file-if-exists=.env --loader tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"jose": "^6.2.6",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.1",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.18.0",
"vitest": "^3.2.7"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@9.15.0",
"pnpm": {
"overrides": {
"fast-uri": "^3.1.4",
"@hono/node-server": "^2.0.5",
"vite": "^6.4.3",
"esbuild": "^0.28.1",
"brace-expansion": "^5.0.8",
"postcss": "^8.5.23"
}
}
}