-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
/
Copy pathpackage.json
72 lines (72 loc) · 2.36 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
{
"name": "@mui/zero-tag-processor",
"version": "0.0.1-alpha.0",
"private": true,
"author": "MUI Team",
"description": "Linaria tag processors for custom styled implementation.",
"main": "./src/index.ts",
"keywords": [
"zero runtime",
"css-in-js",
"mui"
],
"repository": {
"type": "git",
"url": "https://github.com/mui/material-ui.git",
"directory": "packages/zero-tag-processor"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mui/material-ui/issues"
},
"homepage": "@TODO",
"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:types && 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",
"build:types": "node ../../scripts/buildTypes.mjs",
"prebuild": "rimraf build tsconfig.build.tsbuildinfo",
"release": "yarn build && npm publish build",
"test": "cd ../../ && cross-env NODE_ENV=test mocha 'packages/zero-babel-plugin/**/*.test.{js,ts,tsx}'",
"typescript": "tslint -p tsconfig.json \"{src,test}/**/*.{spec,d}.{ts,tsx}\" && tsc -p tsconfig.json",
"typescript:module-augmentation": "node scripts/testModuleAugmentation.js"
},
"dependencies": {
"@babel/core": "^7.23.2",
"@babel/helper-module-imports": "^7.22.15",
"@babel/helper-plugin-utils": "^7.22.5",
"@babel/parser": "^7.23.0",
"@babel/types": "^7.23.0",
"@emotion/css": "^11.11.2",
"@linaria/tags": "^4.5.4",
"@linaria/utils": "^4.5.3",
"@mui/system": "^5.14.18",
"lodash.get": "^4.4.2",
"stylis": "^4.2.0"
},
"devDependencies": {
"@mui/material": "^5.14.18",
"@types/babel__core": "^7.20.3",
"@types/babel__helper-module-imports": "^7.18.2",
"@types/babel__helper-plugin-utils": "^7.10.2",
"@types/chai": "^4.3.10",
"@types/lodash.get": "^4.4.9",
"@types/mocha": "^10.0.4",
"@types/node": "^18.18.9",
"@types/stylis": "^4.2.0"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=12.0.0"
}
}