@defindex/sdk
Version:
Official TypeScript SDK for DeFindex API
70 lines • 1.7 kB
JSON
{
"name": "@defindex/sdk",
"version": "0.1.2",
"description": "Official TypeScript SDK for DeFindex API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"DeFindex",
"stellar",
"soroban",
"defi",
"vault",
"yield",
"yield farming",
"sdk",
"typescript"
],
"author": "Paltalabs Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/paltalabs/defindex-sdk.git"
},
"bugs": {
"url": "https://github.com/paltalabs/defindex-sdk/issues"
},
"homepage": "https://defindex.io",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.30.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.4",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"dotenv": "^16.6.1",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"jest": "^30.0.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3"
},
"dependencies": {
"axios": "^1.10.0"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:unit": "jest",
"test:integration": "jest --config=jest.integration.config.js",
"test:all": "pnpm run test:unit && pnpm run test:integration",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"example": "npx ts-node -r dotenv/config examples/basic-example.ts"
}
}