@osca16/slnic 0.1.0 → 0.1.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.
Files changed (1) hide show
  1. package/package.json +20 -3
package/package.json CHANGED
@@ -1,8 +1,16 @@
1
1
  {
2
2
  "name": "@osca16/slnic",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Sri Lankan NIC parser + optional OCR & PDF417 barcode verification (Sinhala/Tamil/English) – pure JavaScript",
5
- "keywords": ["sri lanka", "nic", "ocr", "pdf417", "barcode", "sinhala", "tamil"],
5
+ "keywords": [
6
+ "sri lanka",
7
+ "nic",
8
+ "ocr",
9
+ "pdf417",
10
+ "barcode",
11
+ "sinhala",
12
+ "tamil"
13
+ ],
6
14
  "license": "MIT",
7
15
  "type": "module",
8
16
  "exports": {
@@ -13,10 +21,19 @@
13
21
  },
14
22
  "main": "src/index.js",
15
23
  "module": "src/index.js",
16
- "files": ["src", "README.md", "LICENSE"],
24
+ "files": [
25
+ "src",
26
+ "README.md",
27
+ "LICENSE"
28
+ ],
17
29
  "sideEffects": false,
18
30
  "scripts": {
19
31
  "test": "node -e \"import('./src/index.js').then(m=>console.log('OK', Object.keys(m)))\"",
20
32
  "prepublishOnly": "node -e \"console.log('building… (no build step for JS)')\""
33
+ },
34
+ "dependencies": {
35
+ "@osca16/slnic": "^0.1.0",
36
+ "@zxing/library": "^0.21.3",
37
+ "tesseract.js": "^6.0.1"
21
38
  }
22
39
  }