forked from open-fractal/flur
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.75 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.75 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
{
"name": "flur",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"pretest": "npx scrypt-cli compile",
"build:contract": "npx scrypt-cli compile",
"deploy:contract": "npx tsx ./scripts/deploy.ts",
"verify:contract": "npx scrypt-cli verify $(cat .scriptHash) ./src/contracts/cat20Minter.ts",
"genprivkey": "npx tsx ./scripts/privateKey.ts"
},
"dependencies": {
"@ai-sdk/openai": "^0.0.61",
"@bitcoin-js/tiny-secp256k1-asmjs": "^2.2.3",
"@cat-protocol/cat-smartcontracts": "^0.1.2",
"@cmdcode/tapscript": "^1.4.6",
"@hookform/resolvers": "^3.9.0",
"@noble/secp256k1": "^2.1.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-hover-card": "^1.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.0",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slider": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-tooltip": "^1.1.2",
"@scure/btc-signer": "^1.3.2",
"@tanstack/react-table": "^8.20.5",
"@vercel/analytics": "^1.3.1",
"@vercel/flags": "^2.6.0",
"ai": "^3.4.0",
"autoprefixer": "^10.4.20",
"axios": "^1.7.7",
"bitcoinjs-lib": "^7.0.0-rc.0",
"bitcore-lib-inquisition": "^10.3.0",
"bsv": "^2.0.10",
"cbor": "^9.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"decimal.js": "^10.4.3",
"ecurve": "^1.0.6",
"js-sha256": "^0.11.0",
"lightweight-charts": "^4.2.0",
"lucide-react": "^0.441.0",
"next": "^14.2.11",
"next-themes": "^0.3.0",
"nextra": "^2.13.4",
"nextra-theme-docs": "^2.13.4",
"openai": "^4.63.0",
"prettier": "1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-table": "^7.8.0",
"resize-observer-polyfill": "^1.5.1",
"scrypt-ts": "^1.4.0",
"scrypt-ts-lib-btc": "^0.1.0",
"scryptlib": "^2.2.1",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"varuint-bitcoin": "^2.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "14.2.10",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}