diffx-js 0.3.0 → 0.3.1

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 +2 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # diffx-npm
1
+ # diffx-js
2
2
 
3
3
  A Node.js wrapper for the `diffx` CLI tool.
4
4
 
@@ -13,7 +13,7 @@ This will automatically download the appropriate `diffx` binary for your system
13
13
  ## Usage
14
14
 
15
15
  ```javascript
16
- const { runDiffx } = require('diffx-npm');
16
+ const { runDiffx } = require('diffx-js');
17
17
 
18
18
  async function main() {
19
19
  // Compare two JSON files
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "diffx-js",
3
- "version": "0.3.0",
4
- "description": "A CLI tool for structured diffing of JSON, YAML, and TOML files.",
5
- "keywords": ["diff", "json", "yaml", "toml", "cli", "structured", "configuration"],
3
+ "version": "0.3.1",
4
+ "description": "A Node.js wrapper for the diffx CLI tool - structured diffing of JSON, YAML, TOML, XML, INI, and CSV files.",
5
+ "keywords": ["diff", "json", "yaml", "toml", "xml", "ini", "csv", "cli", "structured", "configuration", "semantic"],
6
6
  "main": "index.js",
7
7
  "bin": {
8
8
  "diffx": "./index.js"