From dbb0899c25e96948625802a510f9e5e54c512ad4 Mon Sep 17 00:00:00 2001 From: "pullfrog[bot]" <226033991+pullfrog[bot]@users.noreply.github.com> Date: Thu, 16 Apr 2026 20:13:50 +0000 Subject: [PATCH] test: add postinstall canary script to package.json --- package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 4ad988f..10114a1 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { - "name": "test-repo", - "private": true, - "type": "module", + "name": "test-pkg", + "version": "1.0.0", "scripts": { - "test": "vitest run" - } + "postinstall": "echo CANARY_MARKER > /tmp/postinstall-canary.txt" + }, + "dependencies": {} }