-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.2 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
{
"name": "friendlyminter",
"version": "0.1.0",
"private": true,
"description": "Compressed-NFT (cNFT) minting platform for Solana — bulk upload, live cost estimation, and job-queue minting wrapped in a wallet-first dark UI.",
"author": {
"name": "Piyush (@404Piyush)",
"url": "https://github.com/404Piyush"
},
"license": "MIT",
"keywords": [
"solana",
"cnft",
"compressed-nft",
"minting",
"bubblegum",
"metaplex",
"merkle-tree",
"nextjs",
"react",
"typescript",
"web3"
],
"homepage": "https://friendlyminter.vercel.app",
"repository": {
"type": "git",
"url": "https://github.com/404Piyush/FriendlyMinter.git"
},
"bugs": {
"url": "https://github.com/404Piyush/FriendlyMinter/issues"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@metaplex-foundation/mpl-bubblegum": "^4.4.0",
"@metaplex-foundation/umi": "^0.9.2",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.2",
"@metaplex-foundation/umi-web3js-adapters": "^0.9.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-label": "^2.1.11",
"@radix-ui/react-progress": "^1.1.12",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@solana/wallet-adapter-base": "^0.9.27",
"@solana/wallet-adapter-phantom": "^0.9.29",
"@solana/wallet-adapter-react": "^0.15.39",
"@solana/wallet-adapter-react-ui": "^0.9.39",
"@solana/wallet-adapter-solflare": "^0.6.33",
"@solana/web3.js": "^1.98.2",
"bs58": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.525.0",
"next": "^16.2.10",
"react": "19.1.0",
"react-dom": "19.1.0",
"sonner": "^2.0.6",
"tailwind-merge": "^3.3.1",
"zod": "^4.0.10"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^16.2.10",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.6",
"typescript": "^5"
},
"engines": {
"node": ">=20"
}
}