gst-validator 1.0.1 → 1.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.
Files changed (2) hide show
  1. package/README.md +5 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # gst-validator
2
2
 
3
+ ## Module format
4
+
5
+ This package is ESM-only. Use `import` syntax in Node.js projects with `type: module`. CommonJS applications can load it with `await import("gst-validator")`.
6
+
7
+
3
8
  Validate and parse Indian GSTIN numbers - real checksum verification, state-code lookup, and the embedded PAN, all offline.
4
9
 
5
10
  ## Install
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-validator",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Validate and parse Indian GSTIN numbers, including checksum verification and the embedded PAN",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",