-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 3.98 KB
/
package.json
File metadata and controls
144 lines (144 loc) · 3.98 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "@tangle-network/agent-runtime",
"version": "0.50.0",
"description": "Shared task-lifecycle skeleton for agents: a recursive loop kernel for chat turns, one-shot tasks, and multi-attempt loops, with trace capture and eval-gated self-improvement. Domain behavior lives in adapters; scoring and ship-gates in @tangle-network/agent-eval.",
"homepage": "https://github.com/tangle-network/agent-runtime#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tangle-network/agent-runtime.git"
},
"bugs": {
"url": "https://github.com/tangle-network/agent-runtime/issues"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./platform": {
"types": "./dist/platform.d.ts",
"import": "./dist/platform.js",
"default": "./dist/platform.js"
},
"./analyst-loop": {
"types": "./dist/analyst-loop.d.ts",
"import": "./dist/analyst-loop.js",
"default": "./dist/analyst-loop.js"
},
"./improvement": {
"types": "./dist/improvement.d.ts",
"import": "./dist/improvement.js",
"default": "./dist/improvement.js"
},
"./agent": {
"types": "./dist/agent.d.ts",
"import": "./dist/agent.js",
"default": "./dist/agent.js"
},
"./runtime": {
"types": "./dist/runtime.d.ts",
"import": "./dist/runtime.js",
"default": "./dist/runtime.js"
},
"./loops": {
"types": "./dist/loops.d.ts",
"import": "./dist/loops.js",
"default": "./dist/loops.js"
},
"./topology": {
"types": "./dist/topology.d.ts",
"import": "./dist/topology.js",
"default": "./dist/topology.js"
},
"./workflow": {
"types": "./dist/workflow.d.ts",
"import": "./dist/workflow.js",
"default": "./dist/workflow.js"
},
"./profiles": {
"types": "./dist/profiles.d.ts",
"import": "./dist/profiles.js",
"default": "./dist/profiles.js"
},
"./audit": {
"types": "./dist/audit.d.ts",
"import": "./dist/audit.js",
"default": "./dist/audit.js"
},
"./mcp": {
"types": "./dist/mcp/index.d.ts",
"import": "./dist/mcp/index.js",
"default": "./dist/mcp/index.js"
}
},
"bin": {
"agent-runtime-mcp": "./dist/mcp/bin.js",
"agent-runtime-loop": "./dist/loop-runner-bin.js"
},
"files": [
"dist",
"README.md",
"skills"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepare": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check src tests examples",
"lint:fix": "biome check --write src tests examples",
"typecheck": "tsc --noEmit && pnpm run typecheck:examples",
"typecheck:examples": "tsc --noEmit -p tsconfig.examples.json",
"verify:package": "node scripts/verify-package-exports.mjs"
},
"devDependencies": {
"@biomejs/biome": "^2.4.0",
"@tangle-network/agent-eval": "^0.89.0",
"@tangle-network/sandbox": "^0.6.0",
"@types/node": "^25.6.0",
"playwright": "^1.40.0",
"tsup": "^8.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"pnpm": {
"minimumReleaseAge": 4320,
"minimumReleaseAgeExclude": [
"@tangle-network/agent-eval",
"@tangle-network/sandbox"
],
"onlyBuiltDependencies": [
"esbuild"
]
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"packageManager": "pnpm@10.28.0",
"peerDependencies": {
"@tangle-network/agent-eval": ">=0.83.0 <1.0.0",
"@tangle-network/agent-knowledge": ">=1.3.0 <2.0.0",
"@tangle-network/sandbox": ">=0.1.2 <0.7.0",
"playwright": "^1.40.0"
},
"peerDependenciesMeta": {
"@tangle-network/agent-knowledge": {
"optional": true
},
"@tangle-network/sandbox": {
"optional": true
},
"playwright": {
"optional": true
}
}
}