bns-v2-sdk
Version:
The official BNS V2 SDK for interacting with Stacks Blockchain
60 lines (59 loc) • 1.37 kB
JSON
{
"name": "bns-v2-sdk",
"version": "2.0.0",
"description": "The official BNS V2 SDK for interacting with Stacks Blockchain",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"lint": "eslint src --ext .ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"BNS",
"Stacks",
"Blockchain",
"SDK",
"Names",
"NFT"
],
"author": "Strata Labs",
"license": "MIT",
"dependencies": {
"@stacks/common": "^6.0.0",
"@stacks/network": "^6.0.0",
"@stacks/transactions": "^7.0.2",
"axios": "^1.6.2"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.8.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Strata-Labs/bns-v2-sdk.git"
},
"bugs": {
"url": "https://github.com/Strata-Labs/bns-v2-sdk/issues"
},
"homepage": "https://github.com/Strata-Labs/bns-v2-sdk#readme"
}