Merge branch 'feature/prod'

This commit is contained in:
claude-code-best 2026-04-01 09:53:21 +08:00
commit 9018c7afdb
2 changed files with 195 additions and 143 deletions

View File

@ -9,9 +9,10 @@
"includes": ["**", "!!**/dist", "!!**/packages/@ant"]
},
"formatter": {
"enabled": false,
"indentStyle": "tab",
"lineWidth": 120
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 80
},
"linter": {
"enabled": true,
@ -75,11 +76,38 @@
}
}
},
"javascript": {
"json": {
"formatter": {
"quoteStyle": "double"
"enabled": false
}
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"semicolons": "asNeeded",
"arrowParentheses": "asNeeded",
"trailingCommas": "all"
}
},
"overrides": [
{
"includes": ["**/*.tsx"],
"javascript": {
"formatter": {
"semicolons": "always"
}
},
"formatter": {
"lineWidth": 120
}
},
{
"includes": ["scripts/**", "packages/**", "**/*.js", "**/*.mjs", "**/*.jsx"],
"formatter": {
"enabled": false
}
}
],
"assist": {
"enabled": false
}

View File

@ -1,7 +1,32 @@
{
"name": "claude-js",
"version": "1.0.0",
"version": "1.0.1",
"description": "Reverse-engineered Anthropic Claude Code CLI — interactive AI coding assistant in the terminal",
"type": "module",
"author": "claude-code-best <claude-code-best@proton.me>",
"repository": {
"type": "git",
"url": "git+https://github.com/claude-code-best/claude-code.git"
},
"homepage": "https://github.com/claude-code-best/claude-code#readme",
"bugs": {
"url": "https://github.com/claude-code-best/claude-code/issues"
},
"keywords": [
"claude",
"anthropic",
"cli",
"ai",
"coding-assistant",
"terminal",
"repl"
],
"engines": {
"bun": ">=1.2.0"
},
"bin": {
"claude-js": "dist/cli.js"
},
"workspaces": [
"packages/*",
"packages/@ant/*"
@ -21,7 +46,8 @@
"check:unused": "knip-bun",
"health": "bun run scripts/health-check.ts"
},
"dependencies": {
"dependencies": {},
"devDependencies": {
"@alcalzone/ansi-tokenize": "^0.3.0",
"@ant/claude-for-chrome-mcp": "workspace:*",
"@ant/computer-use-input": "workspace:*",
@ -123,9 +149,7 @@
"ws": "^8.20.0",
"xss": "^1.0.15",
"yaml": "^2.8.3",
"zod": "^4.3.6"
},
"devDependencies": {
"zod": "^4.3.6",
"@biomejs/biome": "^2.4.10",
"@types/bun": "^1.3.11",
"@types/cacache": "^20.0.1",