Files
Web_BLS_Heartbeat_Server/package.json
XuJiacheng adc3bfd87d feat: 初始化BLS心跳接收端项目
- 添加基础项目结构,包括.gitignore、vite配置和package.json
- 实现Kafka消费者模块框架
- 添加心跳处理器模块框架
- 实现数据库管理模块框架
- 添加OpenSpec规范文档
- 更新README文档说明项目功能和技术栈
2026-01-08 09:16:53 +08:00

32 lines
659 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": "web-bls-heartbeat-server",
"version": "1.0.0",
"description": "BLS心跳接收端用于处理Kafka队列数据并写入PostgreSQL数据库",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .js",
"test": "mocha"
},
"dependencies": {
"kafka-node": "^5.0.0",
"pg": "^8.11.3"
},
"devDependencies": {
"vite": "^5.0.0",
"eslint": "^8.56.0",
"mocha": "^10.2.0"
},
"keywords": [
"BLS",
"heartbeat",
"kafka",
"postgresql",
"nodejs"
],
"author": "",
"license": "MIT"
}