@botanary/agent 0.1.0-alpha.3 → 0.1.0-alpha.4
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 +13 -15
package/package.json
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@botanary/agent",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.4",
|
|
4
4
|
"description": "Botanary agent session and execution runtime with an injected signer",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=22"
|
|
9
9
|
},
|
|
10
|
-
"packageManager": "pnpm@11.5.1",
|
|
11
10
|
"sideEffects": false,
|
|
12
11
|
"files": [
|
|
13
12
|
"dist",
|
|
@@ -24,18 +23,6 @@
|
|
|
24
23
|
"types": "./dist/generated/schema.d.ts"
|
|
25
24
|
}
|
|
26
25
|
},
|
|
27
|
-
"scripts": {
|
|
28
|
-
"generate": "node scripts/generate.mjs",
|
|
29
|
-
"check:generated": "node scripts/generate.mjs --check",
|
|
30
|
-
"check:inventory": "node ../protected-boundary/check-inventory.mjs agent",
|
|
31
|
-
"typecheck": "tsc --noEmit",
|
|
32
|
-
"build": "node ../protected-boundary/release-build.mjs agent",
|
|
33
|
-
"build:tsc": "tsc",
|
|
34
|
-
"audit:artifact": "node ../protected-boundary/audit-artifact.mjs agent",
|
|
35
|
-
"test": "vitest run",
|
|
36
|
-
"prepack": "pnpm check:generated && pnpm typecheck && pnpm build",
|
|
37
|
-
"test:packed": "node scripts/verify-packed.mjs"
|
|
38
|
-
},
|
|
39
26
|
"dependencies": {
|
|
40
27
|
"openapi-fetch": "0.17.0",
|
|
41
28
|
"viem": "2.54.6"
|
|
@@ -50,5 +37,16 @@
|
|
|
50
37
|
},
|
|
51
38
|
"publishConfig": {
|
|
52
39
|
"access": "public"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"generate": "node scripts/generate.mjs",
|
|
43
|
+
"check:generated": "node scripts/generate.mjs --check",
|
|
44
|
+
"check:inventory": "node ../protected-boundary/check-inventory.mjs agent",
|
|
45
|
+
"typecheck": "tsc --noEmit",
|
|
46
|
+
"build": "node ../protected-boundary/release-build.mjs agent",
|
|
47
|
+
"build:tsc": "tsc",
|
|
48
|
+
"audit:artifact": "node ../protected-boundary/audit-artifact.mjs agent",
|
|
49
|
+
"test": "vitest run",
|
|
50
|
+
"test:packed": "node scripts/verify-packed.mjs"
|
|
53
51
|
}
|
|
54
|
-
}
|
|
52
|
+
}
|