-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
package.json
84 lines (84 loc) · 2.23 KB
/
package.json
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
{
"name": "@mui/x-data-grid",
"version": "8.0.0-alpha.6",
"description": "The Community plan edition of the Data Grid components (MUI X).",
"author": "MUI Team",
"main": "src/index.ts",
"license": "MIT",
"bugs": {
"url": "https://github.com/mui/mui-x/issues"
},
"homepage": "https://mui.com/x/react-data-grid/",
"sideEffects": false,
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/mui-org"
},
"publishConfig": {
"access": "public",
"directory": "build"
},
"keywords": [
"react",
"react-component",
"material-ui",
"mui",
"mui-x",
"react-table",
"table",
"datatable",
"data-table",
"datagrid",
"data-grid"
],
"scripts": {
"typescript": "tsc -p tsconfig.json",
"build": "pnpm build:modern && pnpm build:node && pnpm build:stable && pnpm build:types && pnpm build:copy-files ",
"build:modern": "node ../../scripts/build.mjs modern",
"build:node": "node ../../scripts/build.mjs node",
"build:stable": "node ../../scripts/build.mjs stable",
"build:copy-files": "node ../../scripts/copyFiles.mjs",
"build:types": "node ../../scripts/buildTypes.mjs",
"prebuild": "rimraf build tsconfig.build.tsbuildinfo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mui/mui-x.git",
"directory": "packages/x-data-grid"
},
"dependencies": {
"@babel/runtime": "^7.26.0",
"@mui/utils": "^5.16.6 || ^6.0.0",
"@mui/x-internals": "workspace:*",
"clsx": "^2.1.1",
"prop-types": "^15.8.1",
"reselect": "^5.1.1"
},
"peerDependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/material": "^5.15.14 || ^6.0.0",
"@mui/system": "^5.15.14 || ^6.0.0",
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"@emotion/react": {
"optional": true
},
"@emotion/styled": {
"optional": true
}
},
"devDependencies": {
"@mui/internal-test-utils": "^1.0.23",
"@mui/material": "^5.16.11",
"@mui/system": "^5.16.8",
"@mui/types": "^7.2.15",
"@types/prop-types": "^15.7.14",
"rimraf": "^6.0.1"
},
"engines": {
"node": ">=14.0.0"
}
}