aidx 1.0.4 → 1.0.5

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/dist/index.js +1 -1
  2. package/package.json +7 -7
package/dist/index.js CHANGED
@@ -10,7 +10,7 @@ const METADATA = {
10
10
  name: "aidx",
11
11
  description: "A CLI bridge between local code and LLMs.",
12
12
  author: "rx76d",
13
- version: "1.0.4",
13
+ version: "1.0.5",
14
14
  license: "MIT",
15
15
  github: "https://github.com/rx76d/aidx"
16
16
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidx",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "A CLI bridge between local code and LLMs. Copy context to clipboard and apply AI changes safely with diffs.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -38,17 +38,17 @@
38
38
  "author": "rx76d",
39
39
  "license": "MIT",
40
40
  "dependencies": {
41
- "@inquirer/prompts": "^7.0.0",
42
- "clipboardy": "^4.0.0",
43
- "diff": "^5.2.0"
41
+ "@inquirer/prompts": "^8.1.0",
42
+ "clipboardy": "^5.0.2",
43
+ "diff": "^8.0.2"
44
44
  },
45
45
  "devDependencies": {
46
- "@types/diff": "^5.0.9",
47
- "@types/node": "^20.10.0",
46
+ "@types/diff": "^7.0.2",
47
+ "@types/node": "^25.0.3",
48
48
  "tsx": "^4.7.0",
49
49
  "typescript": "^5.3.0"
50
50
  },
51
51
  "engines": {
52
- "node": ">=18.0.0"
52
+ "node": ">=20.0.0"
53
53
  }
54
54
  }