Browse Source

reorganize package.json

Jordan Sexton 3 years ago
parent
commit
4261ee927e
54 changed files with 509 additions and 513 deletions
  1. 2 2
      package.json
  2. 10 10
      packages/core/base/package.json
  3. 10 10
      packages/core/react/package.json
  4. 0 3
      packages/starter/create-react-app-starter/package.json
  5. 3 3
      packages/starter/example/package.json
  6. 3 3
      packages/starter/nextjs-starter/package.json
  7. 11 11
      packages/ui/ant-design/package.json
  8. 10 10
      packages/ui/material-ui/package.json
  9. 10 11
      packages/ui/react-ui/package.json
  10. 10 10
      packages/wallets/alpha/package.json
  11. 10 10
      packages/wallets/avana/package.json
  12. 10 10
      packages/wallets/backpack/package.json
  13. 10 10
      packages/wallets/bitkeep/package.json
  14. 10 10
      packages/wallets/bitpie/package.json
  15. 10 10
      packages/wallets/blocto/package.json
  16. 10 10
      packages/wallets/brave/package.json
  17. 10 10
      packages/wallets/clover/package.json
  18. 10 10
      packages/wallets/coin98/package.json
  19. 10 10
      packages/wallets/coinbase/package.json
  20. 10 10
      packages/wallets/coinhub/package.json
  21. 10 10
      packages/wallets/exodus/package.json
  22. 10 10
      packages/wallets/fractal/package.json
  23. 10 10
      packages/wallets/glow/package.json
  24. 10 10
      packages/wallets/huobi/package.json
  25. 10 10
      packages/wallets/hyperpay/package.json
  26. 10 10
      packages/wallets/keystone/package.json
  27. 10 10
      packages/wallets/krystal/package.json
  28. 10 10
      packages/wallets/ledger/package.json
  29. 10 10
      packages/wallets/magiceden/package.json
  30. 10 10
      packages/wallets/mathwallet/package.json
  31. 10 10
      packages/wallets/neko/package.json
  32. 10 10
      packages/wallets/nightly/package.json
  33. 10 10
      packages/wallets/nufi/package.json
  34. 10 10
      packages/wallets/onto/package.json
  35. 10 10
      packages/wallets/particle/package.json
  36. 10 10
      packages/wallets/phantom/package.json
  37. 10 10
      packages/wallets/safepal/package.json
  38. 10 10
      packages/wallets/saifu/package.json
  39. 10 10
      packages/wallets/salmon/package.json
  40. 10 10
      packages/wallets/sky/package.json
  41. 10 10
      packages/wallets/slope/package.json
  42. 10 10
      packages/wallets/solflare/package.json
  43. 10 10
      packages/wallets/sollet/package.json
  44. 10 10
      packages/wallets/solong/package.json
  45. 10 10
      packages/wallets/spot/package.json
  46. 10 10
      packages/wallets/strike/package.json
  47. 10 10
      packages/wallets/tokenary/package.json
  48. 10 10
      packages/wallets/tokenpocket/package.json
  49. 10 10
      packages/wallets/torus/package.json
  50. 10 10
      packages/wallets/trust/package.json
  51. 10 10
      packages/wallets/unsafe-burner/package.json
  52. 10 10
      packages/wallets/walletconnect/package.json
  53. 10 10
      packages/wallets/wallets/package.json
  54. 10 10
      packages/wallets/xdefi/package.json

+ 2 - 2
package.json

@@ -4,12 +4,12 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
     "engines": {
         "node": ">=16",
         "pnpm": ">=7"
     },
+    "type": "module",
+    "sideEffects": false,
     "scripts": {
         "nuke": "shx rm -rf packages/*/*/node_modules node_modules pnpm-lock.yaml || true",
         "reinstall": "pnpm run nuke && pnpm install",

+ 10 - 10
packages/core/base/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/core/react/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json",

+ 0 - 3
packages/starter/create-react-app-starter/package.json

@@ -4,9 +4,6 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "engines": {
-        "node": ">=16"
-    },
     "publishConfig": {
         "access": "public"
     },

+ 3 - 3
packages/starter/example/package.json

@@ -4,9 +4,6 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "engines": {
-        "node": ">=16"
-    },
     "publishConfig": {
         "access": "public"
     },
@@ -25,6 +22,9 @@
         "README.md",
         "tsconfig.json"
     ],
+    "engines": {
+        "node": ">=16"
+    },
     "scripts": {
         "clean": "shx rm -rf .next .swc lib",
         "dev": "NODE_OPTIONS='--inspect' next dev",

+ 3 - 3
packages/starter/nextjs-starter/package.json

@@ -4,9 +4,6 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "engines": {
-        "node": ">=16"
-    },
     "publishConfig": {
         "access": "public"
     },
@@ -25,6 +22,9 @@
         "README.md",
         "tsconfig.json"
     ],
+    "engines": {
+        "node": ">=16"
+    },
     "scripts": {
         "clean": "shx rm -rf .next .swc lib",
         "dev": "NODE_OPTIONS='--inspect' next dev",

+ 11 - 11
packages/ui/ant-design/package.json

@@ -4,11 +4,20 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "publishConfig": {
+        "access": "public"
+    },
+    "files": [
+        "lib",
+        "src",
+        "LICENSE",
+        "styles.css"
+    ],
     "engines": {
         "node": ">=16"
     },
+    "type": "module",
+    "sideEffects": false,
     "main": "./lib/cjs/index.js",
     "module": "./lib/esm/index.js",
     "types": "./lib/types/index.d.ts",
@@ -20,15 +29,6 @@
         },
         "./styles.css": "./styles.css"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE",
-        "styles.css"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/ui/material-ui/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 11
packages/ui/react-ui/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -20,15 +28,6 @@
         },
         "./styles.css": "./styles.css"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE",
-        "styles.css"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/alpha/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/avana/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/backpack/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/bitkeep/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/bitpie/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/blocto/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/brave/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/clover/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/coin98/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/coinbase/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/coinhub/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/exodus/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/fractal/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/glow/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/huobi/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/hyperpay/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/keystone/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/krystal/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/ledger/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/magiceden/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/mathwallet/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/neko/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/nightly/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/nufi/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/onto/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/particle/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/phantom/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/safepal/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/saifu/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/salmon/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/sky/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/slope/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/solflare/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/sollet/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/solong/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/spot/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/strike/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/tokenary/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/tokenpocket/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/torus/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/trust/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/unsafe-burner/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/walletconnect/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/wallets/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"

+ 10 - 10
packages/wallets/xdefi/package.json

@@ -4,11 +4,19 @@
     "author": "Solana Maintainers <maintainers@solana.foundation>",
     "repository": "https://github.com/solana-labs/wallet-adapter",
     "license": "Apache-2.0",
-    "type": "module",
-    "sideEffects": false,
+    "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",
@@ -17,14 +25,6 @@
         "import": "./lib/esm/index.js",
         "types": "./lib/types/index.d.ts"
     },
-    "files": [
-        "lib",
-        "src",
-        "LICENSE"
-    ],
-    "publishConfig": {
-        "access": "public"
-    },
     "scripts": {
         "clean": "shx mkdir -p lib && shx rm -rf lib",
         "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"