UNPKG

@hashgraphonline/standards-agent-kit

Version:

A modular SDK for building on-chain autonomous agents using Hashgraph Online Standards, including HCS-10 for agent discovery and communication.

128 lines 4.2 kB
{ "name": "@hashgraphonline/standards-agent-kit", "version": "0.2.120", "description": "A modular SDK for building on-chain autonomous agents using Hashgraph Online Standards, including HCS-10 for agent discovery and communication.", "type": "module", "main": "./dist/cjs/standards-agent-kit.cjs", "module": "./dist/es/standards-agent-kit.es.js", "types": "./dist/es/index.d.ts", "exports": { ".": { "types": "./dist/es/index.d.ts", "import": "./dist/es/standards-agent-kit.es.js", "require": "./dist/cjs/standards-agent-kit.cjs", "default": "./dist/es/standards-agent-kit.es.js" }, "./package.json": "./package.json" }, "files": [ "dist", "src", "LICENSE", "README.md" ], "keywords": [ "hedera", "hcs10", "hcs6", "hcs7", "standards", "sdk", "agent", "agentkit", "ai-agent", "autonomous-agent", "hashgraph", "web3", "langchain", "multi-agent", "hapi", "onchain" ], "author": "Hashgraph Online <hello@hashgraphonline.com>", "license": "Apache-2.0", "repository": { "type": "git", "url": "git+https://github.com/hashgraph-online/standards-agent-kit.git" }, "bugs": { "url": "https://github.com/hashgraph-online/standards-agent-kit/issues" }, "homepage": "https://hashgraphonline.com/docs/libraries/standards-agent-kit/", "funding": { "type": "individual", "url": "https://github.com/sponsors/hashgraph-online" }, "engines": { "node": ">=18.0.0" }, "sideEffects": false, "readmeFilename": "README.md", "publishConfig": { "access": "public" }, "dependencies": { "@hashgraph/sdk": "^2.69.0", "@hashgraphonline/standards-sdk": "0.0.167", "@langchain/community": "^0.3.49", "@langchain/core": "^0.3.66", "@langchain/openai": "^0.6.3", "@octokit/rest": "^21.1.1", "axios": "^1.11.0", "chromadb": "^2.4.6", "commander": "^14.0.0", "dotenv": "^16.5.0", "hedera-agent-kit": "^2.0.3", "langchain": "^0.3.30", "openai": "^5.10.2", "typescript": "^5.8.3", "zod": "^3.25.28" }, "devDependencies": { "@hashgraphonline/conversational-agent": "0.1.205", "@rollup/plugin-commonjs": "^28.0.6", "@swc/core": "^1.11.21", "@swc/jest": "^0.2.36", "@types/jest": "^29.5.12", "@types/libsodium-wrappers": "^0.7.14", "@types/node": "^20.19.4", "@typescript-eslint/eslint-plugin": "^7.3.1", "@typescript-eslint/parser": "^7.3.1", "eslint": "^8.56.0", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "rimraf": "^6.0.1", "terser": "^5.39.2", "text-encoding": "^0.7.0", "tsconfig-paths": "^4.2.0", "tsx": "^4.19.4", "vite": "^6.3.5", "vite-plugin-dts": "^4.5.4", "vite-plugin-node-polyfills": "^0.23.0", "vite-plugin-string-replace": "^1.1.3" }, "scripts": { "clean": "rimraf dist", "build:es": "BUILD_FORMAT=es vite build", "build:cjs": "BUILD_FORMAT=cjs vite build", "build:umd": "BUILD_FORMAT=umd vite build", "build": "pnpm run clean && pnpm run build:es && pnpm run build:cjs && pnpm run build:umd", "test": "jest", "lint": "eslint . --ext .ts", "lint:fix": "eslint . --ext .ts --fix", "release": "pnpm publish --access public", "release:canary": "pnpm run prepublishOnly && pnpm publish --tag canary --access public", "version:canary": "pnpm version prerelease --preid canary --no-git-tag-version", "publish:canary": "pnpm run version:canary && pnpm run release:canary", "demo:cli": "tsx examples/cli-demo.ts", "demo:interactive": "tsx examples/interactive-demo.ts", "demo:langchain": "tsx examples/langchain-demo.ts", "demo:plugin": "tsx examples/plugin-system-example.ts", "demo:plugin:weather": "tsx examples/plugins/weather/index.ts", "demo:plugin:defi": "tsx examples/plugins/defi/index.ts", "demo:plugin:openconvai": "tsx examples/openconvai-plugin-example.ts", "standards-agent:start": "tsx examples/standards-expert/cli.ts -- start", "standards-agent:process-docs": "tsx examples/standards-expert/cli.ts -- process-docs --all-repos", "typecheck": "tsc --noEmit" } }