-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
/
Copy pathpackage.json
65 lines (65 loc) · 1.99 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
{
"name": "@mui/styled-engine-sc",
"version": "6.0.0-alpha.6",
"private": false,
"author": "MUI Team",
"description": "styled() API wrapper package for styled-components.",
"main": "./src/index.js",
"keywords": [
"react",
"react-component",
"mui",
"styled-components"
],
"repository": {
"type": "git",
"url": "https://github.com/mui/material-ui.git",
"directory": "packages/mui-styled-engine-sc"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mui/material-ui/issues"
},
"homepage": "https://mui.com/material-ui/guides/styled-components/",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/mui-org"
},
"scripts": {
"build": "yarn build:legacy && yarn build:modern && yarn build:node && yarn build:stable && yarn build:copy-files",
"build:legacy": "node ../../scripts/build.mjs legacy",
"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",
"prebuild": "rimraf build",
"release": "yarn build && npm publish build",
"test": "cd ../../ && cross-env NODE_ENV=test mocha 'packages/mui-styled-engine-sc/**/*.test.{js,ts,tsx}'",
"typescript": "tslint -p tsconfig.json \"{src,test}/**/*.{spec,d}.{ts,tsx}\" && tsc -p tsconfig.json"
},
"dependencies": {
"@babel/runtime": "^7.23.2",
"csstype": "^3.1.2",
"hoist-non-react-statics": "^3.3.2",
"prop-types": "^15.8.1"
},
"devDependencies": {
"@mui-internal/test-utils": "^1.0.0",
"@types/chai": "^4.3.10",
"@types/hoist-non-react-statics": "^3.3.5",
"@types/react": "^18.2.37",
"chai": "^4.3.10",
"react": "^18.2.0",
"styled-components": "^6.0.0"
},
"peerDependencies": {
"styled-components": "^6.0.0"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=12.0.0"
}
}