@attestprotocol/stellar-sdk
Version:
Stellar implementation of the Attest Protocol SDK
58 lines • 1.38 kB
JSON
{
"name": "@attestprotocol/stellar-sdk",
"description": "Stellar implementation of the Attest Protocol SDK",
"version": "1.7.0",
"author": "daccred",
"license": "MIT",
"repository": "daccred/attest.so.git",
"bugs": "https://github.com/daccred/attest.so/issues",
"homepage": "https://github.com/daccred/attest.so#readme",
"keywords": [
"attestation",
"blockchain",
"stellar",
"soroban",
"sdk"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"src"
],
"dependencies": {
"@stellar/stellar-sdk": "14.0.0-rc.3",
"@attestprotocol/core": "1.7.0",
"@attestprotocol/stellar": "1.7.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"eslint": "^8.0.0",
"prettier": "^3.0.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"clean": "rimraf dist",
"dev": "tsup --watch",
"format": "prettier --write \"src/**/*.ts\"",
"lint:ts": "tsc --noEmit --pretty",
"test": "vitest",
"test:coverage": "vitest --coverage"
}
}