convert-csv-to-json 4.17.0 → 4.19.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/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.17.0",
3
+ "version": "4.19.0",
4
4
  "description": "Convert CSV to JSON",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -1,23 +0,0 @@
1
- {
2
- "name": "Node.js",
3
- "image": "mcr.microsoft.com/devcontainers/base:ubuntu",
4
-
5
- // Features to add to the dev container. More info: https://containers.dev/implementors/features.
6
- "features": {
7
- "ghcr.io/devcontainers/features/node:1": {
8
- "version": "lts"
9
- }
10
- },
11
-
12
- // Use 'forwardPorts' to make a list of ports inside the container available locally.
13
- // "forwardPorts": [],
14
-
15
- // Use 'postCreateCommand' to run commands after the container is created.
16
- "postCreateCommand": "npm install"
17
-
18
- // Configure tool-specific properties.
19
- // "customizations": {},
20
-
21
- // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
22
- // "remoteUser": "root"
23
- }
@@ -1,24 +0,0 @@
1
- {
2
- // Use IntelliSense to learn about possible attributes.
3
- // Hover to view descriptions of existing attributes.
4
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
- "version": "0.2.0",
6
- "configurations": [
7
- {
8
- "name": "Launch Chrome",
9
- "request": "launch",
10
- "type": "chrome",
11
- "url": "http://localhost:8080",
12
- "webRoot": "${workspaceFolder}"
13
- },
14
- {
15
- "type": "node",
16
- "request": "launch",
17
- "name": "Launch Program",
18
- "skipFiles": [
19
- "<node_internals>/**"
20
- ],
21
- "program": "${workspaceFolder}/index.js"
22
- }
23
- ]
24
- }