UNPKG

react-md

Version:

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

116 lines 3.01 kB
{ "name": "react-md", "version": "6.2.3", "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": "6.3.1" }, "devDependencies": { "@swc/cli": "^0.6.0", "@swc/core": "^1.12.11", "@trivago/prettier-plugin-sort-imports": "^5.2.2", "@types/node": "^22.15.29", "chokidar": "^4.0.3", "glob": "^11.0.3", "npm-run-all": "^4.1.5", "prettier": "^3.6.2", "tsx": "^4.20.3", "typescript": "^5.8.3" }, "peerDependencies": { "@jest/globals": "^29.7.0", "@jest/types": "^29.6.3", "@testing-library/dom": "^9.3.4", "@testing-library/jest-dom": "^6.3.0", "@testing-library/react": "^14.1.2", "@testing-library/user-event": "^14.5.2", "react": ">= 18", "react-dom": ">= 18" }, "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 } }, "publishConfig": { "access": "public" }, "volta": { "node": "22.13.1", "pnpm": "10.8.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", "typecheck": "tsc --noEmit" } }