forked from solana-foundation/templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.47 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.47 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
{
"name": "phantom-embedded-react",
"displayName": "Phantom Embedded Wallet",
"version": "1.0.0",
"description": "Next.js template with Phantom Embedded Wallet SDK for seamless Web3 authentication",
"usecase": "Starter",
"keywords": [
"solana",
"phantom",
"embedded-wallet",
"nextjs",
"react",
"typescript",
"tailwind",
"web3",
"authentication"
],
"create-solana-dapp": {
"instructions": [
"Install dependencies:",
"+{pm} install",
"",
"Copy the environment file and configure your Phantom App ID:",
"+cp .env.example .env.local",
"",
"Get your Phantom App ID from https://phantom.com/portal",
"",
"Start the development server:",
"+{pm} dev"
]
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@phantom/browser-sdk": "1.0.7",
"@phantom/react-sdk": "1.0.7",
"@solana/web3.js": "^1.95.0",
"@tailwindcss/postcss": "^4.1.17",
"lucide-react": "^0.553.0",
"next": "16.1.5",
"postcss": "^8.5.6",
"react": "19.2.1",
"react-dom": "19.2.1"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.1",
"eslint-config-next": "16.0.7",
"tailwindcss": "^4.0.0",
"typescript": "^5.9.3"
},
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.20.0"
}