feat: 初始化 NFC 读卡器项目

- 添加 Electron 主进程和渲染进程
- 实现读卡器连接、断开和读取卡片 ID 功能
- 添加自定义窗口标题栏和窗口控制
- 实现简洁美观的用户界面
- 添加项目文档 README.md
This commit is contained in:
2026-01-12 01:07:01 +08:00
commit 8e329418f0
8 changed files with 901 additions and 0 deletions

15
package.json Normal file
View File

@@ -0,0 +1,15 @@
{
"name": "nfc-reader",
"version": "1.0.0",
"description": "NFC Card Reader Application",
"main": "main.js",
"scripts": {
"start": "electron ."
},
"keywords": ["nfc", "reader", "electron"],
"author": "",
"license": "MIT",
"devDependencies": {
"electron": "^28.0.0"
}
}