mirror of
https://github.com/markwylde/claude-code-gitea-action.git
synced 2026-02-19 18:12:50 +08:00
This merge brings in new features and improvements from the main branch while preserving Gitea-specific functionality: - Updated README.md to maintain Gitea-specific setup instructions - Preserved Gitea-specific authentication and API configurations - Kept local git operations and MCP tool references for Gitea compatibility - Removed GitHub-specific files (CONTRIBUTING.md, FAQ.md) and features - Updated action.yml with new inputs while maintaining Gitea token usage - Resolved conflicts in prompt generation to use Gitea comment tools The merge maintains the Gitea fork's core functionality while incorporating upstream bug fixes and feature enhancements.
29 lines
735 B
JSON
29 lines
735 B
JSON
{
|
|
"name": "@anthropic-ai/claude-code-action",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"install-hooks": "bun run scripts/install-hooks.sh",
|
|
"test": "bun test",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@actions/github": "^6.0.1",
|
|
"@anthropic-ai/sdk": "^0.30.0",
|
|
"@modelcontextprotocol/sdk": "^1.11.0",
|
|
"@octokit/webhooks-types": "^7.6.1",
|
|
"node-fetch": "^3.3.2",
|
|
"zod": "^3.24.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "1.2.11",
|
|
"@types/node": "^20.0.0",
|
|
"@types/node-fetch": "^2.6.12",
|
|
"prettier": "3.5.3",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|