-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@10xscale/agentflow-client",
"version": "0.2.0",
"description": "TypeScript client library for AgentFlow API - build intelligent agents with thread management, streaming, memory, and tool execution",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && vite build && cp -r dist-types/* dist/",
"dev": "vite build --watch",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"coverage:open": "vitest run --coverage && xdg-open coverage/index.html",
"prepublishOnly": "npm run build && npm run test:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/10xHub/agentflow.git",
"directory": "agentflow-client"
},
"bugs": {
"url": "https://github.com/10xHub/agentflow/issues"
},
"homepage": "https://github.com/10xHub/agentflow/tree/main/agentflow-client#readme",
"devDependencies": {
"@vitest/coverage-v8": "^1.6.1",
"@vitest/ui": "^1.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vitest": "^1.0.0"
},
"keywords": [
"agentflow",
"agent",
"ai",
"llm",
"chatbot",
"conversation",
"memory",
"threads",
"streaming",
"tools",
"function-calling",
"typescript",
"api-client"
],
"author": "Shudipto Trafder",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
}
}