{ "name": "@blackroad/sdk", "version": "0.1.0", "description": "Official TypeScript/JavaScript SDK for BlackRoad Operating System", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/types/index.d.ts", "exports": { ".": { "require": "./dist/cjs/index.js", "import": "./dist/esm/index.js", "types": "./dist/types/index.d.ts" } }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "npm run build:cjs && npm run build:esm && npm run build:types", "build:cjs": "tsc --project tsconfig.cjs.json", "build:esm": "tsc --project tsconfig.esm.json", "build:types": "tsc --project tsconfig.types.json", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "format": "prettier --write \"src/**/*.ts\" \"examples/**/*.ts\" \"tests/**/*.ts\"", "prepublishOnly": "npm run build", "clean": "rm -rf dist" }, "keywords": [ "blackroad", "blockchain", "ai-agents", "sdk", "typescript", "decentralized" ], "author": "BlackRoad Team", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/blackroad/blackroad-os.git", "directory": "sdk/typescript" }, "bugs": { "url": "https://github.com/blackroad/blackroad-os/issues" }, "homepage": "https://github.com/blackroad/blackroad-os#readme", "dependencies": { "axios": "^1.6.2", "axios-retry": "^4.0.0" }, "devDependencies": { "@types/jest": "^29.5.11", "@types/node": "^20.10.6", "@typescript-eslint/eslint-plugin": "^6.15.0", "@typescript-eslint/parser": "^6.15.0", "eslint": "^8.56.0", "jest": "^29.7.0", "prettier": "^3.1.1", "ts-jest": "^29.1.1", "typescript": "^5.3.3" }, "engines": { "node": ">=16.0.0" } }