UNPKG

@augustdigital/sdk

Version:

JS SDK powering the August Digital ecosystem.

61 lines 1.37 kB
{ "name": "@augustdigital/sdk", "version": "4.6.1-beta", "main": "lib/index.js", "keywords": [ "augustdigital", "sdk", "js", "institutional", "defi" ], "author": "August Digital", "license": "MIT", "description": "JS SDK powering the August Digital ecosystem.", "lint-staged": { "*.{json,md,html,js,jsx,ts,tsx}": [ "pnpm format" ] }, "files": [ "lib" ], "publishConfig": { "access": "public" }, "dependencies": { "@coral-xyz/anchor": "^0.31.1", "@solana/spl-token": "^0.4.14", "@solana/wallet-adapter-base": "^0.9.27", "@solana/web3.js": "^1.98.4", "buffer": "^6.0.3", "ethereum-block-by-date": "^1.5.0", "ethers": "^6.13.1", "lru-cache": "^11.2.2" }, "devDependencies": { "@types/jest": "^29.5.0", "cross-env": "^7.0.3", "dotenv": "^16.0.0", "jest": "^29.7.0", "ts-jest": "^29.1.0" }, "peerDependencies": { "viem": "^2.0.0" }, "peerDependenciesMeta": { "viem": { "optional": true } }, "scripts": { "build": "tsc", "test": "pnpm build && cross-env node dist/test", "test:jest": "jest", "test:jest:watch": "jest --watch", "test:jest:coverage": "jest --coverage", "clean": "rm -rf ./lib", "format": "pnpm prettier '**/*.{json,yaml,ts,md}' --write", "lint-sdk": "lint-staged" } }