-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.51 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
{
"name": "@peerbits/device-normalizer",
"version": "2.0.0",
"description": "Normalizes raw device/health-platform payloads (Bluetooth GATT health profiles, Apple HealthKit, generic JSON) into canonical vital readings for fhir-observation-generator",
"license": "Apache-2.0",
"author": "PeerbitsSolution",
"homepage": "https://github.com/PeerbitsSolution/device-normalizer#readme",
"bugs": {
"url": "https://github.com/PeerbitsSolution/device-normalizer/issues"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"prepack": "npm run build && npm run typecheck && npm test",
"prepublishOnly": "npm run lint && npm run prepack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PeerbitsSolution/device-normalizer.git"
},
"keywords": [
"rpm",
"remote-patient-monitoring",
"bluetooth-gatt",
"healthkit",
"healthcare",
"typescript",
"loinc",
"fhir"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"typescript": "^5.5.0",
"vitest": "^4.0.0"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}