-
-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
141 lines (141 loc) · 3.65 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "frog",
"description": "Framework for Farcaster Frames",
"version": "0.18.3",
"type": "module",
"module": "_lib/index.js",
"types": "_lib/index.d.ts",
"typings": "_lib/index.d.ts",
"bin": {
"frog": "./_lib/cli/index.js"
},
"sideEffects": false,
"exports": {
".": {
"types": "./_lib/index.d.ts",
"bun": "./_lib/index.js",
"edge": "./_lib/edge/index.js",
"edge-light": "./_lib/edge/index.js",
"worker": "./_lib/edge/index.js",
"default": "./_lib/index.js"
},
"./client": {
"types": "./types/client.d.ts"
},
"./dev": {
"types": "./_lib/dev/index.d.ts",
"edge": "./_lib/dev/edge/index.js",
"edge-light": "./_lib/dev/edge/index.js",
"default": "./_lib/dev/index.js"
},
"./edge": {
"types": "./_lib/index.d.ts",
"default": "./_lib/edge/index.js"
},
"./hubs": {
"types": "./_lib/hubs/index.d.ts",
"default": "./_lib/hubs/index.js"
},
"./jsx": {
"types": "./_lib/jsx/index.d.ts",
"default": "./_lib/jsx/index.js"
},
"./jsx/jsx-runtime": {
"types": "./_lib/jsx/jsx-runtime/index.d.ts",
"default": "./_lib/jsx/jsx-runtime/index.js"
},
"./jsx/jsx-dev-runtime": {
"types": "./_lib/jsx/jsx-dev-runtime/index.d.ts",
"default": "./_lib/jsx/jsx-dev-runtime/index.js"
},
"./middlewares": {
"types": "./_lib/middlewares/index.d.ts",
"default": "./_lib/middlewares/index.js"
},
"./next": {
"types": "./_lib/next/index.d.ts",
"default": "./_lib/next/index.js"
},
"./serve-static": {
"types": "./_lib/serve-static/index.d.ts",
"bun": "./_lib/serve-static/bun.js",
"edge": "./_lib/serve-static/noop.js",
"edge-light": "./_lib/serve-static/noop.js",
"worker": "./_lib/serve-static/worker.js",
"default": "./_lib/serve-static/index.js"
},
"./ui": {
"types": "./_lib/ui/index.d.ts",
"default": "./_lib/ui/index.js"
},
"./ui/icons": {
"types": "./_lib/ui/icons/index.d.ts",
"default": "./_lib/ui/icons/index.js"
},
"./ui/icons/heroicons": {
"types": "./_lib/ui/icons/heroicons/index.d.ts",
"default": "./_lib/ui/icons/heroicons/index.js"
},
"./ui/icons/lucide": {
"types": "./_lib/ui/icons/lucide/index.d.ts",
"default": "./_lib/ui/icons/lucide/index.js"
},
"./ui/icons/radix-icons": {
"types": "./_lib/ui/icons/radix-icons/index.d.ts",
"default": "./_lib/ui/icons/radix-icons/index.js"
},
"./web": {
"types": "./_lib/web/index.d.ts",
"default": "./_lib/web/index.js"
}
},
"peerDependencies": {
"hono": "^4.6.13",
"typescript": ">=5.0.4"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"dependencies": {
"@bufbuild/protobuf": "^1.7.2",
"@hono/node-server": "^1.11.2",
"@hono/valibot-validator": "^0.3.0",
"@noble/curves": "^1.3.0",
"@noble/hashes": "^1.3.3",
"cac": "^6.7.14",
"csstype": "^3.1.3",
"detect-browser": "^5.3.0",
"dom-parser": "^1.1.5",
"fast-glob": "3.3.2",
"fs-extra": "^11.2.0",
"hono-og": "0.0.29",
"jose": "^5.2.2",
"lz-string": "^1.5.0",
"path-browserify": "^1.0.1",
"valibot": "^0.31.0",
"viem": "^2.7.10",
"vite": "^5.1.3"
},
"license": "MIT",
"homepage": "https://frog.fm",
"repository": "wevm/frog",
"authors": ["awkweb.eth", "jxom.eth"],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/wevm"
}
],
"keywords": [
"eth",
"ethereum",
"dapps",
"wallet",
"web3",
"farcaster",
"frame",
"frames"
]
}