package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@solana/wallet-adapter-example",
  3. "version": "0.18.38",
  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. "src",
  12. ".editorconfig",
  13. ".env",
  14. ".gitignore",
  15. ".prettierignore",
  16. ".prettierrc",
  17. "LICENSE",
  18. "package.json",
  19. "tsconfig.json"
  20. ],
  21. "scripts": {
  22. "build": "tsc --build --verbose && parcel build src/index.html",
  23. "deploy": "tsc --build --verbose && parcel build --public-url /wallet-adapter/example src/index.html",
  24. "clean": "shx mkdir -p .parcel-cache dist lib && shx rm -rf .parcel-cache dist lib",
  25. "lint": "prettier --check 'src/{*,**/*}.{ts,tsx,js,jsx,json}' && eslint",
  26. "start": "parcel src/index.html"
  27. },
  28. "dependencies": {
  29. "@emotion/react": "^11.14.0",
  30. "@emotion/styled": "^11.14.0",
  31. "@mui/icons-material": "^5.11.16",
  32. "@mui/material": "^5.13.5",
  33. "@noble/curves": "^1.8.1",
  34. "@solana/wallet-adapter-base": "workspace:^",
  35. "@solana/wallet-adapter-react": "workspace:^",
  36. "@solana/wallet-adapter-react-ui": "workspace:^",
  37. "@solana/wallet-adapter-wallets": "workspace:^",
  38. "@solana/wallet-standard-features": "^1.3.0",
  39. "@solana/wallet-standard-util": "^1.1.2",
  40. "@solana/web3.js": "^1.98.0",
  41. "bs58": "^6.0.0",
  42. "next": "^15.3.0",
  43. "notistack": "^3.0.2",
  44. "react": "^18.3.1",
  45. "react-dom": "^18.3.1"
  46. },
  47. "devDependencies": {
  48. "@types/node-fetch": "^2.6.12",
  49. "@types/react": "^18.3.19",
  50. "@types/react-dom": "^18.3.6",
  51. "parcel": "^2.14.4",
  52. "prettier": "^3.5.3",
  53. "process": "^0.11.10",
  54. "shx": "^0.4.0",
  55. "typescript": "^5.8.3"
  56. }
  57. }