openpanel/packages/mui/package.json
Stefan Pejcic 09f9f9502d packages
2024-11-07 19:03:37 +01:00

95 lines
2.8 KiB
JSON

{
"name": "@refinedev/mui",
"version": "5.22.0",
"private": false,
"description": "refine is a React-based framework for building internal tools, rapidly. It ships with Ant Design System, an enterprise-level UI toolkit.",
"license": "MIT",
"author": "refine",
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"scripts": {
"attw": "attw --pack .",
"build": "tsup && node ../shared/generate-declarations.js",
"dev": "tsup --watch",
"prepare": "pnpm build",
"publint": "publint --strict=true --level=suggestion",
"test": "jest --passWithNoTests --runInBand",
"types": "node ../shared/generate-declarations.js"
},
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.3",
"@mui/lab": "^5.0.0-alpha.85",
"@mui/material": "^5.14.2",
"@mui/system": "^5.15.15",
"@mui/x-data-grid": "^6.6.0",
"@refinedev/react-hook-form": "^4.9.1",
"@refinedev/ui-types": "^1.22.9",
"dayjs": "^1.10.7",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"notistack": "^2.0.4",
"react-hook-form": "^7.43.5",
"react-markdown": "^6.0.1",
"remark-gfm": "^1.0.0",
"tslib": "^2.6.2",
"warn-once": "^0.1.0"
},
"devDependencies": {
"@esbuild-plugins/node-resolve": "^0.1.4",
"@refinedev/cli": "^2.16.38",
"@refinedev/core": "^4.56.0",
"@refinedev/ui-tests": "^1.14.9",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^29.2.4",
"@types/lodash": "^4.14.171",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/testing-library__jest-dom": "^5.14.3",
"esbuild-copy-static-files": "^0.1.0",
"esbuild-plugin-inline-image": "^0.0.8",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"postcss": "^8.1.4",
"react-router-dom": "^6.8.1",
"ts-jest": "^29.1.2",
"tsup": "^6.7.0",
"typescript": "^5.4.2"
},
"peerDependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mui/lab": "^5.0.0-alpha.85",
"@mui/material": "^5.14.2",
"@mui/x-data-grid": "^6.6.0",
"@refinedev/core": "^4.46.1",
"@refinedev/react-hook-form": "^4.0.0",
"dayjs": "^1.10.7",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"react-hook-form": "^7.43.5"
},
"publishConfig": {
"access": "public"
}
}