@hashgraphonline/conversational-agent 0.1.204 → 0.1.205

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +27 -25
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hashgraphonline/conversational-agent",
3
- "version": "0.1.204",
3
+ "version": "0.1.205",
4
4
  "type": "module",
5
5
  "main": "./dist/cjs/index.cjs",
6
6
  "module": "./dist/esm/index.js",
@@ -23,6 +23,29 @@
23
23
  "LICENSE",
24
24
  "README.md"
25
25
  ],
26
+ "scripts": {
27
+ "test": "vitest run",
28
+ "test:integration": "vitest run tests/integration",
29
+ "clean": "rimraf dist",
30
+ "build:es": "BUILD_FORMAT=es vite build",
31
+ "build:cjs": "BUILD_FORMAT=cjs vite build",
32
+ "build:umd": "BUILD_FORMAT=umd vite build",
33
+ "build": "pnpm run clean && pnpm run build:es && pnpm run build:cjs",
34
+ "prepublishOnly": "pnpm run build",
35
+ "release": "pnpm publish --access public",
36
+ "release:canary": "pnpm run prepublishOnly && pnpm publish --tag canary --access public",
37
+ "version:canary": "pnpm version prerelease --preid canary --no-git-tag-version",
38
+ "publish:canary": "pnpm run version:canary && pnpm run release:canary",
39
+ "lint": "eslint .",
40
+ "lint:fix": "eslint . --fix",
41
+ "typecheck": "tsc --noEmit",
42
+ "cli:build": "pnpm run build && cd cli && pnpm install && pnpm build",
43
+ "cli": "tsx cli/scripts/run-cli.ts",
44
+ "cli:dev": "cd cli && pnpm dev",
45
+ "example:mcp-filesystem": "tsx examples/mcp-filesystem-demo.ts",
46
+ "example:mcp-multi": "tsx examples/mcp-multi-server-demo.ts",
47
+ "postinstall": "cd cli && pnpm install --silent 2>/dev/null || true"
48
+ },
26
49
  "keywords": [
27
50
  "hedera",
28
51
  "hashgraph",
@@ -63,7 +86,7 @@
63
86
  },
64
87
  "dependencies": {
65
88
  "@hashgraph/sdk": "^2.69.0",
66
- "@hashgraphonline/standards-agent-kit": "0.2.106",
89
+ "@hashgraphonline/standards-agent-kit": "0.2.107",
67
90
  "@hashgraphonline/standards-sdk": "^0.0.156",
68
91
  "@langchain/core": "^0.3.66",
69
92
  "@langchain/openai": "^0.6.3",
@@ -84,26 +107,5 @@
84
107
  "url": "https://github.com/hashgraph-online/conversational-agent/issues"
85
108
  },
86
109
  "homepage": "https://github.com/hashgraph-online/conversational-agent#readme",
87
- "scripts": {
88
- "test": "vitest run",
89
- "test:integration": "vitest run tests/integration",
90
- "clean": "rimraf dist",
91
- "build:es": "BUILD_FORMAT=es vite build",
92
- "build:cjs": "BUILD_FORMAT=cjs vite build",
93
- "build:umd": "BUILD_FORMAT=umd vite build",
94
- "build": "pnpm run clean && pnpm run build:es && pnpm run build:cjs",
95
- "release": "pnpm publish --access public",
96
- "release:canary": "pnpm run prepublishOnly && pnpm publish --tag canary --access public",
97
- "version:canary": "pnpm version prerelease --preid canary --no-git-tag-version",
98
- "publish:canary": "pnpm run version:canary && pnpm run release:canary",
99
- "lint": "eslint .",
100
- "lint:fix": "eslint . --fix",
101
- "typecheck": "tsc --noEmit",
102
- "cli:build": "pnpm run build && cd cli && pnpm install && pnpm build",
103
- "cli": "tsx cli/scripts/run-cli.ts",
104
- "cli:dev": "cd cli && pnpm dev",
105
- "example:mcp-filesystem": "tsx examples/mcp-filesystem-demo.ts",
106
- "example:mcp-multi": "tsx examples/mcp-multi-server-demo.ts",
107
- "postinstall": "cd cli && pnpm install --silent 2>/dev/null || true"
108
- }
109
- }
110
+ "packageManager": "pnpm@10.11.1+sha512.e519b9f7639869dc8d5c3c5dfef73b3f091094b0a006d7317353c72b124e80e1afd429732e28705ad6bfa1ee879c1fce46c128ccebd3192101f43dd67c667912"
111
+ }