-
-
Notifications
You must be signed in to change notification settings - Fork 32.7k
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@mui/material",
"version": "9.0.0-alpha.3",
"author": "MUI Team",
"description": "Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.",
"keywords": [
"react",
"react-component",
"mui",
"material-ui",
"material design"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mui/material-ui.git",
"directory": "packages/mui-material"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mui/material-ui/issues"
},
"homepage": "https://mui.com/material-ui/",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/mui-org"
},
"scripts": {
"build": "code-infra build --flat",
"release": "pnpm build && pnpm publish",
"test": "pnpm --workspace-root test:unit --project \"*:@mui/material\"",
"typescript": "tsc -p tsconfig.json",
"typescript:module-augmentation": "node scripts/testModuleAugmentation.js",
"attw": "attw --pack ./build --entrypoints \".\" \"Button\" \"styles\" \"utils\""
},
"dependencies": {
"@babel/runtime": "^7.28.6",
"@mui/core-downloads-tracker": "workspace:^",
"@mui/system": "workspace:*",
"@mui/types": "workspace:^",
"@mui/utils": "workspace:*",
"@popperjs/core": "^2.11.8",
"@types/react-transition-group": "^4.4.12",
"clsx": "^2.1.1",
"csstype": "^3.2.3",
"prop-types": "^15.8.1",
"react-is": "^19.2.4",
"react-transition-group": "^4.4.5"
},
"devDependencies": {
"@types/chai": "5.2.3",
"@types/prop-types": "15.7.15",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/sinon": "17.0.4",
"chai": "6.2.2",
"css-mediaquery": "0.1.2",
"es-toolkit": "1.45.1",
"fast-glob": "3.3.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-router": "7.13.1",
"sinon": "21.0.2"
},
"peerDependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/material-pigment-css": "workspace:*",
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@emotion/react": {
"optional": true
},
"@emotion/styled": {
"optional": true
},
"@mui/material-pigment-css": {
"optional": true
}
},
"sideEffects": false,
"publishConfig": {
"access": "public",
"directory": "build"
},
"engines": {
"node": ">=14.0.0"
},
"exports": {
".": "./src/index.js",
"./ButtonBase/TouchRipple": "./src/ButtonBase/TouchRipple.js",
"./zero-styled": "./src/zero-styled/index.tsx",
"./className": "./src/className/index.ts",
"./ClickAwayListener": "./src/ClickAwayListener/index.ts",
"./darkScrollbar": "./src/darkScrollbar/index.ts",
"./DefaultPropsProvider": "./src/DefaultPropsProvider/index.ts",
"./generateUtilityClass": "./src/generateUtilityClass/index.ts",
"./generateUtilityClasses": "./src/generateUtilityClasses/index.ts",
"./Grid": "./src/Grid/index.ts",
"./InitColorSchemeScript": "./src/InitColorSchemeScript/index.ts",
"./internal": "./src/internal/index.ts",
"./locale": "./src/locale/index.ts",
"./OverridableComponent": "./src/OverridableComponent/index.ts",
"./PigmentContainer": "./src/PigmentContainer/index.ts",
"./PigmentGrid": "./src/PigmentGrid/index.ts",
"./PigmentStack": "./src/PigmentStack/index.ts",
"./themeCssVarsAugmentation": "./src/themeCssVarsAugmentation/index.ts",
"./transitions": "./src/transitions/index.ts",
"./useLazyRipple": "./src/useLazyRipple/index.ts",
"./version": "./src/version/index.ts",
"./*": "./src/*/index.js"
},
"pigment-css": {
"vite": {
"include": [
"prop-types",
"react-is",
"hoist-non-react-statics",
"react",
"react-dom",
"@emotion/react"
]
}
}
}