@zeroxyz/cli 0.0.42 → 0.0.44

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 (2) hide show
  1. package/dist/index.js +144067 -4163
  2. package/package.json +12 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeroxyz/cli",
3
- "version": "0.0.42",
3
+ "version": "0.0.44",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "zero": "dist/index.js",
@@ -15,7 +15,7 @@
15
15
  "access": "public"
16
16
  },
17
17
  "scripts": {
18
- "build": "tsup src/index.ts --format esm --out-dir dist --clean",
18
+ "build": "tsup",
19
19
  "build:binary": "tsup --config tsup.binary.ts && cp -r skills hooks dist/pkg/ && pnpm exec pkg dist/pkg/index.cjs --config pkg.json --targets node24-macos-arm64,node24-macos-x64,node24-linux-x64,node24-linux-arm64 --output dist/bin/zero",
20
20
  "prepublishOnly": "pnpm run build",
21
21
  "dev": "ZERO_ENV=development tsx src/index.ts",
@@ -26,29 +26,28 @@
26
26
  "test": "pnpm run test:unit && pnpm run test:integration",
27
27
  "typecheck": "tsc"
28
28
  },
29
- "dependencies": {
29
+ "dependencies": {},
30
+ "devDependencies": {
30
31
  "@clack/prompts": "^0.11.0",
32
+ "@hono/node-server": "^1.19.13",
31
33
  "@relayprotocol/relay-sdk": "^5.2.1",
34
+ "@types/node": "^25.0.7",
32
35
  "@x402/core": "^2.9.0",
33
36
  "@x402/evm": "^2.9.0",
34
37
  "@x402/extensions": "^2.9.0",
35
38
  "@x402/fetch": "^2.9.0",
39
+ "@x402/hono": "^2.9.0",
40
+ "@yao-pkg/pkg": "^6.15.0",
36
41
  "commander": "^13.0.0",
42
+ "hono": "^4.12.12",
37
43
  "mppx": "^0.6.9",
38
44
  "open": "^11.0.0",
39
45
  "posthog-node": "^5.29.2",
40
- "viem": "^2.47.10",
41
- "zod": "^4.3.5"
42
- },
43
- "devDependencies": {
44
- "@hono/node-server": "^1.19.13",
45
- "@types/node": "^25.0.7",
46
- "@x402/hono": "^2.9.0",
47
- "@yao-pkg/pkg": "^6.15.0",
48
- "hono": "^4.12.12",
49
46
  "tsup": "^8.5.1",
50
47
  "tsx": "^4.21.0",
51
48
  "typescript": "^5.9.3",
52
- "vitest": "^4.0.17"
49
+ "viem": "^2.47.10",
50
+ "vitest": "^4.0.17",
51
+ "zod": "^4.3.5"
53
52
  }
54
53
  }