feat: 将项目名称从 Claude Code 重命名为 LHY Code

- 更新 package.json 中的 name、bin 和 scripts 字段
- 创建新的启动脚本 bin/lhy-code
- 将所有文档和源代码中的 "Claude Code" 替换为 "LHY Code"
- 更新欢迎信息、状态栏描述和版本显示
- 删除不再需要的 .env.example 文件
This commit is contained in:
2026-04-02 23:19:28 +08:00
parent ed91e47107
commit cd09784e54
16 changed files with 933 additions and 48 deletions
+4 -4
View File
@@ -1,14 +1,14 @@
{
"name": "claude-code-local",
"name": "lhy-code",
"version": "999.0.0-local",
"private": true,
"type": "module",
"bin": {
"claude-haha": "./bin/claude-haha"
"lhy-code": "./bin/lhy-code"
},
"scripts": {
"claude-haha": "bun run ./bin/claude-haha",
"start": "bun run ./bin/claude-haha"
"lhy-code": "bun run ./bin/lhy-code",
"start": "bun run ./bin/lhy-code"
},
"dependencies": {
"@anthropic-ai/sandbox-runtime": "^0.0.44",