han-excel-builder 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +286 -0
- package/dist/han-excel.cjs.js +2 -0
- package/dist/han-excel.cjs.js.map +1 -0
- package/dist/han-excel.es.js +1031 -0
- package/dist/han-excel.es.js.map +1 -0
- package/dist/index.d.ts +1568 -0
- package/package.json +93 -0
package/package.json
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "han-excel-builder",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Advanced Excel file generator with TypeScript support, comprehensive styling, and optimized performance",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/han-excel.cjs.js",
|
|
7
|
+
"module": "dist/han-excel.es.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/han-excel.es.js",
|
|
12
|
+
"require": "./dist/han-excel.cjs.js",
|
|
13
|
+
"types": "./dist/index.d.ts"
|
|
14
|
+
},
|
|
15
|
+
"./styles": {
|
|
16
|
+
"import": "./dist/styles.js",
|
|
17
|
+
"require": "./dist/styles.js",
|
|
18
|
+
"types": "./dist/styles.d.ts"
|
|
19
|
+
},
|
|
20
|
+
"./utils": {
|
|
21
|
+
"import": "./dist/utils.js",
|
|
22
|
+
"require": "./dist/utils.js",
|
|
23
|
+
"types": "./dist/utils.d.ts"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"dist/**/*",
|
|
28
|
+
"README.md"
|
|
29
|
+
],
|
|
30
|
+
"scripts": {
|
|
31
|
+
"dev": "vite",
|
|
32
|
+
"build": "tsc && vite build",
|
|
33
|
+
"preview": "vite preview",
|
|
34
|
+
"test": "vitest",
|
|
35
|
+
"test:coverage": "vitest --coverage",
|
|
36
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
37
|
+
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
38
|
+
"format": "prettier --write src/**/*.{ts,tsx}",
|
|
39
|
+
"type-check": "tsc --noEmit",
|
|
40
|
+
"docs": "typedoc src/index.ts --out docs",
|
|
41
|
+
"clean": "rimraf dist docs",
|
|
42
|
+
"prepublishOnly": "npm run clean && npm run build && npm run type-check"
|
|
43
|
+
},
|
|
44
|
+
"keywords": [
|
|
45
|
+
"excel",
|
|
46
|
+
"xlsx",
|
|
47
|
+
"typescript",
|
|
48
|
+
"exceljs",
|
|
49
|
+
"report",
|
|
50
|
+
"spreadsheet",
|
|
51
|
+
"workbook",
|
|
52
|
+
"worksheet",
|
|
53
|
+
"excel-generator",
|
|
54
|
+
"excel-builder",
|
|
55
|
+
"excel-export"
|
|
56
|
+
],
|
|
57
|
+
"author": "Han Excel Team",
|
|
58
|
+
"license": "MIT",
|
|
59
|
+
"repository": {
|
|
60
|
+
"type": "git",
|
|
61
|
+
"url": "https://github.com/hannndler/-han-excel.git"
|
|
62
|
+
},
|
|
63
|
+
"bugs": {
|
|
64
|
+
"url": "https://github.com/hannndler/-han-excel/issues"
|
|
65
|
+
},
|
|
66
|
+
"homepage": "https://github.com/hannndler/-han-excel#readme",
|
|
67
|
+
"devDependencies": {
|
|
68
|
+
"@types/file-saver": "^2.0.7",
|
|
69
|
+
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
70
|
+
"@typescript-eslint/parser": "^6.0.0",
|
|
71
|
+
"@vitest/coverage-v8": "^1.0.0",
|
|
72
|
+
"eslint": "^8.0.0",
|
|
73
|
+
"jsdom": "^26.1.0",
|
|
74
|
+
"prettier": "^3.0.0",
|
|
75
|
+
"rimraf": "^5.0.0",
|
|
76
|
+
"terser": "^5.43.1",
|
|
77
|
+
"typedoc": "^0.25.0",
|
|
78
|
+
"typescript": "^5.0.2",
|
|
79
|
+
"vite": "^4.5.2",
|
|
80
|
+
"vite-plugin-dts": "^3.6.3",
|
|
81
|
+
"vitest": "^1.0.0"
|
|
82
|
+
},
|
|
83
|
+
"dependencies": {
|
|
84
|
+
"exceljs": "^4.4.0",
|
|
85
|
+
"file-saver": "^2.0.5"
|
|
86
|
+
},
|
|
87
|
+
"peerDependencies": {
|
|
88
|
+
"exceljs": "^4.4.0"
|
|
89
|
+
},
|
|
90
|
+
"engines": {
|
|
91
|
+
"node": ">=16.0.0"
|
|
92
|
+
}
|
|
93
|
+
}
|