@oai404iao/pi-codex-web-search 0.1.0-alpha.1 → 0.1.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 (3) hide show
  1. package/README.md +1 -1
  2. package/index.ts +2 -0
  3. package/package.json +8 -7
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Alpha bootstrap candidate; initial npm publication is still pending.
4
4
 
5
- Peer floor: Pi 0.84.2; tested against 0.84.2 and 0.85.1.
5
+ Peer floor: Pi 0.85.1; tested against 0.85.1.
6
6
 
7
7
  Installs `web_search` and search activity rendering. Depends only on
8
8
  `pi-codex-runtime`, not core, imagegen or the old bundle.
package/index.ts ADDED
@@ -0,0 +1,2 @@
1
+ export { default } from "./src/index.js";
2
+ export * from "./src/index.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oai404iao/pi-codex-web-search",
3
- "version": "0.1.0-alpha.1",
3
+ "version": "0.1.0",
4
4
  "private": false,
5
5
  "description": "Unpublished pi-codex-web-search workspace for the staged Codex split",
6
6
  "type": "module",
@@ -24,13 +24,13 @@
24
24
  },
25
25
  "pi": {
26
26
  "extensions": [
27
- "./src/index.ts"
27
+ "./index.ts"
28
28
  ]
29
29
  },
30
30
  "peerDependencies": {
31
- "@earendil-works/pi-ai": ">=0.84.2",
32
- "@earendil-works/pi-coding-agent": ">=0.84.2",
33
- "@earendil-works/pi-tui": ">=0.84.2",
31
+ "@earendil-works/pi-ai": ">=0.85.1",
32
+ "@earendil-works/pi-coding-agent": ">=0.85.1",
33
+ "@earendil-works/pi-tui": ">=0.85.1",
34
34
  "typebox": "*"
35
35
  },
36
36
  "peerDependenciesMeta": {
@@ -45,7 +45,7 @@
45
45
  }
46
46
  },
47
47
  "dependencies": {
48
- "@oai404iao/pi-codex-runtime": "0.1.0-alpha.1"
48
+ "@oai404iao/pi-codex-runtime": "0.1.0"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@earendil-works/pi-ai": "0.85.1",
@@ -66,6 +66,7 @@
66
66
  "registry": "https://registry.npmjs.org/"
67
67
  },
68
68
  "files": [
69
+ "index.ts",
69
70
  "src/",
70
71
  "LICENSE",
71
72
  "LICENSES/",
@@ -76,5 +77,5 @@
76
77
  "engines": {
77
78
  "node": ">=22.19.0"
78
79
  },
79
- "gitHead": "32ba01f3c08b7fd63d09e9b2373cf081c4525533"
80
+ "gitHead": "88cb6f56447d88b71232cd764ca5b29251341d23"
80
81
  }