-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.22 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
{
"name": "@fhir-dsl/smart",
"version": "1.2.2",
"description": "SMART on FHIR v2 authentication for @fhir-dsl — Backend Services, App Launch (PKCE), scopes, and discovery",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"dev": "tsup --watch",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@fhir-dsl/core": "workspace:*",
"@fhir-dsl/utils": "workspace:*",
"jose": "^5.9.6"
},
"files": [
"dist"
],
"author": "Abdelhadi Sabani",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/awbx/fhir-dsl.git",
"directory": "packages/smart"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"fhir",
"smart-on-fhir",
"oauth",
"oauth2",
"pkce",
"healthcare",
"hl7",
"typescript"
],
"devDependencies": {
"@types/node": "^25.6.0"
}
}