-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.64 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.64 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
{
"name": "react-spread-sheet-excel",
"version": "3.3.0",
"description": "Lightning-fast React spreadsheet component with Excel-like features. Render 100,000+ cells with formulas, formatting, copy/paste, undo/redo. Perfect for data grids and Excel-like apps.",
"keywords": [
"react-spread-sheet-excel",
"react-excel",
"react-excel-component",
"excel-like-spreadsheet",
"spreadsheet-excel",
"react-datagrid",
"data-grid",
"editable-table",
"virtual-scroll",
"formula-calculation",
"cell-formatting",
"csv-export",
"xlsx-import-export",
"typescript-spreadsheet",
"excel-component",
"data-entry-grid",
"copy-paste-cells",
"undo-redo",
"merge-cells",
"lightweight-excel",
"performance-spreadsheet",
"fast-rendering",
"100000-cells",
"react-grid-editor",
"json-spreadsheet"
],
"author": "Sojin Antony",
"dependencies": {
"react-intersection-observer": "^9.16.0"
},
"type": "module",
"main": "build/index.js",
"module": "build/index.js",
"files": [
"build",
"README.md",
"PERFORMANCE.md"
],
"repository": {
"type": "git",
"url": "https://github.com/sojinantony01/react-spread-sheet.git"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"devDependencies": {
"@e965/xlsx": "^0.20.3",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.18",
"jsdom": "^27.4.0",
"postcss": "^8.4.16",
"prettier": "^3.4.2",
"rollup": "^4.54.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^4.8.3",
"vite": "^7.3.0",
"vitest": "^4.0.16"
},
"scripts": {
"dev": "vite",
"build": "rm -rf build && rollup -c",
"demo:build": "vite build",
"demo:preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest run --coverage",
"deploy": "npm run demo:build && gh-pages -d dist",
"prepublishOnly": "npm run build",
"format": "npx prettier --write './**/*.{ts,tsx,css,json,scss}' --config ./.prettierrc.json",
"format-check": "npx prettier --check './**/*.{ts,tsx,css,json,scss}' --config ./.prettierrc.json"
},
"homepage": "https://sojinantony01.github.io/react-spread-sheet",
"license": "ISC"
}