@outburn/format-converter 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@outburn/format-converter",
3
+ "version": "1.0.0",
4
+ "description": "A TypeScript library for converting between various data formats including CSV, XML, HL7 v2, and JSON with specialized healthcare message parsing",
5
+ "main": "./dist/index.cjs",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "type": "module",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.mjs",
13
+ "require": "./dist/index.cjs"
14
+ }
15
+ },
16
+ "scripts": {
17
+ "clean": "rimraf dist",
18
+ "lint": "eslint src",
19
+ "build": "npm run clean && tsup",
20
+ "prepublishOnly": "npm run build",
21
+ "test": "vitest run"
22
+ },
23
+ "author": "Outburn Ltd.",
24
+ "license": "MIT",
25
+ "dependencies": {
26
+ "csvtojson": "^2.0.14",
27
+ "fast-xml-parser": "^4.5.3",
28
+ "hl7-dictionary": "^1.0.1",
29
+ "hl7js": "^0.0.6",
30
+ "jsonata": "^2.1.0"
31
+ },
32
+ "devDependencies": {
33
+ "@types/node": "^24.10.1",
34
+ "eslint": "^9.39.1",
35
+ "prettier": "^3.7.3",
36
+ "rimraf": "^6.1.2",
37
+ "tsup": "^8.5.1",
38
+ "tsx": "^4.21.0",
39
+ "typescript": "^5.9.3",
40
+ "typescript-eslint": "^8.48.1",
41
+ "vitest": "^4.0.14"
42
+ },
43
+ "repository": {
44
+ "type": "git",
45
+ "url": "git+https://github.com/Outburn-IL/format-converter.git"
46
+ },
47
+ "bugs": "https://github.com/Outburn-IL/format-converter/issues",
48
+ "homepage": "https://github.com/Outburn-IL/format-converter#readme"
49
+ }