-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.01 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.01 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@targetly-labs/flowllm",
"version": "0.1.6",
"private": false,
"description": "Production-ready SDK for building AI agents with MCP tools",
"keywords": [
"ai",
"llm",
"mcp",
"agent",
"chatgpt",
"anthropic",
"gemini"
],
"homepage": "https://github.com/Targetly-Labs/flowllm#readme",
"bugs": {
"url": "https://github.com/Targetly-Labs/flowllm/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Targetly-Labs/flowllm.git"
},
"license": "MIT",
"author": "FlowLLM Team",
"type": "module",
"main": "./packages/flowllm/dist/index.js",
"module": "./packages/flowllm/dist/index.mjs",
"types": "./packages/flowllm/dist/index.d.ts",
"exports": {
".": {
"types": "./packages/flowllm/dist/index.d.ts",
"import": "./packages/flowllm/dist/index.mjs",
"require": "./packages/flowllm/dist/index.js"
},
"./providers": {
"types": "./packages/flowllm/dist/index.d.ts",
"import": "./packages/flowllm/dist/index.mjs",
"require": "./packages/flowllm/dist/index.js"
}
},
"files": [
"packages/flowllm/dist/**",
"packages/flowllm/package.json",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"dependencies": {
"zod": "^3.22.4",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1",
"openai": "^4.24.1",
"@anthropic-ai/sdk": "^0.20.0",
"@google/generative-ai": "^0.2.0",
"tiktoken": "^1.0.10",
"@modelcontextprotocol/sdk": "^1.25.1"
},
"directories": {
"doc": "docs",
"example": "examples"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@types/node": "^20.10.6",
"turbo": "^1.11.2",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}