UNPKG

goodrdotfun-sdk

Version:

SDK for interacting with goodr.fun and Sonic on Solana

65 lines 1.73 kB
{ "name": "goodrdotfun-sdk", "version": "0.1.35", "description": "SDK for interacting with goodr.fun and Sonic on Solana", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "README.md", "LICENSE" ], "keywords": [ "solana", "blockchain", "sdk", "goodr.fun", "sonic", "defi", "tokens" ], "author": "goodr.fun", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/goodr-fun/goodrdotfun-sdk.git" }, "bugs": { "url": "https://github.com/goodr-fun/goodrdotfun-sdk/issues" }, "homepage": "https://github.com/goodr-fun/goodrdotfun-sdk#readme", "dependencies": { "@coral-xyz/anchor": "^0.31.1", "@solana/spl-token": "^0.4.13", "@solana/web3.js": "^1.98.2", "bignumber.js": "^9.3.0", "bn.js": "^5.2.1", "bs58": "^6.0.0", "class-validator": "^0.14.1" }, "devDependencies": { "@types/bn.js": "^5.1.6", "@types/jest": "^29.5.14", "@types/node": "^20.17.30", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "dotenv": "^16.5.0", "eslint": "^8.57.1", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.2.6", "jest": "^29.7.0", "prettier": "^3.5.3", "rimraf": "^5.0.10", "ts-jest": "^29.3.2", "typescript": "^5.8.3" }, "scripts": { "build": "tsc", "clean": "rimraf dist", "test": "jest", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"examples/**/*.ts\"", "format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\" \"examples/**/*.ts\"" } }