From 26049a92ca54fa8ec519c92c636162cff0965fad Mon Sep 17 00:00:00 2001 From: Bori-github Date: Sun, 19 Jul 2026 15:43:29 +0900 Subject: [PATCH] =?UTF-8?q?chore(demo-electron):=20=ED=8C=A8=ED=82=A4?= =?UTF-8?q?=EC=A7=80=EB=AA=85=EC=9D=84=20@zpl-kit/demo-electron=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C=20=EB=B0=94=EA=BE=B8=EA=B3=A0=20private=20=EC=A7=80?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 워크스페이스 이름이 'electron'이라 devDependencies의 electron 패키지와 겹쳤고, private 플래그가 없어 발행 차단 대상에서 빠져 있었다. demos/web의 @zpl-kit/demo-web 패턴에 맞춘다. electron-vite 템플릿 기본값으로 남아 있던 author·homepage·description도 저장소 값으로 정정한다. pnpm.onlyBuiltDependencies는 루트에 동일 설정이 있어 효력이 없고 설치할 때마다 경고를 냈으므로 제거한다. Co-Authored-By: Claude Opus 4.8 (1M context) --- demos/electron/package.json | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/demos/electron/package.json b/demos/electron/package.json index 19faa9c..db60611 100644 --- a/demos/electron/package.json +++ b/demos/electron/package.json @@ -1,10 +1,11 @@ { - "name": "electron", + "name": "@zpl-kit/demo-electron", "version": "1.0.0", - "description": "An Electron application with React and TypeScript", + "private": true, + "description": "zpl-kit Electron 데모", "main": "./out/main/index.js", - "author": "example.com", - "homepage": "https://electron-vite.org", + "author": "boriguri ", + "homepage": "https://bori-github.github.io/zpl-kit/", "scripts": { "format": "prettier --write .", "lint": "oxlint", @@ -41,11 +42,5 @@ "react-dom": "^19.1.1", "typescript": "^5.9.2", "vite": "^5.4.21" - }, - "pnpm": { - "onlyBuiltDependencies": [ - "electron", - "esbuild" - ] } }