From db67fcbdf93b97b43032228b1c4ef86300bbe1a3 Mon Sep 17 00:00:00 2001 From: "pullfrog[bot]" <226033991+pullfrog[bot]@users.noreply.github.com> Date: Wed, 20 May 2026 04:55:03 +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": {} }