-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@parallelbytes/ingestx",
"version": "1.0.3",
"description": "High performance CSV and Excel ingestion library for React and Node.js",
"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"
},
"./core": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.js",
"require": "./dist/core/index.cjs"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.js",
"require": "./dist/react/index.cjs"
},
"./node": {
"types": "./dist/node/index.d.ts",
"import": "./dist/node/index.js",
"require": "./dist/node/index.cjs"
},
"./types": {
"types": "./dist/types/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ParallelBytes/IngestX.git"
},
"homepage": "https://github.com/ParallelBytes/IngestX#readme",
"author": "Nikhil Dabhade",
"license": "MIT",
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"test": "vitest",
"demo": "cd demo && yarn dev"
},
"peerDependencies": {
"react": ">=18"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/papaparse": "^5.5.2",
"@types/react": "^18.2.0",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"jsdom": "^29.1.1",
"prettier": "^3.2.5",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"typescript": "^5.3.3",
"vite": "^5.1.0",
"vite-plugin-dts": "^3.7.2",
"vitest": "^1.3.1"
},
"dependencies": {
"papaparse": "^5.5.3",
"xlsx": "^0.18.5"
},
"files": [
"dist",
"README.md",
"package.json"
],
"keywords": [
"ingestx",
"react",
"reactjs",
"node",
"nodejs",
"typescript",
"csv",
"excel",
"xlsx",
"spreadsheet",
"parser",
"data-import",
"bulk-import",
"data-validation",
"file-upload",
"streaming",
"chunked-processing",
"large-files",
"etl",
"ingestion"
]
}