@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.
127 lines (126 loc) • 4.08 kB
JSON
{
"name": "@hashgraphonline/standards-agent-kit",
"version": "0.0.38",
"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"
}
},
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"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": "npm run clean && npm run build:es && npm run build:cjs && npm run build:umd",
"test": "jest",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"release": "npm publish --access public",
"release:canary": "npm run prepublishOnly && npm publish --tag canary --access public",
"version:canary": "npm version prerelease --preid canary --no-git-tag-version",
"publish:canary": "npm run version:canary && npm 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"
},
"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": "https://github.com/hashgraph-online/standards-agent-kit"
},
"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.65.1",
"@hashgraphonline/standards-sdk": "^0.0.130",
"@langchain/community": "^0.3.44",
"@langchain/core": "^0.3.57",
"@langchain/openai": "^0.5.11",
"@octokit/rest": "^21.1.1",
"axios": "^1.9.0",
"chromadb": "^2.4.6",
"commander": "^14.0.0",
"dotenv": "^16.5.0",
"langchain": "^0.3.27",
"openai": "^4.103.0",
"typescript": "^5.8.3",
"zod": "^3.25.28"
},
"devDependencies": {
"@swc/core": "^1.11.21",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/libsodium-wrappers": "^0.7.14",
"@types/node": "^20.11.30",
"@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"
}
}