-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.91 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 2.91 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
{
"name": "@tangle-network/agent-runtime",
"version": "0.35.0",
"description": "Reusable runtime lifecycle for domain-specific agents.",
"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"
},
"./loops": {
"types": "./dist/loops.d.ts",
"import": "./dist/loops.js",
"default": "./dist/loops.js"
},
"./profiles": {
"types": "./dist/profiles.d.ts",
"import": "./dist/profiles.js",
"default": "./dist/profiles.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"
},
"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"
},
"dependencies": {},
"devDependencies": {
"@biomejs/biome": "^2.4.0",
"@tangle-network/agent-eval": "^0.61.0",
"@tangle-network/sandbox": "^0.4.0",
"@types/node": "^25.6.0",
"tsup": "^8.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"pnpm": {
"minimumReleaseAge": 4320,
"minimumReleaseAgeExclude": [
"@tangle-network/agent-eval"
],
"onlyBuiltDependencies": [
"esbuild"
]
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"packageManager": "pnpm@10.28.0",
"peerDependencies": {
"@tangle-network/agent-eval": ">=0.61.0 <1.0.0",
"@tangle-network/agent-knowledge": ">=1.3.0 <2.0.0",
"@tangle-network/sandbox": ">=0.1.2 <0.5.0"
},
"peerDependenciesMeta": {
"@tangle-network/agent-knowledge": {
"optional": true
},
"@tangle-network/sandbox": {
"optional": true
}
}
}