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
92 lines (92 loc) · 2.62 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.62 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
{
"name": "phantom-embedded-react-native-starter",
"version": "1.0.0",
"description": "Expo starter for Phantom's embedded wallet on Solana. Google or Apple OAuth, no extension needed.",
"displayName": "Phantom Embedded React Native Starter",
"usecase": "Mobile",
"keywords": [
"solana",
"phantom",
"wallet",
"embedded-wallet",
"react-native",
"expo",
"mobile",
"typescript",
"oauth",
"authentication"
],
"author": "Phantom",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/phantom/phantom-embedded-react-native-starter"
},
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"prebuild": "expo prebuild"
},
"create-solana-dapp": {
"instructions": [
"Your Phantom Embedded React Native starter is ready!",
"",
"Next steps:",
"+1. Copy .env.example to .env and add your Phantom App ID",
"+2. Get your App ID at https://phantom.com/portal",
"+3. Read the docs at https://docs.phantom.com/sdks/react-native-sdk",
"",
"Start developing:",
"+{pm} start",
"",
"Important: This template requires a development build and will not work with Expo Go.",
"+{pm} run android # or {pm} run ios",
"",
"Learn more:",
"- React Native SDK Docs: https://docs.phantom.com/sdks/react-native-sdk",
"- Expo Development Builds: https://docs.expo.dev/develop/development-builds/introduction/",
"- Get Support: https://discord.gg/phantom"
],
"rename": {
"phantom-embedded-react-native-starter": {
"to": "{{name}}",
"paths": [
"app",
"components",
"lib",
"package.json",
"README.md",
"app.json"
]
}
}
},
"dependencies": {
"@babel/runtime": "^7.28.4",
"@expo/vector-icons": "^15.0.3",
"@phantom/react-native-sdk": "1.0.7",
"@solana/web3.js": "^1.95.0",
"expo": "~54.0.0",
"expo-auth-session": "~7.0.9",
"expo-clipboard": "~8.0.7",
"expo-router": "~6.0.15",
"expo-secure-store": "~15.0.7",
"expo-web-browser": "~15.0.9",
"react": "19.1.0",
"react-native": "0.81.5",
"react-native-get-random-values": "~1.11.0",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-svg": "15.12.1"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/node": "^24.10.0",
"@types/react": "~19.0.14",
"typescript": "~5.8.3"
},
"packageManager": "pnpm@10.20.0"
}