-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.42 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.42 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "bitcoin-ninja",
"version": "0.1.0",
"private": true,
"keywords": [
"bitcoin",
"bitcoin-ninja",
"heapup",
"blockchain",
"elliptic curve",
"nextjs",
"mdx"
],
"scripts": {
"build": "next build",
"build:docs": "content-collections build",
"dev": "next dev",
"format": "prettier -w --ignore-unknown .",
"lint": "next lint",
"start": "next start",
"test": "vitest"
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.2.0",
"@mempool/mempool.js": "^2.3.0",
"@noble/hashes": "^1.8.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/react-visually-hidden": "^1.2.4",
"@tanstack/react-query": "^5.90.12",
"@vercel/analytics": "^1.6.1",
"@xyflow/react": "^12.10.0",
"bech32": "^2.0.0",
"bignumber.js": "^9.3.1",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^6.1.7",
"bs58": "^6.0.0",
"bs58check": "^4.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.19",
"ecpair": "^2.1.0",
"framer-motion": "^11.18.2",
"function-plot": "^1.25.1",
"katex": "^0.16.27",
"lucide-react": "^0.417.0",
"material-icon-theme": "^5.29.0",
"next": "16.1.0",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-number-format": "^5.4.4",
"react-wrap-balancer": "^1.1.1",
"recharts": "^2.15.4",
"sonner": "^1.7.4",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"tiny-secp256k1": "^2.2.4",
"uint8array-tools": "^0.0.9"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@content-collections/cli": "^0.1.8",
"@content-collections/core": "^0.7.3",
"@content-collections/mdx": "^0.1.6",
"@content-collections/next": "^0.2.10",
"@svgr/webpack": "^8.1.0",
"@types/katex": "^0.16.7",
"@types/mdast": "^4.0.4",
"@types/node": "^20.19.27",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.5",
"mdast": "^3.0.0",
"mdast-util-toc": "^7.1.0",
"postcss": "^8.5.6",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-packagejson": "^2.5.20",
"prettier-plugin-tailwindcss": "^0.6.14",
"rehype-autolink-headings": "^7.1.0",
"rehype-katex": "^7.0.1",
"rehype-pretty-code": "^0.13.2",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"shiki": "^1.29.2",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"unist-builder": "^4.0.0",
"unist-util-find-after": "^5.0.0",
"unist-util-find-between-all": "^1.1.3",
"unist-util-visit": "^5.0.0",
"vitest": "^2.1.9"
},
"packageManager": "pnpm@10.4.1",
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"sharp",
"unrs-resolver"
]
}
}