-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
51 lines (51 loc) · 1.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@asasugar-use/custom-json2excel",
"version": "3.1.9",
"description": "✌传入json,可自定义表格标题名称和列数、头部名称、过滤列和绑定生成开始与成功的回调函数",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"browser": "lib/index.umd.js",
"types": "lib/types/index.d.ts",
"scripts": {
"dev": "rslib build --watch",
"build": "rslib build",
"prepublish": "pnpm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asasugar/custom-json2excel.git"
},
"author": "@asasugar-use",
"license": "ISC",
"bugs": {
"url": "https://github.com/asasugar/custom-json2excel/issues"
},
"homepage": "https://github.com/asasugar/custom-json2excel#readme",
"keywords": [
"csv",
"xls",
"xls",
"xlsx",
"json",
"excel",
"json2excel",
"JsonToExcel",
"excelToJson"
],
"files": [
"lib",
"src",
"package.json",
"README.md"
],
"devDependencies": {
"@rslib/core": "^0.3.1",
"@types/node": "^22.10.5",
"@types/papaparse": "^5.3.15",
"typescript": "^5.7.3"
},
"dependencies": {
"xlsx": "^0.18.5",
"papaparse": "^5.5.0"
}
}