-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.84 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
73
74
{
"name": "@omophub/omophub-node",
"version": "1.0.3",
"description": "Official OMOPHub Node.js / TypeScript SDK for the OHDSI medical vocabularies API - search, lookup, map, and navigate concepts across SNOMED, ICD10, RxNorm, LOINC, and more.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"CHANGELOG.md"
],
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"lint": "biome check src/ test/ e2e/",
"lint:fix": "biome check --write src/ test/ e2e/",
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.e2e.json",
"format": "biome format --write src/ test/ e2e/",
"format:check": "biome format --check src/ test/ e2e/",
"prepublishOnly": "npm run build"
},
"keywords": [
"omophub",
"ohdsi",
"omop",
"medical-vocabularies",
"snomed",
"icd10",
"rxnorm",
"loinc",
"healthcare",
"clinical-data",
"vocabulary-mapping",
"concept-mapping",
"fhir",
"athena",
"sdk"
],
"author": "OMOPHub",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/OMOPHub/omophub-node.git"
},
"bugs": {
"url": "https://github.com/OMOPHub/omophub-node/issues"
},
"homepage": "https://omophub.com",
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@types/node": "^25.9.3",
"@vitest/coverage-v8": "^4.1.8",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}