-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.31 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "fhir-resource-diff",
"version": "0.4.0",
"description": "CLI and library for diffing and validating FHIR JSON resources",
"license": "MIT",
"keywords": [
"fhir",
"hl7",
"healthcare",
"diff",
"fhir-diff",
"fhir-compare",
"fhir-validate",
"validate",
"r4",
"fhir-r4",
"r4b",
"r5",
"fhir-r5",
"cli",
"json",
"ai",
"llm",
"ai-agent",
"healthcare-ai"
],
"repository": {
"type": "git",
"url": "https://github.com/dnlbox/fhir-resource-diff.git"
},
"homepage": "https://dnlbox.github.io/fhir-resource-diff/",
"bugs": {
"url": "https://github.com/dnlbox/fhir-resource-diff/issues"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"type": "module",
"bin": {
"fhir-resource-diff": "./dist/cli/index.js"
},
"main": "./dist/core/index.js",
"types": "./dist/core/index.d.ts",
"exports": {
".": {
"import": "./dist/core/index.js",
"types": "./dist/core/index.d.ts"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" --fix",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "lefthook install",
"prepublishOnly": "pnpm build && pnpm typecheck && pnpm test",
"cli": "tsx src/cli/index.ts",
"cli:watch": "tsx --watch src/cli/index.ts",
"docs:dev": "pnpm --dir docs/site dev",
"docs:build": "pnpm --dir docs/site build",
"docs:preview": "pnpm --dir docs/site preview"
},
"dependencies": {
"commander": "^15.0.0",
"picocolors": "^1.1.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^24.12.4",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"lefthook": "^2.1.8",
"prettier": "^3.8.3",
"tsup": "^8.5.1",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@11.1.3",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=11.0.0"
}
}