-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
58 lines (58 loc) · 1.51 KB
/
package.json
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
{
"name": "@topologyhealth/smarterfhir",
"version": "0.4.2",
"description": "Library for simplifying all things FHIR and SMART",
"main": "lib/cjs/index.js",
"types": "lib/esm/index.d.ts",
"module": "lib/esm/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "npm install",
"build": "npm run build-module && npm run build-esm",
"build-module": "tsc --project tsconfig.json",
"build-esm": "tsc --project tsconfig.esm.json"
},
"author": "Josh Liben and Raghavan Chandrabalan",
"keywords": [
"SMART",
"FHIR",
"Client"
],
"license": "Apache-2.0",
"dependencies": {
"ansi-regex": "^5.0.1",
"buffer": "^6.0.3",
"fast-xml-parser": ">=4.4.1",
"fhirclient": "^2.5.2",
"json5": ">=1.0.2",
"process": "^0.11.10",
"tough-cookie": ">=4.1.3",
"util": "^0.12.5",
"xml2js": ">=0.5.0"
},
"overrides": {
"@expo/cli": {
"send": ">=0.19.0"
}
},
"devDependencies": {
"@babel/core": ">=7.23.5",
"@types/fhir": "^0.0.37",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"ansi-regex": "^5.0.1",
"eslint": "^8.48.0",
"eslint-plugin-react": "^7.33.2",
"fast-xml-parser": ">=4.4.1",
"fhirclient": "^2.5.2",
"json5": ">=1.0.2",
"react-devtools-core": ">=4.28.5",
"tough-cookie": ">=4.1.3",
"typescript": "^5.1.3",
"xml2js": ">=0.5.0"
},
"peerDependencies": {
"fhirclient": "^2.5.2"
}
}