Files
archived-gitea-ai-assistant/package.json
2025-04-23 13:37:07 +08:00

43 lines
906 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"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"
}