forked from mui/material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.89 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.89 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
{
"name": "@mui/internal-scripts",
"version": "1.0.10",
"author": "MUI Team",
"description": "Utilities supporting MUI libraries build and docs generation. This is an internal package not meant for general use.",
"main": "build/index.js",
"exports": {
"./typescript-to-proptypes": {
"types": "./build/typescript-to-proptypes/index.d.ts",
"default": "./build/typescript-to-proptypes/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/mui/material-ui.git",
"directory": "packages-internal/scripts"
},
"license": "MIT",
"scripts": {
"prebuild": "rimraf ./build",
"build": "tsc --build tsconfig.json",
"release:publish": "pnpm build && pnpm publish --tag latest",
"release:publish:dry-run": "pnpm build && pnpm publish --tag latest --registry=\"http://localhost:4873/\"",
"test": "cd ../../ && cross-env NODE_ENV=test mocha --config packages-internal/scripts/typescript-to-proptypes/test/.mocharc.js 'packages-internal/scripts/typescript-to-proptypes/**/*.test.ts'",
"typescript": "tsc --build tsconfig.typecheck.json"
},
"dependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/plugin-syntax-jsx": "^7.24.7",
"@babel/plugin-syntax-typescript": "^7.24.7",
"@babel/types": "^7.24.7",
"@mui/internal-docs-utils": "workspace:^",
"doctrine": "^3.0.0",
"lodash": "^4.17.21",
"typescript": "^5.4.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/register": "^7.24.6",
"@types/babel__core": "^7.20.5",
"@types/chai": "^4.3.16",
"@types/doctrine": "^0.0.9",
"@types/lodash": "^4.17.5",
"@types/node": "^18.19.34",
"@types/react": "^18.2.55",
"@types/uuid": "^9.0.8",
"chai": "^4.4.1",
"fast-glob": "^3.3.2",
"prettier": "^3.3.1",
"rimraf": "^5.0.7"
},
"publishConfig": {
"access": "public"
}
}