-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.19 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
{
"name": "react-export-table",
"version": "3.0.1",
"description": "A all in one solution for exporting array data as excel, pdf and copy to clipboard & print data!",
"homepage": "https://github.com/siamahnaf/react-export-table",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs"
},
"author": {
"name": "Siam Ahnaf",
"email": "mail@siamahnaf.com",
"url": "https://www.siamahnaf.com"
},
"license": "MIT",
"keywords": [],
"repository": {
"type": "git",
"directory": "https://github.com/siamahnaf/react-export-table",
"url": "https://github.com/siamahnaf/react-export-table"
},
"devDependencies": {
"@types/node": "^18.16.3",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.5.28",
"xlsx": "^0.18.5"
}
}