package.json 992 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "@solana/wallet-adapter-bitkeep",
  3. "version": "0.3.9",
  4. "author": "Solana Maintainers <maintainers@solana.foundation>",
  5. "repository": "https://github.com/solana-labs/wallet-adapter",
  6. "license": "Apache-2.0",
  7. "type": "module",
  8. "sideEffects": false,
  9. "main": "./lib/cjs/index.js",
  10. "module": "./lib/esm/index.js",
  11. "types": "./lib/types/index.d.ts",
  12. "exports": {
  13. "require": "./lib/cjs/index.js",
  14. "import": "./lib/esm/index.js",
  15. "types": "./lib/types/index.d.ts"
  16. },
  17. "files": [
  18. "lib",
  19. "src",
  20. "LICENSE"
  21. ],
  22. "publishConfig": {
  23. "access": "public"
  24. },
  25. "scripts": {
  26. "clean": "shx mkdir -p lib && shx rm -rf lib"
  27. },
  28. "peerDependencies": {
  29. "@solana/web3.js": "^1.50.1"
  30. },
  31. "dependencies": {
  32. "@solana/wallet-adapter-base": "workspace:^"
  33. },
  34. "devDependencies": {
  35. "@solana/web3.js": "^1.50.1",
  36. "shx": "^0.3.4"
  37. }
  38. }