convert-csv-to-json 4.18.0 → 4.20.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.
@@ -76,7 +76,7 @@ jobs:
76
76
  - name: Generate API docs
77
77
  run: npm run docs:api
78
78
  - name: Configure GitHub Pages
79
- uses: actions/configure-pages@v4
79
+ uses: actions/configure-pages@v5
80
80
  - name: Upload pages artifact
81
81
  uses: actions/upload-pages-artifact@v3
82
82
  with:
package/README.md CHANGED
@@ -27,6 +27,12 @@ Transform CSV data into JSON with a simple, chainable API. Choose your implement
27
27
  - **[Asynchronous API](docs/ASYNC.md)** - Promise-based for modern async/await patterns
28
28
  - **[Browser API](docs/BROWSER.md)** - Client-side CSV parsing for web applications
29
29
 
30
+ ## Demo and JSDoc
31
+
32
+ * [Demo](https://iuccio.github.io/csvToJson/)
33
+ * [JSDoc](https://iuccio.github.io/csvToJson/api/index.html)
34
+
35
+
30
36
  ## Features
31
37
 
32
38
  ✅ **RFC 4180 Compliant** - Proper handling of quoted fields, delimiters, newlines, and escape sequences
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "convert-csv-to-json",
3
- "version": "4.18.0",
3
+ "version": "4.20.0",
4
4
  "description": "Convert CSV to JSON",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",