Files
wdi-dashboard/node_modules/@chakra-ui/provider/package.json

76 lines
1.8 KiB
JSON
Raw Normal View History

2024-08-16 15:06:52 +05:30
{
"name": "@chakra-ui/provider",
"version": "2.4.2",
"description": "Theme and components agnostic ChakraProvider",
"main": "dist/index.js",
"files": [
"dist"
],
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"@chakra-ui/css-reset": "2.3.0",
"@chakra-ui/portal": "2.1.0",
"@chakra-ui/react-env": "3.1.0",
"@chakra-ui/system": "2.6.2",
"@chakra-ui/utils": "2.0.15"
},
"peerDependencies": {
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"react": ">=18",
"react-dom": ">=18"
},
"author": "Segun Adebayo <sage@adebayosegun.com>",
"license": "MIT",
"homepage": "https://chakra-ui.com/",
"repository": {
"type": "git",
"url": "https://github.com/chakra-ui/chakra-ui",
"directory": "packages/components/provider"
},
"keywords": [
"react",
"ui",
"design-system",
"react-components",
"uikit",
"accessible",
"components",
"emotion",
"library",
"design-system"
],
"storybook": {
"title": "Chakra UI",
"url": "https://chakra-ui.netlify.app"
},
"devDependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"clean-package": "2.2.0"
},
"clean-package": "../../../clean-package.config.json",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup src --dts",
"dev": "pnpm build:fast -- --watch",
"clean": "rimraf dist .turbo",
"typecheck": "tsc --noEmit",
"build:fast": "tsup src",
"typedocs": "tsx ../../../scripts/generate-type-docs.ts"
}
}