package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@solana/wallet-adapter-unsafe-burner",
  3. "version": "0.1.11",
  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.98.0"
  36. },
  37. "dependencies": {
  38. "@noble/curves": "^1.9.1",
  39. "@solana/wallet-adapter-base": "workspace:^",
  40. "@solana/wallet-standard-features": "^1.3.0",
  41. "@solana/wallet-standard-util": "^1.1.2"
  42. },
  43. "devDependencies": {
  44. "@solana/web3.js": "^1.98.2",
  45. "shx": "^0.4.0"
  46. }
  47. }