package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@solana/wallet-adapter-material-ui",
  3. "version": "0.16.34",
  4. "author": "Solana Maintainers <maintainers@solana.foundation>",
  5. "repository": "https://github.com/anza-xyz/wallet-adapter",
  6. "license": "Apache-2.0",
  7. "publishConfig": {
  8. "access": "public"
  9. },
  10. "files": [
  11. "lib",
  12. "src",
  13. "LICENSE"
  14. ],
  15. "engines": {
  16. "node": ">=16"
  17. },
  18. "type": "module",
  19. "sideEffects": false,
  20. "main": "./lib/cjs/index.js",
  21. "module": "./lib/esm/index.js",
  22. "types": "./lib/types/index.d.ts",
  23. "exports": {
  24. "require": "./lib/cjs/index.js",
  25. "import": "./lib/esm/index.js",
  26. "types": "./lib/types/index.d.ts"
  27. },
  28. "scripts": {
  29. "build": "tsc --build --verbose && pnpm run package",
  30. "clean": "shx mkdir -p lib && shx rm -rf lib",
  31. "lint": "prettier --check 'src/{*,**/*}.{ts,tsx,js,jsx,json}' && eslint",
  32. "package": "shx mkdir -p lib/cjs && shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"
  33. },
  34. "peerDependencies": {
  35. "@mui/icons-material": "*",
  36. "@mui/material": "*",
  37. "@solana/web3.js": "^1.77.3",
  38. "react": "*",
  39. "react-dom": "*"
  40. },
  41. "dependencies": {
  42. "@solana/wallet-adapter-base": "workspace:^",
  43. "@solana/wallet-adapter-base-ui": "workspace:^",
  44. "@solana/wallet-adapter-react": "workspace:^"
  45. },
  46. "devDependencies": {
  47. "@emotion/react": "^11.11.1",
  48. "@emotion/styled": "^11.11.0",
  49. "@mui/icons-material": "^5.11.16",
  50. "@mui/material": "^5.13.5",
  51. "@solana/web3.js": "^1.77.3",
  52. "@types/react": "^18.2.13",
  53. "@types/react-dom": "^18.2.6",
  54. "react": "^18.2.0",
  55. "react-dom": "^18.2.0",
  56. "shx": "^0.3.4"
  57. }
  58. }