-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.48 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
52
53
54
55
56
{
"name": "@zwight/luckyexcel",
"version": "1.0.7",
"description": "An excel import and export library adapted to Luckysheet",
"main": "dist/luckyexcel.cjs.js",
"module": "dist/luckyexcel.esm.js",
"scripts": {
"build": "gulp build",
"dev": "gulp dev"
},
"keywords": [
"Luckysheet",
"excel"
],
"author": "[email protected]",
"homepage": "https://github.com/zwight/Luckyexcel",
"repository": {
"type": "git",
"url": "https://github.com/zwight/Luckyexcel.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@rollup/plugin-typescript": "^6.1.0",
"@types/node": "^22.10.2",
"@types/papaparse": "^5.3.15",
"babelify": "^10.0.0",
"browser-sync": "^3.0.3",
"browserify": "^17.0.1",
"delete": "^1.1.0",
"fancy-log": "^1.3.3",
"gulp": "^5.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"rollup": "^2.33.1",
"rollup-plugin-typescript2": "^0.29.0",
"tsify": "^5.0.4",
"tslib": "^2.0.3",
"typescript": "~5.3.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.1"
},
"dependencies": {
"@progress/jszip-esm": "^1.0.3",
"@univerjs/core": "^0.4.2",
"@zwight/exceljs": "4.4.2-beta1",
"dayjs": "^1.10.6",
"nanoid": "^3.3.7",
"papaparse": "^5.5.2"
}
}