-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.9 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.9 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": "fhirpath-editor",
"version": "0.10.7",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/HealthSamurai/fhirpath-editor"
},
"homepage": "https://healthsamurai.github.io/fhirpath-editor/",
"files": [
"dist"
],
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js"
},
"./style.css": "./dist/index.css"
},
"scripts": {
"prepublishOnly": "npm run build",
"dev": "vite",
"build": "tsc -b ./tsconfig.lib.json && vite build",
"lint": "eslint .",
"test": "vitest",
"preview": "vite preview"
},
"peerDependencies": {
"@floating-ui/react": "^0.27.6",
"@lhncbc/ucum-lhc": "^5.0.0",
"fhirpath": "^4.9.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@phosphor-icons/react": "^2.1.10",
"@codemirror/commands": "^6.8.1",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.36.5",
"@eslint/js": "^9.25.1",
"@lezer/highlight": "^1.2.1",
"immer": "^10.1.1",
"lezer-fhirpath": "^1.1.1",
"@tailwindcss/postcss": "^4.1.4",
"@types/node": "^22.14.1",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"@vitejs/plugin-react": "^4.4.1",
"animate.css": "^4.1.1",
"classnames": "^2.5.1",
"codemirror": "^6.0.1",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.0.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"react-json-view-lite": "^2.4.1",
"react-resizable-panels": "^2.1.7",
"tailwindcss": "^4.1.4",
"typescript": "~5.8.3",
"typescript-eslint": "^8.31.0",
"vite": "^6.4.1",
"vite-css-modules": "^1.8.6",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.1.3",
"zustand": "^5.0.3"
}
}