mirror of
https://github.com/jeffusion/gitea-ai-assistant.git
synced 2026-03-27 10:05:50 +00:00
43 lines
906 B
JSON
43 lines
906 B
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",
|
||
"openai": "^4.87.3",
|
||
"zod": "^3.24.2"
|
||
},
|
||
"devDependencies": {
|
||
"@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"
|
||
}
|