zk-agent-cli 0.1.0-beta.1

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.
Files changed (3) hide show
  1. package/README.md +175 -0
  2. package/dist/index.js +18777 -0
  3. package/package.json +69 -0
package/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "zk-agent-cli",
3
+ "version": "0.1.0-beta.1",
4
+ "description": "Local-first zkSync Era and ZK Stack agent CLI with wallet session recovery, workflow orchestration, relay-backed approval, and SED smart-account support.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "homepage": "https://github.com/AgiWeb3/zk-agent-cli/tree/main/packages/zk-agent-cli",
8
+ "bugs": {
9
+ "url": "https://github.com/AgiWeb3/zk-agent-cli/issues"
10
+ },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/AgiWeb3/zk-agent-cli.git",
14
+ "directory": "packages/zk-agent-cli"
15
+ },
16
+ "keywords": [
17
+ "zksync",
18
+ "zksync-era",
19
+ "aa",
20
+ "account-abstraction",
21
+ "agent",
22
+ "cli",
23
+ "wallet",
24
+ "workflow"
25
+ ],
26
+ "bin": {
27
+ "zk-agent": "dist/index.js",
28
+ "zksync-agent": "dist/index.js"
29
+ },
30
+ "files": [
31
+ "dist",
32
+ "README.md"
33
+ ],
34
+ "publishConfig": {
35
+ "access": "public",
36
+ "tag": "beta"
37
+ },
38
+ "scripts": {
39
+ "build": "node scripts/build.mjs",
40
+ "pack:check": "node scripts/release-check.mjs",
41
+ "release:check": "pnpm run build && pnpm run typecheck && pnpm run pack:check",
42
+ "prepublishOnly": "pnpm run release:check",
43
+ "smoke:discovery": "node --import tsx ./src/smoke-discovery.ts",
44
+ "smoke:remote-approval": "node --import tsx ./src/smoke-remote-approval.ts",
45
+ "typecheck": "tsc --noEmit",
46
+ "test": "pnpm --filter @zk-agent/agent-core build && pnpm run build && node --import ../../scripts/ensure-test-storage-isolation.mjs --import tsx --test ./tests/*.test.mjs ./tests/*.test.ts"
47
+ },
48
+ "engines": {
49
+ "node": ">=24"
50
+ },
51
+ "dependencies": {
52
+ "@noble/ciphers": "^1.2.1",
53
+ "@noble/curves": "^1.8.1",
54
+ "@noble/hashes": "^1.7.2",
55
+ "commander": "^15.0.0",
56
+ "dotenv": "^17.4.2",
57
+ "ethers": "^6.16.0",
58
+ "zksync-ethers": "^6.21.2"
59
+ },
60
+ "devDependencies": {
61
+ "@zk-agent/account-profiles": "workspace:*",
62
+ "@zk-agent/agent-core": "workspace:*",
63
+ "@zk-agent/agent-session-protocol": "workspace:*",
64
+ "@zk-agent/plugin-identity": "workspace:*",
65
+ "@zk-agent/provider-zksync-defi": "workspace:*",
66
+ "@zk-agent/provider-zksync-wallet": "workspace:*",
67
+ "esbuild": "^0.28.0"
68
+ }
69
+ }