UNPKG

@hashgraphonline/hedera-agent-kit

Version:

Build LLM-powered applications that interact with the Hedera Network. Create conversational agents that can understand user requests in natural language and execute Hedera transactions, or build backend systems that leverage AI for on-chain operations.

89 lines (88 loc) 2.82 kB
{ "name": "@hashgraphonline/hedera-agent-kit", "version": "0.0.38", "type": "module", "main": "./dist/cjs/index.cjs", "module": "./dist/esm/index.js", "types": "./dist/types/index.d.ts", "exports": { ".": { "types": "./dist/types/index.d.ts", "browser": { "import": "./dist/esm/index.js", "require": "./dist/umd/hedera-agent-kit.umd.js" }, "import": "./dist/esm/index.js", "require": "./dist/cjs/index.cjs" }, "./package.json": "./package.json" }, "files": [ "dist", "src", "LICENSE", "README.md" ], "scripts": { "demo:langchain": "tsx examples/langchain-demo.ts", "demo:notes": "tsx examples/test-notes-system.ts", "test": "vitest run", "test:integration": "vitest run tests/integration", "prepare": "npm run build", "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", "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", "lint": "eslint . --ext .ts", "lint:fix": "eslint . --ext .ts --fix", "typecheck": "tsc --noEmit" }, "keywords": [], "author": "", "license": "ISC", "description": "", "devDependencies": { "@eslint/eslintrc": "^3", "@typescript-eslint/eslint-plugin": "^8.30.1", "@typescript-eslint/parser": "^8.30.1", "eslint": "^8", "eslint-config-next": "14.1.0", "eslint-plugin-sonarjs": "^3.0.2", "rimraf": "^6.0.1", "rollup-plugin-polyfill-node": "^0.13.0", "terser": "^5.39.2", "tsx": "^4.19.4", "typescript": "^5.8.3", "vite": "^6.3.5", "vite-plugin-dts": "^3.9.1", "vite-plugin-node-polyfills": "^0.23.0", "vite-plugin-string-replace": "^1.1.3", "vitest": "^3.0.7" }, "dependencies": { "@hashgraph/sdk": "^2.65.1", "@hashgraphonline/hashinal-wc": "^1.0.96", "@hashgraphonline/standards-agent-kit": "^0.0.37", "@hashgraphonline/standards-sdk": "^0.0.121", "@langchain/core": "^0.3.55", "@langchain/langgraph": "^0.2.71", "@langchain/openai": "^0.5.11", "@modelcontextprotocol/sdk": "^1.12.1", "bignumber.js": "^9.3.0", "chalk": "^5.4.1", "date-fns": "^4.1.0", "dotenv": "^16.5.0", "gradient-string": "^3.0.0", "zod": "^3.25.28" }, "repository": { "type": "git", "url": "git+https://github.com/hashgraph-online/hedera-agent-kit.git" } }