UNPKG

react-md

Version:

This is the full react-md library bundled together for convenience.

124 lines 3.21 kB
{ "name": "react-md", "version": "7.0.0", "description": "This is the full react-md library bundled together for convenience.", "type": "module", "sass": "./dist/_react-md.scss", "exports": { "./a11y": { "sass": "./dist/_a11y.scss" }, "./colors": { "sass": "./dist/_colors.scss" }, ".": { "sass": "./dist/_react-md.scss", "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./package.json": "./package.json" }, "sideEffects": [ "dist/**/*.scss", "dist/test-utils/polyfills" ], "author": "Mikkel Laursen <mlaursen03@gmail.com>", "repository": { "type": "git", "url": "https://github.com/mlaursen/react-md.git", "directory": "packages/react-md" }, "bugs": { "url": "https://github.com/mlaursen/react-md/issues" }, "homepage": "https://react-md.dev", "keywords": [ "react-md", "material design", "react", "component", "components" ], "license": "MIT", "dependencies": { "@react-md/core": "7.0.0" }, "devDependencies": { "@swc/cli": "^0.7.9", "@swc/core": "^1.15.8", "@trivago/prettier-plugin-sort-imports": "^6.0.1", "@types/node": "^24.10.4", "chokidar": "^5.0.0", "glob": "^13.0.0", "npm-run-all2": "^8.0.2", "prettier": "^3.7.4", "react": "^19.2.3", "react-dom": "^19.2.3", "tsx": "^4.21.0", "typescript": "^5.9.3" }, "peerDependencies": { "@jest/globals": ">= 29 <=31", "@jest/types": ">= 29 <=31", "@testing-library/dom": ">= 9", "@testing-library/jest-dom": ">= 6", "@testing-library/react": ">= 14", "@testing-library/user-event": ">= 14", "react": ">= 18", "react-dom": ">= 18", "vitest": ">= 3" }, "peerDependenciesMeta": { "@jest/globals": { "optional": true }, "@jest/types": { "optional": true }, "@testing-library/dom": { "optional": true }, "@testing-library/jest-dom": { "optional": true }, "@testing-library/react": { "optional": true }, "@testing-library/user-event": { "optional": true }, "react": { "optional": true }, "react-dom": { "optional": true }, "vitest": { "optional": true } }, "publishConfig": { "access": "public" }, "volta": { "node": "24.11.1", "pnpm": "10.24.0" }, "scripts": { "run-script": "tsx --tsconfig scripts/tsconfig.json", "dev": "npm-run-all --parallel build-esm-watch build-scss-watch build-types-watch", "prepare-release": "npm-run-all clean-dist build", "build": "npm-run-all build-esm build-scss build-types", "build-esm": "swc -d ./dist --strip-leading-paths src", "build-esm-watch": "pnpm run build-esm --watch", "build-types": "tsc -P tsconfig.types.json", "build-types-watch": "pnpm run build-types --watch", "build-scss": "pnpm run run-script scripts/copySassFiles.ts", "build-scss-watch": "pnpm run build-scss --watch", "clean-dist": "rm -rf dist", "clean": "rm -rf .turbo dist node_modules", "check-format": "prettier --check .", "format": "prettier --write .", "typecheck": "tsc --noEmit" } }