UNPKG

@wormhole-foundation/sdk-solana-cctp

Version:

SDK for Solana, used in conjunction with @wormhole-foundation/sdk

80 lines 2.16 kB
{ "name": "@wormhole-foundation/sdk-solana-cctp", "version": "2.0.0", "repository": { "type": "git", "url": "git+https://github.com/wormhole-foundation/connect-sdk.git" }, "bugs": { "url": "https://github.com/wormhole-foundation/connect-sdk/issues" }, "homepage": "https://github.com/wormhole-foundation/connect-sdk#readme", "directories": { "test": "__tests__" }, "license": "Apache-2.0", "main": "./dist/cjs/index.js", "types": "./dist/cjs/index.d.ts", "module": "./dist/esm/index.js", "author": "", "description": "SDK for Solana, used in conjunction with @wormhole-foundation/sdk", "files": [ "dist/esm", "dist/cjs" ], "keywords": [ "wormhole", "sdk", "typescript", "connect", "solana", "cctp", "usdc" ], "engines": { "node": ">=16" }, "sideEffects": [ "./dist/cjs/index.js", "./dist/esm/index.js" ], "scripts": { "build:cjs": "tsc -p ./tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json", "build:esm": "tsc -p ./tsconfig.esm.json", "build": "npm run build:esm && npm run build:cjs", "rebuild": "npm run clean && npm run build", "clean": "rm -rf ./dist && rm -rf ./.turbo", "lint": "npm run prettier && eslint --fix ./src --ext .ts", "prettier": "prettier --write ./src" }, "dependencies": { "@wormhole-foundation/sdk-connect": "2.0.0", "@wormhole-foundation/sdk-solana": "2.0.0", "@coral-xyz/anchor": "0.29.0", "@solana/spl-token": "0.3.9", "@solana/web3.js": "^1.95.8" }, "type": "module", "exports": { ".": { "react-native": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js", "types": "./dist/cjs/index.d.ts", "default": "./dist/cjs/index.js" }, "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.ts", "default": "./dist/cjs/index.js" }, "default": { "types": "./dist/cjs/index.d.ts", "default": "./dist/cjs/index.js" } } } }