egg_server/package.json
zhaoyingbo 9dcd406280
All checks were successful
Egg Server CI/CD / build-image (push) Successful in 50s
Egg Server CI/CD / refresh-image (push) Successful in 15s
Egg Server CI/CD / fast-deploy (push) Successful in 3s
feat: 优化飞书消息处理
2024-10-12 07:14:53 +00:00

55 lines
1.4 KiB
JSON

{
"name": "egg_server",
"module": "index.ts",
"type": "module",
"scripts": {
"start": "dotenvx run -f .env.prod -- bun run index.ts",
"dev": "dotenvx run -f .env.dev -- bun run index.ts --watch",
"lint": "eslint --fix .",
"prepare": "husky",
"prettier": "prettier --write ."
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.12.0",
"@types/node-schedule": "^2.1.7",
"@types/uuid": "^10.0.0",
"bun-types": "^1.1.30",
"eslint": "^9.12.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript-eslint": "^8.8.1"
},
"peerDependencies": {
"typescript": "^5.5.4"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.19.0",
"@egg/hooks": "^1.2.0",
"@egg/lark-msg-tool": "^1.7.1",
"@egg/logger": "^1.4.3",
"@egg/net-tool": "^1.9.1",
"@egg/path-tool": "^1.4.1",
"@langchain/core": "^0.3.10",
"@langchain/openai": "^0.3.7",
"joi": "^17.13.3",
"langfuse-langchain": "^3.27.0",
"node-schedule": "^2.1.1",
"p-limit": "^6.1.0",
"pocketbase": "^0.21.5",
"uuid": "^10.0.0",
"winston": "^3.15.0",
"winston-daily-rotate-file": "^5.0.0"
}
}