@agentix/plugin-solana-openbook
Version:
56 lines • 1.27 kB
JSON
{
"name": "@agentix/plugin-solana-openbook",
"version": "1.0.0",
"type": "module",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/agentix-sdk/agentix.git"
},
"homepage": "https://github.com/agentix-sdk/agentix/tree/main/packages/plugins/solana-openbook",
"keywords": [
"solana",
"openbook",
"agentix",
"plugin",
"defi",
"perpetuals"
],
"author": "agentix-sdk",
"license": "Apache-2.0",
"dependencies": {
"@raydium-io/raydium-sdk-v2": "0.1.106-alpha",
"@solana/spl-token": "^0.4.9",
"zod": "^3.24.1",
"agentix": "1.0.0"
},
"peerDependencies": {
"@solana/web3.js": "^1.98.0",
"agentix": "1.0.0"
},
"scripts": {
"clean": "rm -rf dist .turbo node_modules",
"build": "tsup src/index.ts --dts --clean --format cjs,esm --out-dir dist",
"test": "jest"
}
}