package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@solana/wallet-adapter-keystone",
  3. "version": "0.1.16",
  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. "lib",
  12. "src",
  13. "LICENSE"
  14. ],
  15. "engines": {
  16. "node": ">=20"
  17. },
  18. "type": "module",
  19. "sideEffects": false,
  20. "main": "./lib/cjs/index.js",
  21. "module": "./lib/esm/index.js",
  22. "types": "./lib/types/index.d.ts",
  23. "exports": {
  24. "require": "./lib/cjs/index.js",
  25. "import": "./lib/esm/index.js",
  26. "types": "./lib/types/index.d.ts"
  27. },
  28. "scripts": {
  29. "build": "tsc --build --verbose && pnpm run package",
  30. "clean": "shx mkdir -p lib && shx rm -rf lib",
  31. "lint": "prettier --check 'src/{*,**/*}.{ts,tsx,js,jsx,json}' && eslint",
  32. "package": "shx mkdir -p lib/cjs && shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"
  33. },
  34. "peerDependencies": {
  35. "@solana/web3.js": "^1.77.3"
  36. },
  37. "dependencies": {
  38. "@keystonehq/sol-keyring": "^0.20.0",
  39. "@solana/wallet-adapter-base": "workspace:^"
  40. },
  41. "devDependencies": {
  42. "@solana/web3.js": "^1.77.3",
  43. "shx": "^0.3.4"
  44. },
  45. "overrides": {
  46. "@ngraveio/bc-ur": "1.1.12"
  47. },
  48. "resolutions": {
  49. "@ngraveio/bc-ur": "1.1.12"
  50. }
  51. }