photon-grid-react 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,75 @@
1
+ {
2
+ "name": "photon-grid-react",
3
+ "version": "0.0.3",
4
+ "description": "A high-performance React data grid built on Photon Grid Core with virtualization, sorting, filtering, editing, grouping, and custom React renderers.",
5
+ "type": "module",
6
+ "keywords": [
7
+ "react",
8
+ "react-grid",
9
+ "react-data-grid",
10
+ "react-table",
11
+ "datatable",
12
+ "data-grid",
13
+ "grid",
14
+ "table",
15
+ "virtual-scroll",
16
+ "virtualization",
17
+ "infinite-scroll",
18
+ "tree-grid",
19
+ "grouping",
20
+ "sorting",
21
+ "filtering",
22
+ "pagination",
23
+ "spreadsheet",
24
+ "excel",
25
+ "editable-table",
26
+ "enterprise-grid",
27
+ "ag-grid-alternative",
28
+ "react-components",
29
+ "typescript",
30
+ "photon-grid",
31
+ "photon-grid-react"
32
+ ],
33
+ "homepage": "https://github.com/abdulwahid-csit/photon-grid",
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "git+https://github.com/abdulwahid-csit/photon-grid.git"
37
+ },
38
+ "bugs": {
39
+ "url": "https://github.com/abdulwahid-csit/photon-grid/issues"
40
+ },
41
+ "license": "MIT",
42
+ "author": "Abdul Wahid",
43
+ "main": "./index.cjs",
44
+ "module": "./index.js",
45
+ "types": "./index.d.ts",
46
+ "files": [
47
+ "*"
48
+ ],
49
+ "scripts": {
50
+ "dev": "vite",
51
+ "build": "tsc -b && vite build && npm run copy-files",
52
+ "copy-files": "copy package.json dist && copy README.md dist && copy LICENSE dist",
53
+ "lint": "eslint .",
54
+ "preview": "vite preview"
55
+ },
56
+ "dependencies": {
57
+ "photon-grid-core": "^0.0.3",
58
+ "react": "^19.2.7",
59
+ "react-dom": "^19.2.7"
60
+ },
61
+ "devDependencies": {
62
+ "@eslint/js": "^10.0.1",
63
+ "@types/node": "^24.13.2",
64
+ "@types/react": "^19.2.17",
65
+ "@types/react-dom": "^19.2.3",
66
+ "@vitejs/plugin-react": "^6.0.3",
67
+ "eslint": "^10.6.0",
68
+ "eslint-plugin-react-hooks": "^7.1.1",
69
+ "eslint-plugin-react-refresh": "^0.5.3",
70
+ "globals": "^17.7.0",
71
+ "typescript": "~6.0.2",
72
+ "typescript-eslint": "^8.62.0",
73
+ "vite": "^8.1.1"
74
+ }
75
+ }