-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.54 KB
/
package.json
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
{
"name": "@solana-mobile/mobile-wallet-adapter-expo-bottom-sheet",
"version": "0.2.0",
"description": "Config plugin to add a Mobile Wallet Adapter bottom sheet Activity to an Expo app",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build",
"plugin/build",
"app.plugin.js",
"README.md",
"inject"
],
"scripts": {
"build": "expo-module build",
"build:plugin": "npx tsc --build ./plugin",
"build:src": "npx tsc --build ./",
"build:all": "npm run build:plugin && npm run build:src",
"clean": "expo-module clean",
"expo-module": "expo-module"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solana-mobile/mobile-wallet-adapter-expo-bottom-sheet.git"
},
"author": {
"name": "Michael Sulistio",
"url": "https://github.com/michaelsulistio"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/solana-mobile/mobile-wallet-adapter-expo-bottom-sheet/issues"
},
"homepage": "https://github.com/solana-mobile/mobile-wallet-adapter-expo-bottom-sheet#readme",
"keywords": [
"react-native",
"expo",
"expo-config-plugin"
],
"devDependencies": {
"@tsconfig/node14": "^14.1.0",
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.42",
"copyfiles": "^2.4.1",
"expo-module-scripts": "^3.1.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
},
"sideEffects": false,
"dependencies": {
"expo-dev-client": "~3.3.8"
}
}