@agnishc/edb-diff-files 0.1.0 → 0.4.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/package.json +25 -7
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased]
3
+ ## [0.2.0] - 2026-04-29
4
4
 
5
5
  ### Added
6
6
  - Initial release: session-scoped file change tracker via write/edit tool events and bash diff snapshots
package/package.json CHANGED
@@ -1,8 +1,13 @@
1
1
  {
2
2
  "name": "@agnishc/edb-diff-files",
3
- "version": "0.1.0",
3
+ "version": "0.4.0",
4
4
  "description": "Pi extension: live widget tracking files changed this session with an inline diff viewer",
5
- "keywords": ["pi-package", "pi-extension", "edb", "git"],
5
+ "keywords": [
6
+ "pi-package",
7
+ "pi-extension",
8
+ "edb",
9
+ "git"
10
+ ],
6
11
  "type": "module",
7
12
  "license": "MIT",
8
13
  "author": "Agnish Chakraborty",
@@ -12,12 +17,25 @@
12
17
  "directory": "packages/edb-diff-files"
13
18
  },
14
19
  "homepage": "https://github.com/agnishcc/pi-extention-monorepo/tree/main/packages/edb-diff-files#readme",
15
- "bugs": { "url": "https://github.com/agnishcc/pi-extention-monorepo/issues" },
16
- "publishConfig": { "access": "public" },
17
- "scripts": { "test": "vitest run" },
18
- "files": ["src", "README.md", "LICENSE", "CHANGELOG.md"],
20
+ "bugs": {
21
+ "url": "https://github.com/agnishcc/pi-extention-monorepo/issues"
22
+ },
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "scripts": {
27
+ "test": "vitest run"
28
+ },
29
+ "files": [
30
+ "src",
31
+ "README.md",
32
+ "LICENSE",
33
+ "CHANGELOG.md"
34
+ ],
19
35
  "pi": {
20
- "extensions": ["./src/index.ts"]
36
+ "extensions": [
37
+ "./src/index.ts"
38
+ ]
21
39
  },
22
40
  "peerDependencies": {
23
41
  "@mariozechner/pi-coding-agent": "*",