-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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": "react-async-csv-downloader",
"version": "1.0.6",
"description": "A small hook to enable asynchronous downloading of csv files",
"files": [
"dist"
],
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "vite build",
"test": "vitest run --coverage",
"coverage": "vitest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/besotti/react-async-csv-downloader"
},
"keywords": [
"CSV",
"React",
"Export",
"Files",
"Asynchronous",
"Download"
],
"author": "Benedikt Sottong <benediktsommer@aol.de>",
"license": "MIT",
"engines": {
"npm": ">=10.0.0"
},
"peerDependencies": {
"react": ">=17.0.0"
},
"devDependencies": {
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "22.7.4",
"@types/react": "18.3.11",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/coverage-v8": "~2.1.2",
"@vitest/ui": "~2.1.2",
"eslint": "^8",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.1",
"rollup-plugin-ignore": "^1.0.10",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.3"
}
}