mirror of
https://github.com/jeffusion/gitea-ai-assistant.git
synced 2026-03-27 10:05:50 +00:00
- 添加前端管理界面组件,包括仓库管理、数据表格和仓库表格列 - 添加后端管理API,支持仓库列表、Webhook创建和删除 - 更新Docker配置,支持前端和后端的多阶段构建 - 添加管理员认证功能,包括JWT令牌验证 - 更新配置文件,支持管理员密码和JWT密钥配置 - 更新README文档,添加后台管理功能说明和使用指南 - 优化.gitignore文件,简化Docker构建时的忽略规则 - 更新TypeScript配置,添加路径映射支持
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
||
"name": "gitea-assistant",
|
||
"version": "1.0.0",
|
||
"description": "Gitea功能增强助手,包含AI代码审核功能",
|
||
"engines": {
|
||
"bun": ">=1.2.5"
|
||
},
|
||
"dependencies": {
|
||
"@hono/zod-validator": "^0.4.3",
|
||
"axios": "^1.8.3",
|
||
"dotenv": "^16.4.7",
|
||
"hono": "^4.7.4",
|
||
"lodash-es": "^4.17.21",
|
||
"openai": "^4.87.3",
|
||
"zod": "^3.24.2"
|
||
},
|
||
"devDependencies": {
|
||
"@types/lodash-es": "^4.17.12",
|
||
"@types/node": "^22.13.10",
|
||
"tslint": "^6.1.3",
|
||
"typescript": "^5.8.2"
|
||
},
|
||
"files": [
|
||
"./dist/*"
|
||
],
|
||
"main": "./dist/index.js",
|
||
"typings": "./dist/index.d.ts",
|
||
"scripts": {
|
||
"dev": "bun run --watch src/index.ts",
|
||
"build": "rm -rf dist && tsc",
|
||
"start": "bun run src/index.ts",
|
||
"start:prod": "bun run dist/index.js",
|
||
"lint": "tslint -c tslint.json src/**/*.ts"
|
||
},
|
||
"keywords": [
|
||
"code-review",
|
||
"gitea",
|
||
"ai",
|
||
"bun",
|
||
"typescript"
|
||
],
|
||
"author": "",
|
||
"license": "MIT",
|
||
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
|
||
}
|