hybrid 1.0.3 → 1.0.5

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 CHANGED
@@ -1,53 +1,58 @@
1
1
  {
2
- "name": "hybrid",
3
- "version": "1.0.3",
4
- "type": "module",
5
- "bin": {
6
- "hybrid": "./dist/src/cli.js",
7
- "hy": "./dist/src/cli.js"
8
- },
9
- "exports": {
10
- ".": {
11
- "import": "./dist/src/index.js",
12
- "types": "./dist/src/index.d.ts"
13
- },
14
- "./ponder": {
15
- "import": "./dist/src/ponder/index.js",
16
- "types": "./dist/src/ponder/index.d.ts"
17
- }
18
- },
19
- "dependencies": {
20
- "@coinbase/agentkit": "^0.6.2",
21
- "@coinbase/agentkit-vercel-ai-sdk": "^0.1.0",
22
- "@coinbase/coinbase-sdk": "^0.22.0",
23
- "@hono/node-server": "^1.13.5",
24
- "@upstash/qstash": "2.7.22",
25
- "ai": "^5.0.28",
26
- "eta": "^3.5.0",
27
- "hono": "4.9.2",
28
- "jsonwebtoken": "^9.0.2",
29
- "tsx": "^4.19.2",
30
- "uint8arrays": "^5.1.0",
31
- "viem": "^2.33.3",
32
- "wagmi": "^2.15.6",
33
- "zod": "4.0.17",
34
- "@hybrd/xmtp": "1.0.3",
35
- "@hybrd/utils": "1.0.3"
36
- },
37
- "devDependencies": {
38
- "@types/jsonwebtoken": "^9.0.7",
39
- "@types/node": "22.8.6",
40
- "vitest": "^3.2.4",
41
- "@hybrd/tsconfig": "0.0.0",
42
- "@hybrd/biome": "0.0.0"
43
- },
44
- "scripts": {
45
- "build": "tsc && pnpm run post-build",
46
- "post-build": "cp -r templates dist/",
47
- "clean": "rm -rf .turbo dist",
48
- "typecheck": "tsc --noEmit",
49
- "lint": "biome lint --unsafe",
50
- "lint:fix": "biome lint --write --unsafe",
51
- "format": "biome format --write"
52
- }
53
- }
2
+ "name": "hybrid",
3
+ "version": "1.0.5",
4
+ "type": "module",
5
+ "bin": {
6
+ "hybrid": "./dist/src/cli.js",
7
+ "hy": "./dist/src/cli.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "templates",
12
+ "src"
13
+ ],
14
+ "exports": {
15
+ ".": {
16
+ "import": "./dist/src/index.js",
17
+ "types": "./dist/src/index.d.ts"
18
+ },
19
+ "./ponder": {
20
+ "import": "./dist/src/ponder/index.js",
21
+ "types": "./dist/src/ponder/index.d.ts"
22
+ }
23
+ },
24
+ "scripts": {
25
+ "build": "tsc && pnpm run post-build",
26
+ "post-build": "cp -r templates dist/ && cp templates/.gitignore dist/templates/.gitignore",
27
+ "clean": "rm -rf .turbo dist",
28
+ "typecheck": "tsc --noEmit",
29
+ "lint": "biome lint --unsafe",
30
+ "lint:fix": "biome lint --write --unsafe",
31
+ "format": "biome format --write"
32
+ },
33
+ "dependencies": {
34
+ "@coinbase/agentkit": "^0.6.2",
35
+ "@coinbase/agentkit-vercel-ai-sdk": "^0.1.0",
36
+ "@coinbase/coinbase-sdk": "^0.22.0",
37
+ "@hono/node-server": "^1.13.5",
38
+ "@hybrd/utils": "workspace:*",
39
+ "@hybrd/xmtp": "workspace:*",
40
+ "@upstash/qstash": "2.7.22",
41
+ "ai": "^5.0.28",
42
+ "eta": "^3.5.0",
43
+ "hono": "catalog:stack",
44
+ "jsonwebtoken": "^9.0.2",
45
+ "tsx": "^4.19.2",
46
+ "uint8arrays": "^5.1.0",
47
+ "viem": "^2.33.3",
48
+ "wagmi": "^2.15.6",
49
+ "zod": "catalog:stack"
50
+ },
51
+ "devDependencies": {
52
+ "@hybrd/biome": "workspace:*",
53
+ "@hybrd/tsconfig": "workspace:*",
54
+ "@types/jsonwebtoken": "^9.0.7",
55
+ "@types/node": "catalog:stack",
56
+ "vitest": "^3.2.4"
57
+ }
58
+ }