UNPKG

@edgex-web/components

Version:

EdgeX Universal UI Components Library - Reusable React components for deposit, withdraw and other common UI patterns

108 lines (107 loc) 3.04 kB
{ "name": "@edgex-web/components", "version": "0.1.0-beta.56", "description": "EdgeX Universal UI Components Library - Reusable React components for deposit, withdraw and other common UI patterns", "main": "dist/index.umd.js", "module": "dist/index.esm.js", "types": "dist/index.d.ts", "files": [ "dist", "README.md", "LICENSE" ], "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "scripts": { "dev": "vite", "build": "tsc && vite build", "build:css": "tailwindcss -c tailwind.config.cjs -i ./src/styles/tailwind.css -o ./dist/styles.css --minify", "build:watch": "vite build --watch", "test": "vitest", "test:ui": "vitest --ui", "test:coverage": "vitest --coverage", "lint": "eslint src --ext .ts,.tsx", "lint:fix": "eslint src --ext .ts,.tsx --fix", "format": "prettier --write \"src/**/*.{ts,tsx,json,css,md}\"", "format:check": "prettier --check \"src/**/*.{ts,tsx,json,css,md}\"", "type-check": "tsc --noEmit", "prepare": "husky install", "prepublishOnly": "npm run build" }, "keywords": [ "react", "components", "ui", "edgex", "deposit", "withdraw", "typescript" ], "author": "kyle", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/edgex-tech/edgex-components.git" }, "peerDependencies": { "react": "^18.2.0", "react-dom": "^18.2.0", "viem": ">=2.18.0 <3", "wagmi": ">=2.10.9 <3" }, "devDependencies": { "@tanstack/react-query": "^5.85.5", "@testing-library/jest-dom": "^6.1.5", "@testing-library/react": "^14.1.2", "@testing-library/user-event": "^14.5.1", "@types/react": "^18.2.43", "@types/react-copy-to-clipboard": "^5.0.7", "@types/react-dom": "^18.2.17", "@typescript-eslint/eslint-plugin": "^6.14.0", "@typescript-eslint/parser": "^6.14.0", "@vitejs/plugin-react": "^4.2.1", "@vitest/coverage-v8": "^1.0.4", "@vitest/ui": "^1.0.4", "autoprefixer": "^10.4.21", "clsx": "^2.0.0", "eslint": "^8.55.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-react": "^7.33.2", "eslint-plugin-react-hooks": "^4.6.0", "husky": "^8.0.3", "jsdom": "^23.0.1", "lint-staged": "^15.2.0", "postcss": "^8.5.6", "postcss-cli": "^11.0.1", "prettier": "^3.1.1", "react": "^18.2.0", "react-dom": "^18.2.0", "tailwindcss": "^3.4.17", "typescript": "^5.3.3", "viem": "^2.34.0", "vite": "^5.0.8", "vite-plugin-dts": "^3.6.4", "vitest": "^1.0.4", "wagmi": "^2.16.4" }, "dependencies": { "@floating-ui/react": "^0.27.16", "@headlessui/react": "^2.2.7", "@heroicons/react": "^2.2.0", "bignumber.js": "^9.1.2", "lucide-react": "^0.540.0", "qrcode.react": "^4.2.0", "react-copy-to-clipboard": "^5.1.0" }, "lint-staged": { "*.{ts,tsx}": [ "eslint --fix", "prettier --write" ], "*.{json,css,md}": [ "prettier --write" ] } }