package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "@solana/wallet-adapter-tokenary",
  3. "version": "0.1.7",
  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. "engines": {
  10. "node": ">=16"
  11. },
  12. "main": "./lib/cjs/index.js",
  13. "module": "./lib/esm/index.js",
  14. "types": "./lib/types/index.d.ts",
  15. "exports": {
  16. "require": "./lib/cjs/index.js",
  17. "import": "./lib/esm/index.js",
  18. "types": "./lib/types/index.d.ts"
  19. },
  20. "files": [
  21. "lib",
  22. "src",
  23. "LICENSE"
  24. ],
  25. "publishConfig": {
  26. "access": "public"
  27. },
  28. "scripts": {
  29. "clean": "shx mkdir -p lib && shx rm -rf lib",
  30. "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"
  31. },
  32. "peerDependencies": {
  33. "@solana/web3.js": "^1.58.0"
  34. },
  35. "dependencies": {
  36. "@solana/wallet-adapter-base": "workspace:^"
  37. },
  38. "devDependencies": {
  39. "@solana/web3.js": "^1.58.0",
  40. "shx": "^0.3.4"
  41. }
  42. }