@spences10/pi-coding-preferences 0.0.5 → 0.0.6

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 (1) hide show
  1. package/package.json +6 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spences10/pi-coding-preferences",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Pi extension that nudges agents toward configured coding workflow preferences",
5
5
  "keywords": [
6
6
  "agent-guardrails",
@@ -27,9 +27,10 @@
27
27
  "access": "public"
28
28
  },
29
29
  "devDependencies": {
30
+ "@earendil-works/pi-coding-agent": "^0.74.1",
30
31
  "@types/node": "^25.8.0",
31
32
  "typescript": "^6.0.3",
32
- "vitest": "^4.1.6"
33
+ "vitest": "4.1.5"
33
34
  },
34
35
  "peerDependencies": {
35
36
  "@earendil-works/pi-coding-agent": "*"
@@ -50,6 +51,8 @@
50
51
  "check:self": "tsc --noEmit -p tsconfig.json",
51
52
  "test": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run test:self",
52
53
  "test:self": "vitest run",
53
- "test:watch": "vitest"
54
+ "test:watch": "vitest",
55
+ "coverage:self": "vitest run --coverage",
56
+ "coverage": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run coverage:self"
54
57
  }
55
58
  }