@prjct.app/pi-clipboard 0.1.6 → 0.1.7

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/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ ## [0.1.7](https://github.com/prjct-app/pi-clipboard/compare/v0.1.6...v0.1.7) (2026-09-17)
2
+
1
3
  ## [0.1.6](https://github.com/prjct-app/pi-clipboard/compare/v0.1.5...v0.1.6) (2026-09-10)
2
4
 
3
5
  ## [0.1.5](https://github.com/prjct-app/pi-clipboard/compare/v0.1.4...v0.1.5) (2026-09-10)
package/CONTRIBUTING.md CHANGED
@@ -7,6 +7,7 @@
7
7
  - Keep image data local and limit file access to Pi clipboard files in the system temporary directory.
8
8
  - Keep tests offline and use temporary files rather than the real Pi configuration or clipboard.
9
9
  - Run `npm run check` and `npm test` before review.
10
+ - Build the compiled local copy Pi loads with `npm run build:pi`. It writes `~/.pi/agent/builds/<package>` outside the repository, because compiled code inside it would load the repository's development copy of Pi instead of the host's.
10
11
  - Never push, open or merge a pull request, publish, or deploy without explicit authorization.
11
12
 
12
13
  ## Package documentation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prjct.app/pi-clipboard",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "Preview pasted images in PI Agent before sending them, with inline thumbnails and a compact attachment gallery.",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -26,7 +26,8 @@
26
26
  "scripts": {
27
27
  "check": "tsc --noEmit",
28
28
  "test": "node --import tsx --test tests/*.test.ts",
29
- "check:package": "npm pack --dry-run --ignore-scripts"
29
+ "check:package": "npm pack --dry-run --ignore-scripts",
30
+ "build:pi": "node scripts/build-pi.mjs"
30
31
  },
31
32
  "engines": {
32
33
  "node": ">=22.19.0"
@@ -39,6 +40,7 @@
39
40
  "@earendil-works/pi-coding-agent": "0.85.1",
40
41
  "@earendil-works/pi-tui": "0.85.1",
41
42
  "@types/node": "^22.19.0",
43
+ "esbuild": "^0.28.1",
42
44
  "tsx": "^4.20.0",
43
45
  "typescript": "^5.9.3"
44
46
  },