forked from securedeveloper/react-data-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.33 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "react-xlsx-wrapper",
"version": "2.0.2",
"main": "dist/index.js",
"types": "types/index.d.ts",
"description": "An important tool to make it easy to work with excel file formats. It supports lots of file formats as well. As this an wrapper around JS API for XLSX package. It does supports basic Cell styling as well as width based on characters. etc. Can be used in any Typescript project now, as we have migrated whole library to supports type safety. Best works with ReactJS, NextJS etc.",
"repository": {
"type": "git",
"url": "https://github.com/AS-Devs/react-xlsx-wrapper.git"
},
"keywords": [
"react-xlsx-wrapper",
"excel-export",
"xlsx",
"xls",
"csv",
"stying",
"react-dataset",
"react-export",
"react-excel-export"
],
"author": "AS Developers <hi@asdevs.dev>",
"contributors": [
{
"name": "Susanta Chakraborty",
"email": "susant.vanu7278@gmail.com",
"url": "https://susanta.asdevs.dev"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/AS-Devs/react-xlsx-wrapper/issues"
},
"homepage": "https://github.com/AS-Devs/react-xlsx-wrapper#readme",
"dependencies": {
"xlsx-js-style": "^1.2.0"
},
"peerDependencies": {
"@babel/runtime": "^7.22.5"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.22.1",
"@babel/plugin-transform-runtime": "^7.22.2",
"@babel/preset-env": "^7.22.2",
"@babel/preset-react": "^7.22.3",
"@babel/preset-typescript": "^7.21.5",
"@types/react": "^18.2.7",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.41.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-watch": "8.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"semantic-release": "^21.0.3",
"typescript": "^5.0.4"
},
"scripts": {
"clean": "rm -rf ./dist && mkdir ./dist",
"commit": "git-cz",
"build": "tsc && babel src-js -d dist",
"build:watch": "babel -w src-js -d dist",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:watch": "esw -w lib/**",
"semantic-release": "semantic-release --branches main",
"acp": "git add . && npm run commit && git push"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}