package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "private": true,
  3. "name": "@solana/wallet-adapter",
  4. "author": "Solana Maintainers <maintainers@solana.foundation>",
  5. "repository": "https://github.com/anza-xyz/wallet-adapter",
  6. "license": "Apache-2.0",
  7. "engines": {
  8. "node": ">=20",
  9. "pnpm": "10.12.1"
  10. },
  11. "packageManager": "pnpm@10.12.1",
  12. "type": "module",
  13. "sideEffects": false,
  14. "scripts": {
  15. "corepack": "corepack enable && corepack prepare pnpm@10.12.1 --activate && corepack use pnpm@10.12.1",
  16. "nuke": "shx rm -rf packages/*/*/node_modules node_modules pnpm-lock.yaml || true",
  17. "reinstall": "pnpm run nuke && pnpm install",
  18. "clean": "pnpm --recursive --workspace-concurrency=0 run clean && shx rm -rf **/*.tsbuildinfo",
  19. "build": "turbo run build --concurrency=100%",
  20. "build:clean": "pnpm run clean && pnpm run build",
  21. "release": "pnpm run build:clean && pnpm test && changeset publish && git push --follow-tags && git status",
  22. "watch": "tsc --build --verbose --watch tsconfig.all.json",
  23. "fmt": "prettier --write '{*,**/*}.{ts,tsx,js,jsx,json}'",
  24. "lint": "turbo run lint --concurrency=100%",
  25. "lint:fix": "pnpm run fmt && eslint --fix .",
  26. "test": "turbo run test --concurrency=100%",
  27. "deploy": "pnpm run deploy:docs && pnpm run deploy:example",
  28. "docs": "shx rm -rf docs && NODE_OPTIONS=--max_old_space_size=16000 typedoc && shx cp ./{.nojekyll,wallets.png} docs/",
  29. "deploy:docs": "pnpm run docs && gh-pages --dist docs --dotfiles",
  30. "example": "pnpm run --filter {packages/starter/example} deploy",
  31. "deploy:example": "pnpm run example && gh-pages --dist packages/starter/example/dist --dest example --dotfiles"
  32. },
  33. "devDependencies": {
  34. "@changesets/cli": "^2.29.4",
  35. "@parcel/resolver-default": "2.15.2",
  36. "@types/node": "^22.15.24",
  37. "@typescript-eslint/eslint-plugin": "^8.33.0",
  38. "@typescript-eslint/parser": "^8.33.0",
  39. "eslint": "8.22.0",
  40. "eslint-config-prettier": "^10.1.5",
  41. "eslint-plugin-prettier": "^5.4.0",
  42. "eslint-plugin-react": "^7.37.5",
  43. "eslint-plugin-react-hooks": "^5.2.0",
  44. "eslint-plugin-require-extensions": "^0.1.3",
  45. "gh-pages": "^6.3.0",
  46. "pnpm": "10.12.1",
  47. "prettier": "^3.5.3",
  48. "shx": "^0.4.0",
  49. "turbo": "^2.5.3",
  50. "typedoc": "^0.28.5",
  51. "typescript": "^5.8.3",
  52. "vm-browserify": "^1.1.2"
  53. },
  54. "overrides": {
  55. "@solana/wallet-adapter-base": "workspace:^",
  56. "eslint": "8.22.0",
  57. "@ngraveio/bc-ur": "1.1.12",
  58. "@types/web": "npm:typescript@^5.8.3"
  59. },
  60. "resolutions": {
  61. "@solana/wallet-adapter-base": "workspace:^",
  62. "eslint": "8.22.0",
  63. "@ngraveio/bc-ur": "1.1.12",
  64. "@types/web": "npm:typescript@^5.8.3"
  65. },
  66. "@parcel/resolver-default": {
  67. "packageExports": true
  68. }
  69. }