ts-xdbchain-sdk
Version:
A TypeScript SDK for interacting with XDBCHAIN - a Stellar-based blockchain network
51 lines • 1.24 kB
JSON
{
"name": "ts-xdbchain-sdk",
"version": "1.0.0",
"description": "A TypeScript SDK for interacting with XDBCHAIN - a Stellar-based blockchain network",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.esm.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && npm run build:esm",
"build:esm": "tsc --module esnext --outDir dist/esm && mv dist/esm/index.js dist/index.esm.js && rm -rf dist/esm",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"xdb",
"xdbchain",
"xdb-chain",
"stellar",
"blockchain",
"cryptocurrency",
"sdk",
"typescript",
"payments",
"wallet"
],
"author": "XDBCHAIN",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xdbchain/ts-xdbchain-sdk.git"
},
"bugs": {
"url": "https://github.com/xdbchain/ts-xdbchain-sdk/issues"
},
"homepage": "https://github.com/xdbchain/ts-xdbchain-sdk#readme",
"dependencies": {
"stellar-sdk": "^13.3.0"
},
"devDependencies": {
"@types/node": "^24.0.14",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=16.0.0"
}
}