@epoch-agent/core 0.1.0

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.
package/package.json ADDED
@@ -0,0 +1,82 @@
1
+ {
2
+ "name": "@epoch-agent/core",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "description": "epoch-agent 核心引擎:ReAct 循环、Provider 路由、工具调度、记忆管理",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/Ddbor/epoch-agent.git"
9
+ },
10
+ "license": "Apache-2.0",
11
+ "author": "epoch-agent",
12
+ "type": "module",
13
+ "exports": {
14
+ ".": {
15
+ "types": "./dist/index.d.ts",
16
+ "import": "./dist/index.js"
17
+ }
18
+ },
19
+ "main": "./dist/index.js",
20
+ "types": "./dist/index.d.ts",
21
+ "files": [
22
+ "dist"
23
+ ],
24
+ "dependencies": {
25
+ "ai": "^7.0.50",
26
+ "better-sqlite3": "^13.0.2",
27
+ "gpt-tokenizer": "^3.4.0",
28
+ "js-yaml": "^5.2.3",
29
+ "zod": "^4.4.3",
30
+ "@epoch-agent/protocol": "0.1.0",
31
+ "@epoch-agent/infra": "0.1.0"
32
+ },
33
+ "devDependencies": {
34
+ "@ai-sdk/amazon-bedrock": "^5.0.40",
35
+ "@ai-sdk/anthropic": "^4.0.28",
36
+ "@ai-sdk/azure": "^4.0.28",
37
+ "@ai-sdk/cohere": "^4.0.18",
38
+ "@ai-sdk/deepseek": "^3.0.20",
39
+ "@ai-sdk/google": "^4.0.31",
40
+ "@ai-sdk/groq": "^4.0.19",
41
+ "@ai-sdk/mistral": "^4.0.20",
42
+ "@ai-sdk/moonshotai": "^3.0.23",
43
+ "@ai-sdk/openai": "^4.0.28",
44
+ "@ai-sdk/openai-compatible": "^3.0.20",
45
+ "@ai-sdk/perplexity": "^4.0.20",
46
+ "@ai-sdk/togetherai": "^3.0.21",
47
+ "@ai-sdk/xai": "^4.0.25",
48
+ "@types/better-sqlite3": "^7.6.13",
49
+ "@types/js-yaml": "^4.0.9",
50
+ "@types/node": "^22.0.0",
51
+ "ollama-ai-provider-v2": "^4.0.1",
52
+ "tsup": "^8.3.6",
53
+ "typescript": "^5.8.3",
54
+ "vitest": "^3.0.0"
55
+ },
56
+ "optionalDependencies": {
57
+ "@ai-sdk/amazon-bedrock": "^5.0.40",
58
+ "@ai-sdk/anthropic": "^4.0.28",
59
+ "@ai-sdk/azure": "^4.0.28",
60
+ "@ai-sdk/cohere": "^4.0.18",
61
+ "@ai-sdk/deepseek": "^3.0.20",
62
+ "@ai-sdk/google": "^4.0.31",
63
+ "@ai-sdk/groq": "^4.0.19",
64
+ "@ai-sdk/mistral": "^4.0.20",
65
+ "@ai-sdk/moonshotai": "^3.0.23",
66
+ "@ai-sdk/openai": "^4.0.28",
67
+ "@ai-sdk/openai-compatible": "^3.0.20",
68
+ "@ai-sdk/perplexity": "^4.0.20",
69
+ "@ai-sdk/togetherai": "^3.0.21",
70
+ "@ai-sdk/xai": "^4.0.25",
71
+ "ollama-ai-provider-v2": "^4.0.1"
72
+ },
73
+ "engines": {
74
+ "node": ">=22.0.0"
75
+ },
76
+ "scripts": {
77
+ "build": "tsup",
78
+ "dev": "tsup --watch",
79
+ "test": "vitest run",
80
+ "typecheck": "tsc --noEmit"
81
+ }
82
+ }