This repository has been archived by the owner on Jun 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
110 lines (110 loc) · 3.05 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@sero.run/sero",
"version": "0.0.29",
"description": "Sero is a modular TypeScript toolchain for FHIR (and friends) sponsored by Automate Medical Inc.",
"homepage": "https://docs.sero.run",
"bugs": "https://github.com/automate-medical/sero/issues",
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest --detectOpenHandles",
"docs": "typedoc src/index.ts src/cds-hooks/index.ts src/rest/index.ts src/smart-auth/index.ts --readme ./README.md --tsconfig tsconfig/base.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "run-s build:*",
"build:types": "tsc -p ./tsconfig/types.json",
"build:cjs": "tsc -p ./tsconfig/cjs.json",
"build:esm": "tsc -p ./tsconfig/esm.json && echo '{\"type\": \"module\"}'> dist/esm/package.json"
},
"keywords": [
"fhir",
"hl7",
"cds-hooks",
"smart-on-fhir"
],
"author": "Automate Medical Inc.",
"license": "Apache 2.0",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json",
"./cds-hooks/service": {
"import": "./dist/esm/cds-hooks/service.js",
"require": "./dist/cjs/cds-hooks/service.js"
},
"./cds-hooks/card": {
"import": "./dist/esm/cds-hooks/card.js",
"require": "./dist/cjs/cds-hooks/card.js"
},
"./cds-hooks/suggestion": {
"import": "./dist/esm/cds-hooks/suggestion.js",
"require": "./dist/cjs/cds-hooks/suggestion.js"
},
"./cds-hooks/util": {
"import": "./dist/esm/cds-hooks/util.js",
"require": "./dist/cjs/cds-hooks/util.js"
},
"./rest/index": {
"import": "./dist/esm/rest/index.js",
"require": "./dist/cjs/rest/index.js"
},
"./client/index": {
"import": "./dist/esm/client/index.js",
"require": "./dist/cjs/client/index.js"
},
"./smart-auth/index": {
"import": "./dist/esm/smart-auth/index.js",
"require": "./dist/cjs/smart-auth/index.js"
}
},
"files": [
"dist"
],
"typesVersions": {
"*": {
"*": [
"./dist/types/*"
]
}
},
"dependencies": {
"@reduxjs/toolkit": "^1.6.1",
"cross-fetch": "^3.1.5",
"fastify": "^3.18.0",
"fastify-plugin": "^3.0.0",
"simple-oauth2": "^4.2.0"
},
"devDependencies": {
"@types/fhir": "^0.0.34",
"@types/jest": "^27.0.0",
"@types/node": "^16.11.0",
"@types/simple-oauth2": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.1.0",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^27.0.5",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"pino-pretty": "^7.0.0",
"ts-jest": "^27.0.5",
"ts-jest-resolver": "^2.0.0",
"typedoc": "^0.22.4",
"typescript": "^4.3.4"
},
"engines": {
"node": ">=14"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"rootDir": "src",
"resolver": "ts-jest-resolver",
"globals": {
"ts-jest": {
"tsconfig": "tsconfig/test.json"
}
}
}
}