-
Notifications
You must be signed in to change notification settings - Fork 161
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "luckyexcel",
"version": "1.0.0",
"description": "An excel import and export library adapted to Luckysheet",
"main": "dist/luckyexcel.cjs.js",
"module": "dist/luckyexcel.esm.js",
"browser": "dist/luckyexcel.umd.js",
"scripts": {
"build": "gulp build",
"dev": "gulp dev"
},
"keywords": [
"Luckysheet",
"excel"
],
"author": "[email protected]",
"homepage": "https://github.com/mengshukeji/Luckyexcel",
"repository": {
"type": "git",
"url": "https://github.com/mengshukeji/Luckyexcel.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-typescript": "^6.1.0",
"@types/node": "^14.14.2",
"babelify": "^10.0.0",
"browser-sync": "^2.26.10",
"browserify": "^13.3.0",
"delete": "^1.1.0",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"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": "^4.0.2",
"tslib": "^2.0.3",
"typescript": "^3.9.7",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.1"
},
"dependencies": {
"dayjs": "^1.10.6",
"jszip": "^3.5.0"
}
}