| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "name": "@solana/wallet-adapter-material-ui",
- "version": "0.16.34",
- "author": "Solana Maintainers <maintainers@solana.foundation>",
- "repository": "https://github.com/anza-xyz/wallet-adapter",
- "license": "Apache-2.0",
- "publishConfig": {
- "access": "public"
- },
- "files": [
- "lib",
- "src",
- "LICENSE"
- ],
- "engines": {
- "node": ">=16"
- },
- "type": "module",
- "sideEffects": false,
- "main": "./lib/cjs/index.js",
- "module": "./lib/esm/index.js",
- "types": "./lib/types/index.d.ts",
- "exports": {
- "require": "./lib/cjs/index.js",
- "import": "./lib/esm/index.js",
- "types": "./lib/types/index.d.ts"
- },
- "scripts": {
- "build": "tsc --build --verbose && pnpm run package",
- "clean": "shx mkdir -p lib && shx rm -rf lib",
- "lint": "prettier --check 'src/{*,**/*}.{ts,tsx,js,jsx,json}' && eslint",
- "package": "shx mkdir -p lib/cjs && shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"
- },
- "peerDependencies": {
- "@mui/icons-material": "*",
- "@mui/material": "*",
- "@solana/web3.js": "^1.77.3",
- "react": "*",
- "react-dom": "*"
- },
- "dependencies": {
- "@solana/wallet-adapter-base": "workspace:^",
- "@solana/wallet-adapter-base-ui": "workspace:^",
- "@solana/wallet-adapter-react": "workspace:^"
- },
- "devDependencies": {
- "@emotion/react": "^11.11.1",
- "@emotion/styled": "^11.11.0",
- "@mui/icons-material": "^5.11.16",
- "@mui/material": "^5.13.5",
- "@solana/web3.js": "^1.77.3",
- "@types/react": "^18.2.13",
- "@types/react-dom": "^18.2.6",
- "react": "^18.2.0",
- "react-dom": "^18.2.0",
- "shx": "^0.3.4"
- }
- }
|