forked from UgnisSoftware/react-spreadsheet-import
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.28 KB
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
{
"name": "react-spreadsheet-import",
"version": "3.0.0",
"description": "Spreadsheet importer modal for React 19 with Bootstrap 5 and Yup validation.",
"license": "UNLICENSED",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles.css": "./src/styles.css"
},
"files": [
"dist",
"src"
],
"sideEffects": true,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepare": "npm run build"
},
"peerDependencies": {
"bootstrap": ">=5.3.0",
"react": "^18.0.0 || ^19.0.0",
"react-bootstrap": ">=2.10.0",
"react-dom": "^18.0.0 || ^19.0.0",
"yup": ">=1.0.0"
},
"dependencies": {
"exceljs": "4.4.0",
"fuse.js": "7.3.0",
"react-data-grid": "7.0.0-beta.59",
"react-dropzone": "14.4.1"
},
"devDependencies": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"bootstrap": "5.3.8",
"react": "19.2.5",
"react-bootstrap": "2.10.10",
"react-dom": "19.2.5",
"tsup": "8.5.1",
"typescript": "5.9.3",
"yup": "1.7.1"
}
}