-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.25 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
{
"name": "@humanitas/sdk",
"version": "0.1.0",
"description": "Humanitas — an elite, Effect-native TypeScript SDK for the Humana Data Exchange APIs (unofficial).",
"type": "module",
"license": "MIT",
"keywords": [
"effect",
"openapi",
"sdk",
"typescript",
"humana",
"fhir",
"healthcare",
"apigee"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md"
],
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"gen": "bash scripts/gen.sh",
"typecheck": "tsc -p tsconfig.json",
"test": "tsx test/run.ts",
"clean": "rm -rf dist",
"build": "npm run clean && tsc -p tsconfig.build.json",
"prepublishOnly": "npm run typecheck && npm run test && npm run build"
},
"peerDependencies": {
"@effect/platform": ">=0.72.0",
"effect": ">=3.12.0"
},
"devDependencies": {
"@effect/platform": "^0.72.0",
"effect": "^3.12.0",
"openapi-typescript": "^7.13.0",
"swagger2openapi": "^7.0.8",
"tsx": "^4.22.0",
"typescript": "^5.7.0"
}
}