relay-dsh-plugin-manager 0.2.3 → 0.2.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "relay-dsh-plugin-manager",
3
- "version": "0.2.3",
3
+ "version": "0.2.5",
4
4
  "description": "Conversation-first plugin discovery and lifecycle management for DeepSeek Harness.",
5
5
  "keywords": [
6
6
  "deepseek-harness",
@@ -32,13 +32,13 @@
32
32
  "clean": "node -e \"require('node:fs').rmSync('lib',{recursive:true,force:true})\"",
33
33
  "build": "npm run clean && tsdown --config tsdown.config.ts",
34
34
  "typecheck": "tsc -p tsconfig.json --noEmit",
35
- "test": "vitest run && node --test test/*.test.mjs",
36
- "test:unit": "vitest run test/unit",
37
- "test:integration": "vitest run test/integration",
38
- "acceptance:live:codex": "RELAY_LIVE_PLUGIN_ACCEPTANCE=1 vitest run test/live/codex.live.test.ts --reporter=verbose",
39
- "acceptance:live:registry": "node --experimental-strip-types scripts/accept-live-registry.mjs",
40
- "acceptance:controlled": "node --experimental-strip-types scripts/accept-controlled-lifecycle.mjs",
41
- "acceptance": "node scripts/accept-local-package.mjs",
35
+ "test": "RELAY_PLUGIN_MANAGER_TELEMETRY=0 vitest run && node --test test/*.test.mjs",
36
+ "test:unit": "RELAY_PLUGIN_MANAGER_TELEMETRY=0 vitest run test/unit",
37
+ "test:integration": "RELAY_PLUGIN_MANAGER_TELEMETRY=0 vitest run test/integration",
38
+ "acceptance:live:codex": "RELAY_PLUGIN_MANAGER_TELEMETRY=0 RELAY_LIVE_PLUGIN_ACCEPTANCE=1 vitest run test/live/codex.live.test.ts --reporter=verbose",
39
+ "acceptance:live:registry": "RELAY_PLUGIN_MANAGER_TELEMETRY=0 node --experimental-strip-types scripts/accept-live-registry.mjs",
40
+ "acceptance:controlled": "RELAY_PLUGIN_MANAGER_TELEMETRY=0 node --experimental-strip-types scripts/accept-controlled-lifecycle.mjs",
41
+ "acceptance": "RELAY_PLUGIN_MANAGER_TELEMETRY=0 node scripts/accept-local-package.mjs",
42
42
  "release:dry-run": "npm publish --dry-run --tag next",
43
43
  "verify": "npm run typecheck && npm test && npm run build && npm run acceptance",
44
44
  "prepack": "npm run build"