pi-powerline-footer 0.2.10 → 0.2.11

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 +6 -0
  2. package/package.json +7 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [Unreleased]
4
+
5
+ ### Changed
6
+ - Added `pi` manifest to package.json for pi v0.50.0 package system compliance
7
+ - Added `pi-package` keyword for npm discoverability
8
+
3
9
  ## [0.2.10] - 2026-01-17
4
10
 
5
11
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-powerline-footer",
3
- "version": "0.2.10",
3
+ "version": "0.2.11",
4
4
  "description": "Powerline-style status bar extension for pi coding agent",
5
5
  "type": "module",
6
6
  "bin": {
@@ -12,6 +12,7 @@
12
12
  "cli.js"
13
13
  ],
14
14
  "keywords": [
15
+ "pi-package",
15
16
  "pi",
16
17
  "coding-agent",
17
18
  "powerline",
@@ -23,5 +24,10 @@
23
24
  "repository": {
24
25
  "type": "git",
25
26
  "url": "git+https://github.com/nicobailon/pi-powerline-footer.git"
27
+ },
28
+ "pi": {
29
+ "extensions": [
30
+ "./index.ts"
31
+ ]
26
32
  }
27
33
  }