feat(tools): 添加 JSON 转 Excel 功能

- 新增 json2excel.js 工具脚本,用于将 JSON 数据转换为 Excel 文件
- 在 package.json 中添加 xlsx 依赖
- 使用 SpecialRingConfig.json 作为示例进行转换并生成 SpecialRingConfig.xlsx 文件
This commit is contained in:
aixianling
2025-01-22 17:43:03 +08:00
parent cbfbda0fed
commit 2f55a178b5
3 changed files with 56 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
{
"dependencies": {
"jszip": "^3.10.1"
"jszip": "^3.10.1",
"xlsx": "^0.18.5"
},
"scripts": {
"build": "node build.js",