-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.8 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.8 KB
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
{
"name": "@frames.js/debugger",
"description": "Debug your Frames.js applications",
"keywords": [
"frames.js",
"farcaster"
],
"version": "0.4.4",
"bin": {
"frames": "./bin/debugger.js"
},
"type": "module",
"license": "MIT",
"repository": "framesjs/frames.js",
"dependencies": {
"@farcaster/auth-kit": "^0.6.0",
"@upstash/redis": "^1.34.3",
"@lens-protocol/client": "^0.0.0-canary-20250224081220",
"@farcaster/frame-sdk": "^0.0.26",
"@xmtp/xmtp-js": "^12.0.0",
"is-port-reachable": "^4.0.0",
"next": "14.1.4",
"open": "^10.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod": "^3.24.1",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=18.17.0"
},
"optionalDependencies": {
"better-sqlite3": "^11.7.0"
},
"devDependencies": {
"@farcaster/core": "^0.15.6",
"@frames.js/render": "^0.5.5",
"@primer/octicons-react": "^19.9.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-toggle": "^1.0.3",
"@radix-ui/react-toggle-group": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@rainbow-me/rainbowkit": "^2.1.2",
"@reservoir0x/reservoir-sdk": "^2.0.11",
"@tanstack/react-query": "^5.62.7",
"@types/node": "^18.17.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/better-sqlite3": "^7.6.12",
"@types/yargs": "^17.0.32",
"@xmtp/frames-client": "^0.5.3",
"@xmtp/frames-validator": "^0.6.2",
"autoprefixer": "^10.0.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^0.2.1",
"console-feed": "^3.6.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"frames.js": "^0.21.3",
"lucide-react": "^0.408.0",
"postcss": "^8",
"qrcode.react": "^3.1.0",
"react-json-tree": "^0.19.0",
"rimraf": "^5.0.5",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^3.3.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.4.5",
"use-debounce": "^10.0.1",
"viem": "^2.13.7",
"wagmi": "^2.9.10"
},
"engineStrict": true,
"scripts": {
"dev": "next dev -p 3010",
"dev:monorepo": "next dev -p 3010",
"build": "rimraf .next && next build",
"start": "next start",
"lint": "next lint",
"check:types": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
},
"eslintConfig": {
"root": true,
"extends": "next"
}
}