adrena-sdk-ts
Version:
SDK for interacting with Adrena Protocol
47 lines (46 loc) • 1.21 kB
JSON
{
"name": "adrena-sdk-ts",
"version": "1.0.0-beta.2",
"description": "SDK for interacting with Adrena Protocol",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AlexRubik/adrena-sdk-ts.git"
},
"keywords": [
"adrena",
"solana",
"sdk"
],
"author": "AlexRubik",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.14.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "yarn build",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"git-api": "ts-node src/helpers/gitApi.ts",
"open-long": "ts-node src/examples/openMarketLongExample.ts",
"position-status": "ts-node src/examples/positionStatusExample.ts",
"get-positions": "ts-node src/adrena-api/examples/getPositionsApiExample.ts"
},
"dependencies": {
"@solana-program/compute-budget": "^0.7.0",
"@solana-program/system": "^0.7.0",
"@solana/kit": "^2.1.0",
"@types/bn.js": "^5.1.6",
"bn.js": "^5.2.1",
"codama": "^1.2.11",
"dotenv": "^16.5.0",
"ws": "^8.18.1"
}
}