-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.3 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
{
"name": "@astrouxds/mui-theme",
"version": "0.0.10",
"description": "A MUI theme provider for Astro UXDS space design system.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist/**/*"
],
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && rollup -c"
},
"keywords": [
"astrouxds",
"mui",
"material-ui"
],
"author": "Rocket Communications, INC.",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/RocketCommunicationsInc/astro-mui-theme"
},
"bugs": {
"url": "https://github.com/RocketCommunicationsInc/astro-mui-theme/issues"
},
"peerDependencies": {
"@mui/material": ">= 5.x.x",
"react": ">= 16.8.x"
},
"devDependencies": {
"@mui/material": "latest",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/node": "^16.10.1",
"@types/react": "latest",
"react": "latest",
"rimraf": "^3.0.2",
"rollup": "^2.61.1",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"tslib": "^2.4.0",
"typescript": "^4.4.3"
},
"dependencies": {
"@astrouxds/tokens": "^1.0.2"
}
}