genius-bridge-sdk
Version:
SDK for the Genius Bridge Protocol (GBP)
96 lines (95 loc) • 2.67 kB
JSON
{
"name": "genius-bridge-sdk",
"version": "0.1.4",
"description": "SDK for the Genius Bridge Protocol (GBP)",
"license": "GNU",
"author": "Samuel Videau <samuel@videau.io>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"keywords": [
"defi",
"trading",
"sdk",
"intents",
"solana",
"ethereum",
"blockchain",
"crypto",
"trading-sdk"
],
"homepage": "https://github.com/Genius-Foundation/genius-bridge-sdk#readme",
"bugs": {
"url": "https://github.com/Genius-Foundation/genius-bridge-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Genius-Foundation/genius-bridge-sdk.git"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"build": "tsc",
"build:clean": "rm -rf dist && tsc",
"lint": "eslint \"src/**/*.ts\" --fix",
"lint:check": "eslint \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:protocols": "jest tests/protocols",
"test:integration": "jest tests/integration",
"test:unit": "jest tests/core tests/utils",
"test:e2e": "jest tests/e2e",
"prepare": "npm run build:clean",
"prepublishOnly": "npm run lint:check && npm run format:check && npm run test && npm run build:clean",
"prepack": "npm run build:clean",
"release": "npm run prepare && npm publish",
"release:dry": "npm run prepare && npm publish --dry-run",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.14",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.5.3",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
},
"dependencies": {
"@solana/web3.js": "^1.98.2",
"axios": "^1.9.0",
"bs58": "^6.0.0",
"ethers": "^6.13.5",
"jest": "^29.7.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}