-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.01 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
120
121
122
123
124
{
"name": "giwa-react-native-wallet",
"version": "0.3.1",
"description": "GIWA Chain SDK for React Native - Expo and React Native CLI compatible",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src --ext .ts,.tsx",
"type-check": "tsc --noEmit && tsc -p tsconfig.test.json",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rm -rf dist",
"verify:live": "tsx scripts/verify-live.ts",
"prepublishOnly": "npm run build",
"android": "expo run:android",
"ios": "expo run:ios"
},
"keywords": [
"giwa",
"ethereum",
"l2",
"react-native",
"expo",
"wallet",
"blockchain",
"web3"
],
"author": "Youngmin Lee <miniyoung37@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dev-eyoungmin/giwa-react-native-wallet"
},
"dependencies": {
"@scure/bip39": "^1.3.0",
"viem": "^2.21.0"
},
"peerDependencies": {
"expo": ">=53.0.0",
"expo-constants": ">=16.0.0",
"expo-local-authentication": ">=14.0.0",
"expo-secure-store": ">=15.0.0",
"react": ">=19.0.0",
"react-native": ">=0.77.0",
"react-native-get-random-values": ">=1.11.0",
"react-native-keychain": ">=9.2.0"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
},
"expo-secure-store": {
"optional": true
},
"expo-local-authentication": {
"optional": true
},
"expo-constants": {
"optional": true
},
"react-native-keychain": {
"optional": true
}
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.3",
"@types/react": "~19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.56.0",
"jsdom": "^30.0.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-native": "^0.77.0",
"react-native-get-random-values": "^1.11.0",
"react-native-keychain": "^10.0.0",
"tsup": "^8.0.0",
"tsx": "^4.23.12",
"typescript": "^5.3.0",
"vitest": "^3.2.7"
},
"engines": {
"node": ">=18.0.0"
},
"pnpm": {
"overrides": {
"minimatch@3": "^3.1.5",
"minimatch@9": "^9.0.7",
"picomatch@2": "^2.3.2",
"picomatch@4": "^4.0.4",
"brace-expansion@1": "^1.1.18",
"brace-expansion@2": "^2.0.3",
"rollup": "^4.59.0",
"flatted": "^3.4.2",
"node-forge": "^1.4.0",
"ajv@6": "^6.14.0",
"ws@6": "^6.2.4",
"ws@7": "^7.5.11",
"ws@8": "^8.21.0",
"shell-quote": "^1.9.0",
"tmp": "^0.2.6",
"js-yaml@3": "^3.15.1",
"js-yaml@4": "^4.3.1",
"browserslist": "^4.28.7",
"@babel/core": "^7.29.6"
}
}
}