@spences10/pi-omnisearch 0.0.9 → 0.0.10

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 +7 -0
  2. package/package.json +6 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @spences10/pi-omnisearch
2
2
 
3
+ ## 0.0.10
4
+
5
+ ### Patch Changes
6
+
7
+ - ffea37e: Standardize shared dependency versions through pnpm catalog
8
+ and align package dev dependencies for CI.
9
+
3
10
  ## 0.0.9
4
11
 
5
12
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spences10/pi-omnisearch",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "Pi extension that reminds the model to use mcp-omnisearch for verified web research",
5
5
  "keywords": [
6
6
  "mcp",
@@ -32,9 +32,10 @@
32
32
  }
33
33
  },
34
34
  "devDependencies": {
35
+ "@earendil-works/pi-coding-agent": "^0.74.1",
35
36
  "@types/node": "^25.8.0",
36
37
  "typescript": "^6.0.3",
37
- "vitest": "^4.1.6"
38
+ "vitest": "4.1.5"
38
39
  },
39
40
  "peerDependencies": {
40
41
  "@earendil-works/pi-coding-agent": "*"
@@ -54,6 +55,8 @@
54
55
  "check": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run check:self",
55
56
  "check:self": "tsc --noEmit -p tsconfig.json",
56
57
  "test": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run test:self",
57
- "test:self": "vitest run"
58
+ "test:self": "vitest run",
59
+ "coverage:self": "vitest run --coverage",
60
+ "coverage": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run coverage:self"
58
61
  }
59
62
  }