UNPKG

@saleor/macaw-ui

Version:

Saleor's UI component library

127 lines 3.98 kB
{ "version": "1.1.20", "license": "CC-BY-4.0", "homepage": "https://macaw-ui.vercel.app/", "repository": { "type": "git", "url": "git://github.com/saleor/macaw-ui.git" }, "bugs": { "url": "https://github.com/saleor/macaw-ui/issues" }, "files": [ "dist/*" ], "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "default": "./dist/index.js" }, "./style": { "import": "./dist/style.css", "default": "./dist/style.css" } }, "keywords": [ "saleor", "macaw", "macaw-ui", "react", "ui components" ], "engines": { "node": "18 || 20", "pnpm": ">=9" }, "name": "@saleor/macaw-ui", "description": "Saleor's UI component library", "author": "Saleor Commerce", "private": false, "publishConfig": { "access": "public" }, "devDependencies": { "@changesets/changelog-git": "^0.2.0", "@changesets/cli": "^2.27.1", "@storybook/addon-actions": "^8.0.5", "@storybook/addon-essentials": "^8.0.5", "@storybook/addon-interactions": "^8.0.5", "@storybook/addon-links": "^8.0.5", "@storybook/react": "^8.0.5", "@storybook/react-vite": "^8.0.5", "@testing-library/jest-dom": "^5.17.0", "@testing-library/react": "^14.0.0", "@types/react": "^18.0.0", "@types/react-dom": "^18.0.0", "@types/testing-library__jest-dom": "^5.14.9", "@typescript-eslint/eslint-plugin": "^6.7.5", "@typescript-eslint/parser": "^6.7.5", "@vanilla-extract/css": "^1.13.0", "@vanilla-extract/dynamic": "^2.0.3", "@vanilla-extract/sprinkles": "^1.6.1", "@vanilla-extract/vite-plugin": "^3.9.0", "@vitejs/plugin-react": "^4.0.4", "chromatic": "^11.3.0", "eslint": "^8.46.0", "eslint-config-prettier": "^9.0.0", "eslint-import-resolver-typescript": "^3.5.5", "eslint-plugin-import": "^2.28.0", "eslint-plugin-react": "^7.33.1", "eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-storybook": "^0.6.13", "husky": "^8.0.3", "is-ci": "^3.0.1", "jsdom": "^23.0.1", "lint-staged": "^15.1.0", "npm-run-all": "^4.1.5", "prettier": "^3.0.1", "react": "^18.2.0", "react-dom": "^18.2.0", "rollup-plugin-visualizer": "5.12.0", "storybook": "^8.0.5", "typescript": "^5.1.6", "vite": "^5.0.0", "vite-plugin-dts": "^3.4.0", "vitest": "^1.0.4" }, "dependencies": { "@dessert-box/react": "^0.4.0", "@floating-ui/react-dom": "^2.0.2", "@radix-ui/react-accordion": "^1.1.2", "@radix-ui/react-checkbox": "^1.0.4", "@radix-ui/react-dialog": "^1.0.4", "@radix-ui/react-dropdown-menu": "^2.0.5", "@radix-ui/react-popover": "^1.0.6", "@radix-ui/react-portal": "^1.0.3", "@radix-ui/react-radio-group": "^1.1.3", "@radix-ui/react-toggle": "^1.0.3", "@radix-ui/react-tooltip": "^1.0.6", "@vanilla-extract/css-utils": "^0.1.3", "@vanilla-extract/recipes": "^0.5.0", "downshift": "^9.0.8" }, "peerDependencies": { "@types/react": "^16.9.0 || ^17.0.0 || ^18.0.0", "@types/react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0", "react": "^16.8.0 || ^17.0.0 || ^18.0.0", "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" }, "scripts": { "build": "npm-run-all check-types && vite build", "bundle-visualizer": "VISUALIZER=true vite build", "build-storybook": "storybook build --docs", "watch": "vite build --watch", "lint": "eslint 'src/**/*.@(tsx|ts|jsx|js)' --fix", "check-types": "tsc", "test": "vitest", "dev": "storybook dev -p 6006", "dev:docs": "storybook dev -p 6006 --docs", "publish:ci-prod": "pnpm publish && pnpm changeset tag && git push --follow-tags", "publish:ci-dev": "pnpm changeset version --snapshot pr && pnpm publish --tag dev --no-git-checks", "chromatic": "chromatic --exit-zero-on-changes", "change:add": "changeset add" } }