-
Notifications
You must be signed in to change notification settings - Fork 150
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.74 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.74 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
{
"name": "react-pivot",
"description": "React-Pivot is a data-grid component with pivot-table-like functionality for data display, filtering, and exploration.",
"version": "6.2.0",
"type": "module",
"author": "David Guttman <david@guttman.io> (http://davidguttman.com/)",
"main": "dist/react-pivot.umd.cjs",
"module": "dist/react-pivot.es.js",
"browser": "dist/react-pivot.umd.cjs",
"exports": {
".": {
"import": "./dist/react-pivot.es.js",
"require": "./dist/react-pivot.umd.cjs"
}
},
"files": [
"dist",
"index.jsx",
"lib",
"style.css"
],
"bugs": {
"url": "https://github.com/davidguttman/react-pivot/issues"
},
"dependencies": {
"create-react-class": "^15.6.0",
"dataframe": "^2.0.1",
"lodash": "^4.17.21",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"wildemitter": "^1.0.1",
"xtend": "^4.0.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.7.0",
"faker": "^5.5.3",
"vite": "^7.0.6"
},
"directories": {
"example": "example"
},
"homepage": "https://github.com/davidguttman/react-pivot",
"keywords": [
"data",
"excel",
"grid",
"pagination",
"pivot",
"react",
"react-component",
"sort"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/davidguttman/react-pivot.git"
},
"scripts": {
"dev": "vite --host",
"example": "vite --host --port ${PORT:-9966}",
"example-basic": "vite example/basic.html --port ${PORT:-9966}",
"example-persist": "vite example/persist.html --port ${PORT:-9966}",
"build": "vite build",
"build:demo": "vite build --config vite.config.demo.mjs",
"preview": "vite preview",
"prepublishOnly": "npm run build"
}
}