@lowlysre/icd-10-cm 0.0.1 → 0.0.2

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/README.md CHANGED
@@ -19,4 +19,4 @@ npm install @lowlysre/icd-10-cm
19
19
 
20
20
  ## Versions
21
21
 
22
- * 0.0.1 - April 1, 2024, ICD-10-CM update
22
+ * v0.x.x - April 1, 2024, ICD-10-CM update
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@lowlysre/icd-10-cm",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "ICD-10-CM data",
5
- "main": "dist/index.js",
5
+ "main": "dist/src/index.js",
6
6
  "scripts": {
7
7
  "test": "jest",
8
8
  "lint": "eslint . --ext .ts",
9
- "build": "tsc --declaration",
9
+ "build": "tsc",
10
10
  "parse-icd": "ts-node scripts/parseICD.ts"
11
11
  },
12
- "types": "./src/ICD10Dictionary.d.ts",
12
+ "types": "./dist/src/index.d.ts",
13
13
  "author": "John McCall",
14
14
  "license": "MIT",
15
15
  "files": [
@@ -23,6 +23,11 @@
23
23
  "repository": {
24
24
  "url": "https://github.com/lowlysre/icd-10-cm"
25
25
  },
26
+ "keywords": [
27
+ "icd",
28
+ "icd-10",
29
+ "icd-code"
30
+ ],
26
31
  "devDependencies": {
27
32
  "@types/jest": "^29.5.12",
28
33
  "@typescript-eslint/eslint-plugin": "^7.15.0",