From 06272c8f2c498dc9e7717ae983ad005cf7f80f0c Mon Sep 17 00:00:00 2001 From: Padreug Date: Tue, 26 May 2026 00:29:29 +0200 Subject: [PATCH] pin @nostr-dev-kit/ndk to 2.8.1 instead of workspace:* MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upstream declares the dependency as workspace:*, but the repo has no pnpm-workspace.yaml and no sibling @nostr-dev-kit/ndk package — so pnpm install fails with ERR_PNPM_WORKSPACE_PKG_NOT_FOUND on a clean clone. The shipped pnpm-lock.yaml was resolving to ndk 2.8.1, so pin to that exact version to match what the lockfile already expects. Fixes #3. Co-Authored-By: Claude Opus 4.7 (1M context) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4232435..297fd2a 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "@fastify/view": "^8.2.0", "@inquirer/password": "^1.1.2", "@inquirer/prompts": "^1.2.3", - "@nostr-dev-kit/ndk": "workspace:*", + "@nostr-dev-kit/ndk": "2.8.1", "@prisma/client": "^5.4.1", "@scure/base": "^1.1.1", "@types/yargs": "^17.0.24",