-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 4.3 KB
/
Copy pathpackage.json
File metadata and controls
142 lines (142 loc) · 4.3 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
{
"name": "@tangle-network/agent-runtime",
"version": "0.79.2",
"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"
},
"./agent": {
"types": "./dist/agent.d.ts",
"import": "./dist/agent.js",
"default": "./dist/agent.js"
},
"./intelligence": {
"types": "./dist/intelligence.d.ts",
"import": "./dist/intelligence.js",
"default": "./dist/intelligence.js"
},
"./loops": {
"types": "./dist/loops.d.ts",
"import": "./dist/loops.js",
"default": "./dist/loops.js"
},
"./environment-provider": {
"types": "./dist/environment-provider.d.ts",
"import": "./dist/environment-provider.js",
"default": "./dist/environment-provider.js"
},
"./analyst-loop": {
"types": "./dist/analyst-loop.d.ts",
"import": "./dist/analyst-loop.js",
"default": "./dist/analyst-loop.js"
},
"./lifecycle": {
"types": "./dist/lifecycle.d.ts",
"import": "./dist/lifecycle.js",
"default": "./dist/lifecycle.js"
},
"./profiles": {
"types": "./dist/profiles.d.ts",
"import": "./dist/profiles.js",
"default": "./dist/profiles.js"
},
"./platform": {
"types": "./dist/platform.d.ts",
"import": "./dist/platform.js",
"default": "./dist/platform.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": "(git rev-parse --git-dir > /dev/null 2>&1 && git config core.hooksPath .githooks) || true; 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",
"docs:api": "typedoc && node scripts/gen-primitive-catalog.mjs",
"docs:freshness": "node scripts/check-docs-freshness.mjs",
"docs:check": "pnpm run docs:api && git diff --exit-code -- docs/api && pnpm run docs:freshness"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@tangle-network/agent-eval": ">=0.100.0 <1.0.0",
"@tangle-network/agent-interface": ">=0.14.0 <1.0.0",
"@tangle-network/sandbox": ">=0.8.0 <1.0.0",
"@types/node": "^25.9.3",
"playwright": "^1.61.0",
"tsup": "^8.0.0",
"tsx": "^4.22.4",
"typedoc": "0.28.19",
"typedoc-plugin-markdown": "4.12.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"pnpm": {
"minimumReleaseAge": 4320,
"minimumReleaseAgeExclude": [
"@tangle-network/agent-eval",
"@tangle-network/agent-interface",
"@tangle-network/sandbox"
],
"onlyBuiltDependencies": [
"esbuild"
]
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"packageManager": "pnpm@10.28.0",
"peerDependencies": {
"@tangle-network/agent-eval": ">=0.97.0 <1.0.0",
"@tangle-network/agent-interface": ">=0.14.0 <1.0.0",
"@tangle-network/sandbox": ">=0.8.0 <1.0.0",
"playwright": "^1.40.0"
},
"peerDependenciesMeta": {
"@tangle-network/agent-interface": {
"optional": true
},
"@tangle-network/sandbox": {
"optional": true
},
"playwright": {
"optional": true
}
}
}