From 9a52d2d1733a5e06089d0beee7efe44a07cee388 Mon Sep 17 00:00:00 2001 From: LiuJiaNan <15703339975@163.com> Date: Tue, 25 Aug 2026 17:20:39 +0800 Subject: [PATCH] =?UTF-8?q?chore(package):=20=E6=B7=BB=E5=8A=A0npm?= =?UTF-8?q?=E5=8F=91=E5=B8=83=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 配置包发布为公开访问权限 - 设置npm发布的注册表地址为官方npm仓库 - 确保package.json中publishConfig字段格式正确 - 为后续发布操作提供默认配置支持 --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index fd8c9f3..f5c0d8b 100644 --- a/package.json +++ b/package.json @@ -50,5 +50,9 @@ "glob": "^13.0.0", "rollup": "^4.54.0", "typescript": "^5.9.3" + }, + "publishConfig": { + "access": "public", + "registry": "https://registry.npmjs.org/" } }