@xcapit/shelter-sdk
Version:
SDK for Shelter smart contracts on Stellar
51 lines (50 loc) • 1.51 kB
JSON
{
"name": "@xcapit/shelter-sdk",
"version": "1.1.0",
"description": "SDK for Shelter smart contracts on Stellar",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "npm run build:deps && tsc",
"build:deps": "cd packages/shelter-sdk && npm run build && cd ../sac-sdk && npm run build",
"test:base": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test": "npm run test:base",
"test:watch": "npm run test:base -- --watch",
"test:e2e": "npm run test:base -- --config jest.config.e2e.js",
"coverage": "npm run test:base -- --coverage",
"coverage:all": "npm run test:base -- --config jest.config.all.js --coverage"
},
"keywords": [
"stellar",
"soroban",
"smart-contracts",
"shelter",
"xcapit"
],
"author": "Xcapit Team",
"license": "AGPL-3.0",
"dependencies": {
"@stellar/stellar-sdk": "v14.0.0-rc.3",
"sac-sdk": "./packages/sac-sdk",
"shelter-sdk": "./packages/shelter-sdk"
},
"repository": {
"type": "git",
"url": "https://github.com/xcapit/shelter.git",
"directory": "sdk"
},
"homepage": "https://github.com/xcapit/shelter",
"bugs": {
"url": "https://github.com/xcapit/shelter/issues"
},
"devDependencies": {
"@stellar/typescript-wallet-sdk": "^1.9.0",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0",
"@types/node": "^22.15.3",
"typescript": "^5.8.3"
}
}