-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.26 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
{
"name": "@mui/x-codemod",
"version": "9.6.0",
"author": "MUI Team",
"description": "Codemod scripts for MUI X.",
"license": "MIT",
"bin": "./src/codemod.ts",
"keywords": [
"react",
"react-component",
"mui",
"mui-x",
"codemod",
"jscodeshift"
],
"scripts": {
"typescript": "tsc -p tsconfig.json",
"prebuild": "rimraf build",
"build": "code-infra build --flat --bundle cjs --buildTypes false --ignore 'src/types.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mui/mui-x.git",
"directory": "packages/x-codemod"
},
"homepage": "https://github.com/mui/mui-x/tree/master/packages/x-codemod",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/mui-org"
},
"dependencies": {
"@babel/core": "catalog:",
"@babel/runtime": "catalog:",
"@babel/traverse": "catalog:",
"@mui/x-internals": "workspace:^",
"jscodeshift": "catalog:",
"yargs": "catalog:"
},
"devDependencies": {
"@types/jscodeshift": "17.3.0",
"dayjs": "catalog:",
"moment-timezone": "catalog:",
"rimraf": "catalog:"
},
"sideEffects": false,
"publishConfig": {
"access": "public",
"directory": "build"
},
"engines": {
"node": ">=20.19"
}
}