UNPKG

@tristeroresearch/mach-sdk

Version:

A TypeScript SDK for integrating with Mach's API.

83 lines (82 loc) 2.41 kB
{ "name": "@tristeroresearch/mach-sdk", "version": "0.1.13", "description": "A TypeScript SDK for integrating with Mach's API.", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "exports": { ".": { "import": "./dist/index.js" }, "./constants": { "import": "./dist/constants/index.js" } }, "scripts": { "build": "tsc", "test": "jest", "test:coverage": "jest --coverage", "lint": "eslint --fix", "prepublishOnly": "npm run build", "pretty": "prettier --write 'src/**/*.{ts,js}'", "lint:check": "eslint 'src/**/*.{ts,js}'", "version:patch": "npm version patch", "version:minor": "npm version minor", "version:major": "npm version major", "release": "npm run build && npm run version:patch && npm publish && git push --follow-tags" }, "keywords": [ "sdk", "blockchain", "token-swap", "integration", "ethers", "axios" ], "author": "Tristero Research <admin@tristero.com>", "license": "MIT", "publishConfig": { "access": "public" }, "files": [ "dist", "README.md", "LICENSE" ], "dependencies": { "@coral-xyz/anchor": "^0.29.0", "@solana/spl-token": "^0.4.1", "@solana/wallet-adapter-base": "^0.9.23", "@solana/wallet-adapter-react": "^0.15.35", "@solana/wallet-adapter-react-ui": "^0.9.35", "@solana/wallet-adapter-wallets": "^0.19.32", "@solana/web3.js": "^1.94.0", "@types/jest": "^29.5.12", "axios": "^1.7.7", "bignumber.js": "^9.1.2", "dotenv": "^16.4.7", "viem": "^2.24.3" }, "devDependencies": { "@types/jest": "^29.5.12", "@types/node": "^16.18.9", "@typescript-eslint/eslint-plugin": "^8.21.0", "@typescript-eslint/parser": "^8.21.0", "eslint": "^9.18.0", "eslint-config-prettier": "^10.0.1", "eslint-plugin-prettier": "^5.2.3", "jest": "^29.7.0", "prettier": "^3.4.2", "standard": "^17.1.2", "ts-jest": "^29.0.5", "ts-node": "^10.9.2", "typescript": "^5.7.2" }, "peerDependencies": { "ethers": "^6.11.1" }, "engines": { "node": ">=14.0.0" } }