chore(package): 添加npm发布配置

- 配置包发布为公开访问权限
- 设置npm发布的注册表地址为官方npm仓库
- 确保package.json中publishConfig字段格式正确
- 为后续发布操作提供默认配置支持
master
LiuJiaNan 2026-08-25 17:20:39 +08:00
parent 9b2fd08d2a
commit 9a52d2d173
1 changed files with 4 additions and 0 deletions

View File

@ -50,5 +50,9 @@
"glob": "^13.0.0", "glob": "^13.0.0",
"rollup": "^4.54.0", "rollup": "^4.54.0",
"typescript": "^5.9.3" "typescript": "^5.9.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
} }
} }