@tangle-network/agent-runtime 0.17.2 → 0.18.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/README.md +0 -1
- package/dist/agent.d.ts +2 -164
- package/dist/agent.js +0 -108
- package/dist/agent.js.map +1 -1
- package/dist/index.js +1 -7
- package/dist/index.js.map +1 -1
- package/package.json +22 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tangle-network/agent-runtime",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"description": "Reusable runtime lifecycle for domain-specific agents.",
|
|
5
5
|
"homepage": "https://github.com/tangle-network/agent-runtime#readme",
|
|
6
6
|
"repository": {
|
|
@@ -42,6 +42,16 @@
|
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
|
+
"scripts": {
|
|
46
|
+
"build": "tsup",
|
|
47
|
+
"dev": "tsup --watch",
|
|
48
|
+
"prepare": "tsup",
|
|
49
|
+
"test": "vitest run",
|
|
50
|
+
"test:watch": "vitest",
|
|
51
|
+
"lint": "biome check src tests examples",
|
|
52
|
+
"lint:fix": "biome check --write src tests examples",
|
|
53
|
+
"typecheck": "tsc --noEmit"
|
|
54
|
+
},
|
|
45
55
|
"dependencies": {
|
|
46
56
|
"@tangle-network/agent-eval": "^0.33.1"
|
|
47
57
|
},
|
|
@@ -53,20 +63,21 @@
|
|
|
53
63
|
"typescript": "^5.7.0",
|
|
54
64
|
"vitest": "^3.0.0"
|
|
55
65
|
},
|
|
66
|
+
"pnpm": {
|
|
67
|
+
"minimumReleaseAge": 4320,
|
|
68
|
+
"minimumReleaseAgeExclude": [
|
|
69
|
+
"@tangle-network/agent-eval"
|
|
70
|
+
],
|
|
71
|
+
"onlyBuiltDependencies": [
|
|
72
|
+
"esbuild"
|
|
73
|
+
]
|
|
74
|
+
},
|
|
56
75
|
"engines": {
|
|
57
76
|
"node": ">=20"
|
|
58
77
|
},
|
|
59
78
|
"license": "MIT",
|
|
79
|
+
"packageManager": "pnpm@10.28.0",
|
|
60
80
|
"peerDependencies": {
|
|
61
81
|
"@tangle-network/sandbox": ">=0.1.2 <0.3.0"
|
|
62
|
-
},
|
|
63
|
-
"scripts": {
|
|
64
|
-
"build": "tsup",
|
|
65
|
-
"dev": "tsup --watch",
|
|
66
|
-
"test": "vitest run",
|
|
67
|
-
"test:watch": "vitest",
|
|
68
|
-
"lint": "biome check src tests examples",
|
|
69
|
-
"lint:fix": "biome check --write src tests examples",
|
|
70
|
-
"typecheck": "tsc --noEmit"
|
|
71
82
|
}
|
|
72
|
-
}
|
|
83
|
+
}
|