{
  "name": "salmon-adapter-sdk",
  "version": "1.1.1",
  "description": "SDK for wallet adapters",
  "main": "lib/cjs/index.js",
  "module": "lib/esm/index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "start:esm": "tsc --watch",
    "start:cjs": "tsc --project tsconfig.cjs.json --watch",
    "start": "npm-run-all -p start:esm start:cjs",
    "build:esm": "tsc",
    "build:cjs": "tsc --project tsconfig.cjs.json",
    "build": "npm run build:esm && npm run build:cjs",
    "deploy": "npm run build && npm publish --access public"
  },
  "files": [
    "src/",
    "lib/"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/salmonw/salmon-adapter-sdk.git"
  },
  "author": "",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/salmonw/salmon-adapter-sdk/issues"
  },
  "homepage": "https://github.com/salmonw/salmon-adapter-sdk#readme",
  "peerDependencies": {
    "@solana/web3.js": "^1.44.3"
  },
  "dependencies": {
    "@project-serum/sol-wallet-adapter": "^0.2.6",
    "eventemitter3": "^4.0.7"
  },
  "devDependencies": {
    "@solana/web3.js": "^1.44.3",
    "npm-run-all": "^4.1.5",
    "typescript": "^4.7.4"
  }
}