emr-types
Version:
Comprehensive TypeScript Types Library for Electronic Medical Record (EMR) Applications - Domain-Driven Design with Zod Validation
92 lines • 2.34 kB
JSON
{
"name": "emr-types",
"version": "0.1.0",
"description": "Comprehensive TypeScript Types Library for Electronic Medical Record (EMR) Applications - Domain-Driven Design with Zod Validation",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:type": "tsd",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write src/**/*.{ts,tsx}",
"docs": "typedoc src/index.ts --out docs/api",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"dependencies": {
"zod": "^3.22.4",
"tslib": "^2.6.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"tsd": "^0.29.0",
"typedoc": "^0.25.0",
"typescript": "^5.3.0"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"keywords": [
"typescript",
"types",
"interfaces",
"emr",
"healthcare",
"medical",
"domain-driven-design",
"zod",
"validation",
"type-safe",
"electronic-medical-record",
"healthcare-standards",
"hipaa",
"icd",
"cpt",
"loinc",
"ndc",
"rxnorm"
],
"author": {
"name": "QKIT EMR Team",
"email": "dev@qkit.com",
"url": "https://qkit.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/qkit-emr/emr-monorepo.git",
"directory": "libs/types"
},
"bugs": {
"url": "https://github.com/qkit-emr/emr-monorepo/issues"
},
"homepage": "https://github.com/qkit-emr/emr-monorepo/tree/main/libs/types#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"publishConfig": {
"access": "public"
}
}