forked from zwight/Luckyexcel
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.89 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 2.89 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@mertdeveci55/univer-import-export",
"version": "0.2.1",
"description": "Excel/CSV import and export library for Univer spreadsheets with full format preservation",
"private": false,
"publishConfig": {
"access": "public"
},
"main": "dist/luckyexcel.cjs.js",
"module": "dist/luckyexcel.esm.js",
"browser": "dist/luckyexcel.umd.js",
"typings": "dist/main.esm.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/main.esm.d.ts",
"default": "./dist/luckyexcel.esm.js"
},
"require": {
"types": "./dist/main.umd.d.ts",
"default": "./dist/luckyexcel.cjs.js"
}
}
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"@univerjs/core": "global:UniverCore"
},
"scripts": {
"build": "gulp build",
"dev": "gulp dev",
"release": "release-it",
"release:beta": "release-it --preRelease=beta"
},
"keywords": [
"univer",
"spreadsheet",
"excel",
"csv",
"import",
"export",
"xlsx",
"xls"
],
"author": "mertdeveci",
"homepage": "https://github.com/mertdeveci/univerjs-import-export",
"repository": {
"type": "git",
"url": "git+https://github.com/mertdeveci/univerjs-import-export.git"
},
"bugs": {
"url": "https://github.com/mertdeveci/univerjs-import-export/issues"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@release-it/conventional-changelog": "7.0.2",
"@rollup/plugin-typescript": "^6.1.0",
"@types/node": "^22.17.0",
"@types/papaparse": "^5.3.16",
"@types/xml2js": "^0.4.14",
"babelify": "^10.0.0",
"browser-sync": "^3.0.4",
"browserify": "^17.0.1",
"browserify-shim": "^3.8.16",
"cz-conventional-changelog": "^3.3.0",
"delete": "^1.1.0",
"fancy-log": "^1.3.3",
"gulp": "^5.0.1",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"husk": "^0.5.3",
"release-it": "16.2.1",
"rollup": "^2.79.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"tsify": "^5.0.4",
"tslib": "^2.8.1",
"typescript": "~5.3.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.1",
"xlsx": "^0.18.5"
},
"dependencies": {
"@progress/jszip-esm": "^1.0.4",
"@zwight/exceljs": "4.4.2",
"dayjs": "^1.11.13",
"nanoid": "^3.3.11",
"papaparse": "^5.5.3",
"xml2js": "^0.6.2"
},
"peerDependencies": {
"@univerjs/core": ">=0.6.0"
},
"peerDependenciesMeta": {
"@univerjs/core": {
"optional": false
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}