@shroud-fi/agent-runtime 0.1.2 → 0.1.3
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 +17 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shroud-fi/agent-runtime",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "High-level AI agent runtime for ShroudFi. Composes core + payments + scanning + relayer into a single ShroudAgent surface.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"shroudfi",
|
|
@@ -36,30 +36,23 @@
|
|
|
36
36
|
"files": [
|
|
37
37
|
"dist"
|
|
38
38
|
],
|
|
39
|
-
"scripts": {
|
|
40
|
-
"build": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json && node ../../scripts/add-cjs-marker.js",
|
|
41
|
-
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
42
|
-
"test": "vitest run",
|
|
43
|
-
"test:integration": "vitest run --config vitest.config.integration.ts",
|
|
44
|
-
"clean": "rm -rf dist"
|
|
45
|
-
},
|
|
46
39
|
"dependencies": {
|
|
47
|
-
"@shroud-fi/core": "workspace:*",
|
|
48
|
-
"@shroud-fi/payments": "workspace:*",
|
|
49
|
-
"@shroud-fi/scanning": "workspace:*",
|
|
50
|
-
"@shroud-fi/transport": "workspace:*",
|
|
51
40
|
"@noble/curves": "^1.6.0",
|
|
52
|
-
"@noble/hashes": "^1.5.0"
|
|
41
|
+
"@noble/hashes": "^1.5.0",
|
|
42
|
+
"@shroud-fi/transport": "0.1.1",
|
|
43
|
+
"@shroud-fi/payments": "0.1.0",
|
|
44
|
+
"@shroud-fi/core": "0.1.0",
|
|
45
|
+
"@shroud-fi/scanning": "0.1.0"
|
|
53
46
|
},
|
|
54
47
|
"peerDependencies": {
|
|
55
48
|
"viem": "^2.21.0",
|
|
56
|
-
"@shroud-fi/relayer": "
|
|
49
|
+
"@shroud-fi/relayer": "0.1.0"
|
|
57
50
|
},
|
|
58
51
|
"devDependencies": {
|
|
59
|
-
"@shroud-fi/relayer": "workspace:*",
|
|
60
52
|
"viem": "^2.21.0",
|
|
61
53
|
"vitest": "^2.0.0",
|
|
62
|
-
"typescript": "^5.6.0"
|
|
54
|
+
"typescript": "^5.6.0",
|
|
55
|
+
"@shroud-fi/relayer": "0.1.0"
|
|
63
56
|
},
|
|
64
57
|
"publishConfig": {
|
|
65
58
|
"access": "public"
|
|
@@ -68,5 +61,12 @@
|
|
|
68
61
|
"@shroud-fi/relayer": {
|
|
69
62
|
"optional": true
|
|
70
63
|
}
|
|
64
|
+
},
|
|
65
|
+
"scripts": {
|
|
66
|
+
"build": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json && node ../../scripts/add-cjs-marker.js",
|
|
67
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
68
|
+
"test": "vitest run",
|
|
69
|
+
"test:integration": "vitest run --config vitest.config.integration.ts",
|
|
70
|
+
"clean": "rm -rf dist"
|
|
71
71
|
}
|
|
72
|
-
}
|
|
72
|
+
}
|