-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.18 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
{
"name": "charon",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate-wallets": "node --experimental-transform-types --no-warnings scripts/generate-wallets.mts",
"fund-gateway": "node --experimental-transform-types --no-warnings --env-file=.env.local scripts/fund-gateway.mts",
"settle-smoke": "node --experimental-transform-types --no-warnings --env-file=.env.local scripts/settle-smoke.mts",
"seed": "node --experimental-transform-types --no-warnings --env-file=.env.local scripts/seed.mts",
"wipe": "node --experimental-transform-types --no-warnings --env-file=.env.local scripts/wipe.mts",
"clear-earnings": "node --experimental-transform-types --no-warnings --env-file=.env.local scripts/clear-earnings.mts",
"import-asterion": "node --experimental-transform-types --no-warnings --env-file=.env.local scripts/import-asterion.mts",
"demo-pricing": "node --experimental-transform-types --no-warnings --env-file=.env.local scripts/demo-pricing.mts"
},
"dependencies": {
"@circle-fin/developer-controlled-wallets": "^10.7.1",
"@circle-fin/x402-batching": "^3.0.4",
"@supabase/ssr": "^0.12.0",
"@supabase/supabase-js": "^2.99.0",
"@tiptap/extension-link": "^3.27.1",
"@tiptap/extension-placeholder": "^3.27.1",
"@tiptap/extension-text-align": "^3.27.1",
"@tiptap/extension-underline": "^3.27.1",
"@tiptap/pm": "^3.27.1",
"@tiptap/react": "^3.27.1",
"@tiptap/starter-kit": "^3.27.1",
"@x402/core": "^2.11.0",
"@x402/evm": "^2.11.0",
"clsx": "^2.1.1",
"grammy": "^1.44.0",
"isomorphic-dompurify": "^3.18.0",
"lucide-react": "^0.577.0",
"mammoth": "^1.12.0",
"next": "^16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"resend": "^6.14.0",
"sharp": "^0.35.2",
"tailwind-merge": "^3.5.0",
"viem": "^2.48.11"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "^25.4.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.1",
"tsx": "^4.22.4",
"typescript": "^5.9.3"
}
}