-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
{
"name": "xlsx-lite",
"version": "0.0.15",
"description": "Light XLSX Spreadsheet Creator",
"type": "module",
"keywords": [
"xlsx",
"spreadsheet",
"excel"
],
"main": "dist/xlsx.cjs.js",
"module": "dist/xlsx.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "git://github.com/alimo/xlsx-lite.git",
"author": "Ali Mohammadi <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "rollup --config rollup.config.js && tsc --emitDeclarationOnly",
"lint": "eslint --ext .js,.ts src"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/file-saver": "^2.0.7",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.1",
"rollup": "^4.9.5",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"dependencies": {
"file-saver": "^2.0.5",
"set-immediate-shim": "^2.0.0"
}
}