bf2343b7e4
Integration Tests - MySQL + Elasticsearch / Detect Changes (push) Has been cancelled
Integration Tests - MySQL + Elasticsearch / integration-tests-mysql-elasticsearch (push) Has been cancelled
Integration Tests - PostgreSQL + Elasticsearch + Redis / Detect Changes (push) Has been cancelled
Integration Tests - PostgreSQL + Elasticsearch + Redis / integration-tests-postgres-elasticsearch-redis (push) Has been cancelled
Integration Tests - PostgreSQL + OpenSearch / Detect Changes (push) Has been cancelled
Integration Tests - PostgreSQL + OpenSearch / integration-tests-postgres-opensearch (push) Has been cancelled
Java Checkstyle / java-checkstyle (push) Has been cancelled
Maven Collate Tests / maven-collate-ci (push) Has been cancelled
OpenMetadata Service Unit Tests / openmetadata-service-unit-tests-status (push) Has been cancelled
Publish Package to Maven Central Repository / publish-maven-packages (push) Has been cancelled
OpenMetadata Service Unit Tests / Detect Changes (push) Has been cancelled
OpenMetadata Service Unit Tests / openmetadata-service-unit-tests (push) Has been cancelled
OpenMetadata Service Unit Tests / k8s_operator-unit-tests (push) Has been cancelled
172 lines
5.0 KiB
JSON
172 lines
5.0 KiB
JSON
{
|
|
"name": "@openmetadata/ui-core-components",
|
|
"version": "1.0.0",
|
|
"description": "OpenMetadata shared UI core components and theme system",
|
|
"main": "./dist/index.cjs.js",
|
|
"module": "./dist/index.es.js",
|
|
"types": "./dist/types/src/index.d.ts",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/types/src/index.d.ts",
|
|
"import": "./dist/index.es.js",
|
|
"require": "./dist/index.cjs.js"
|
|
},
|
|
"./theme": {
|
|
"types": "./dist/types/src/theme/index.d.ts",
|
|
"import": "./dist/theme/index.es.js",
|
|
"require": "./dist/theme/index.cjs.js"
|
|
},
|
|
"./colors": {
|
|
"types": "./dist/types/src/colors/index.d.ts",
|
|
"import": "./dist/colors/index.es.js",
|
|
"require": "./dist/colors/index.cjs.js"
|
|
},
|
|
"./components": {
|
|
"types": "./dist/types/src/components/index.d.ts",
|
|
"import": "./dist/components/index.es.js",
|
|
"require": "./dist/components/index.cjs.js"
|
|
},
|
|
"./utils": {
|
|
"types": "./dist/types/src/utils/index.d.ts",
|
|
"import": "./dist/utils/index.es.js",
|
|
"require": "./dist/utils/index.cjs.js"
|
|
},
|
|
"./globals.css": "./src/styles/globals.css"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src/styles/globals.css",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"sideEffects": [
|
|
"*.css",
|
|
"dist/**/*.css"
|
|
],
|
|
"keywords": [
|
|
"theme",
|
|
"mui",
|
|
"material-ui",
|
|
"design-system",
|
|
"core-components",
|
|
"react",
|
|
"typescript",
|
|
"ui-library",
|
|
"component-library"
|
|
],
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"build:watch": "vite build --watch",
|
|
"dev": "vite build --watch",
|
|
"type-check": "tsc --noEmit",
|
|
"clean": "rm -rf dist",
|
|
"prepublishOnly": "yarn clean && yarn build",
|
|
"storybook": "storybook dev -p 6006",
|
|
"build-storybook": "storybook build",
|
|
"lint": "eslint src/",
|
|
"lint:base": "eslint --no-error-on-unmatched-pattern",
|
|
"lint:fix": "eslint src/ --fix",
|
|
"pretty": "prettier --write src/",
|
|
"pretty:base": "prettier --config './.prettierrc.yaml' --ignore-path './.prettierignore'",
|
|
"pretty:check": "prettier --check src/",
|
|
"ui-checkstyle:changed": "bash scripts/ui-checkstyle-changed.sh"
|
|
},
|
|
"author": "OpenMetadata",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@material/material-color-utilities": "^0.3.0",
|
|
"@untitledui/file-icons": "^0.0.9"
|
|
},
|
|
"peerDependencies": {
|
|
"@emotion/react": ">=11.0.0",
|
|
"@emotion/styled": ">=11.0.0",
|
|
"@internationalized/date": "^3.11.0",
|
|
"@mui/material": ">=7.0.0",
|
|
"@mui/system": ">=7.0.0",
|
|
"@mui/x-date-pickers": ">=8.0.0",
|
|
"@react-aria/utils": "^3.33.0",
|
|
"@react-stately/utils": "^3.11.0",
|
|
"@tailwindcss/typography": ">=0.5.0",
|
|
"@tailwindcss/vite": ">=4.0.0",
|
|
"@untitledui/icons": "^0.0.21",
|
|
"input-otp": "^1.4.2",
|
|
"react": ">=18.0.0",
|
|
"react-aria": "^3.47.0",
|
|
"react-aria-components": "^1.16.0",
|
|
"react-dom": ">=18.0.0",
|
|
"react-hook-form": "^7.78.0",
|
|
"tailwind-merge": ">=3.0.0",
|
|
"tailwindcss": ">=4.0.0",
|
|
"tailwindcss-animate": ">=1.0.0",
|
|
"tailwindcss-react-aria-components": ">=2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@emotion/react": "^11.14.0",
|
|
"@emotion/styled": "^11.14.1",
|
|
"@fontsource/inter": "^5.2.8",
|
|
"@internationalized/date": "^3.11.0",
|
|
"@mui/icons-material": "^7.3.4",
|
|
"@mui/material": "^7.3.1",
|
|
"@mui/system": "^7.3.1",
|
|
"@mui/x-date-pickers": "^8.11.0",
|
|
"@react-aria/utils": "^3.33.0",
|
|
"@react-stately/utils": "^3.11.0",
|
|
"@storybook/addon-essentials": "^8.6.18",
|
|
"@storybook/addon-interactions": "^8.6.18",
|
|
"@storybook/addon-links": "^8.6.18",
|
|
"@storybook/blocks": "^8.6.18",
|
|
"@storybook/react": "^8.6.18",
|
|
"@storybook/react-vite": "^8.6.18",
|
|
"@storybook/test": "^8.6.18",
|
|
"@tailwindcss/typography": "^0.5.19",
|
|
"@tailwindcss/vite": "^4.1.18",
|
|
"@types/node": "^20.0.0",
|
|
"@types/react": "^18.2.0",
|
|
"@types/react-dom": "^18.2.0",
|
|
"@untitledui/icons": "^0.0.21",
|
|
"@vitejs/plugin-react": "^5.0.1",
|
|
"input-otp": "^1.4.2",
|
|
"react": "^18.2.0",
|
|
"react-aria": "^3.47.0",
|
|
"react-aria-components": "^1.16.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-hook-form": "^7.78.0",
|
|
"storybook": "^8.6.18",
|
|
"tailwind-merge": "^3.5.0",
|
|
"tailwindcss": "^4.1.18",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"tailwindcss-react-aria-components": "^2.0.1",
|
|
"terser": "^5.0.0",
|
|
"typescript": "^5.0.0",
|
|
"vite": "^7.3.5",
|
|
"vite-plugin-dts": "^4.5.4",
|
|
"@eslint/js": "^9.18.0",
|
|
"eslint": "^9.18.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-react": "^7.37.3",
|
|
"eslint-plugin-react-hooks": "^5.1.0",
|
|
"globals": "^17.4.0",
|
|
"typescript-eslint": "^8.20.0",
|
|
"prettier": "2.8.8"
|
|
},
|
|
"resolutions": {
|
|
"fast-uri": "3.1.2",
|
|
"lodash": "4.18.1",
|
|
"minimatch": "10.2.3",
|
|
"postcss": "8.5.10",
|
|
"rollup": "4.59.0",
|
|
"uuid": "^14.0.0",
|
|
"esbuild": "^0.28.1",
|
|
"ws": "8.21.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "restricted",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"engines": {
|
|
"node": ">=22.17.0",
|
|
"yarn": ">=1.22.0"
|
|
}
|
|
}
|