-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathpackage.json
83 lines (83 loc) · 2.09 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
{
"name": "@frames.js/debugger",
"description": "Debug your Frames.js applications",
"keywords": [
"frames.js",
"farcaster"
],
"version": "0.1.11",
"bin": {
"frames": "./bin/debugger.js"
},
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/framesjs/frames.js/tree/main/packages/debugger"
},
"dependencies": {
"@farcaster/core": "^0.14.7",
"@frames.js/render": "^0.0.2",
"@noble/ed25519": "^2.0.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-hover-card": "^1.0.7",
"@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",
"@rainbow-me/rainbowkit": "^2.0.2",
"@reservoir0x/reservoir-sdk": "^2.0.11",
"@tanstack/react-query": "^5.22.2",
"@types/node": "^18.17.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/yargs": "^17.0.32",
"@xmtp/frames-validator": "^0.5.2",
"autoprefixer": "^10.0.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"frames.js": "^0.11.0",
"is-port-reachable": "^4.0.0",
"lucide-react": "^0.344.0",
"next": "^14.1.3",
"open": "^10.0.3",
"postcss": "^8",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^3.3.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.3.3",
"viem": "^2.7.12",
"wagmi": "^2.5.7",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=18.17.0"
},
"devDependencies": {
"rimraf": "^5.0.5"
},
"engineStrict": true,
"scripts": {
"dev": "next dev -p 3010",
"build": "rimraf .next && next build",
"start": "next start",
"lint": "next lint",
"prepublishOnly": "npm run build"
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
},
"eslintConfig": {
"root": true,
"extends": "next"
}
}