-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.51 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 3.51 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
125
126
127
128
129
{
"name": "@web3auth/react-native-sdk",
"version": "10.0.0",
"description": "Web3Auth SDK that supports Bare (Standalone) and Expo React Native apps.",
"sideEffects": false,
"main": "dist/lib.cjs/index.js",
"module": "dist/lib.esm/index.js",
"source": "src/index.ts",
"types": "dist/lib.cjs/types/index.d.ts",
"exports": {
".": {
"import": "./dist/lib.esm/index.js",
"require": "./dist/lib.cjs/index.js",
"types": "./dist/lib.cjs/types/index.d.ts"
},
"./metro-config": {
"require": "./src/metro/metro-config.js"
},
"./setup": {
"import": "./src/metro/setup.js",
"require": "./src/metro/setup.js"
},
"./src/metro/shims/url-shim.js": {
"require": "./src/metro/shims/url-shim.js"
}
},
"files": [
"dist",
"src/metro"
],
"scripts": {
"release": "torus-scripts release",
"start": "torus-scripts start",
"build": "torus-scripts build",
"lint:ts": "eslint --fix 'src/**/*.ts'",
"prepack": "npm run build",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web3auth/web3auth-react-native-sdk.git"
},
"author": "Web3Auth",
"license": "ISC",
"bugs": {
"url": "https://github.com/web3auth/web3auth-react-native-sdk/issues"
},
"homepage": "https://github.com/web3auth/web3auth-react-native-sdk#readme",
"keywords": [
"expo",
"react-native",
"torus",
"web3",
"web3auth"
],
"dependencies": {
"@solana/keys": "^2.3.0",
"@solana/signers": "^2.3.0",
"@toruslabs/base-controllers": "^9.10.0",
"@toruslabs/constants": "^16.1.1",
"@toruslabs/ethereum-controllers": "^9.11.0",
"@toruslabs/fetch-node-details": "^16.1.1",
"@toruslabs/http-helpers": "^9.0.0",
"@toruslabs/loglevel-sentry": "^9.0.0",
"@toruslabs/metadata-helpers": "^8.2.0",
"@toruslabs/session-manager": "^5.6.0",
"@toruslabs/torus.js": "^17.2.3",
"@web3auth/auth": "^11.8.2",
"@web3auth/ethereum-provider": "^9.7.0",
"@web3auth/no-modal": "^11.3.0",
"@web3auth/ws-embed": "^6.1.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.1",
"deepmerge": "^4.3.1",
"empty-module": "^0.0.2",
"ethers": "^6.16.0",
"events": "^3.3.0",
"fast-text-encoding": "^1.0.6",
"jwt-decode": "^4.0.0",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.2",
"lodash.unionby": "^4.8.0",
"loglevel": "^1.9.2",
"react-native-url-polyfill": "^2.0.0",
"readable-stream": "^4.5.2",
"urijs": "^1.19.11"
},
"peerDependencies": {
"@babel/runtime": "^7.x",
"react": ">=18",
"react-native": "*",
"react-native-quick-crypto": ">=0.7.0",
"vue": ">=3.x"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
},
"react-native-quick-crypto": {
"optional": true
}
},
"devDependencies": {
"@babel/runtime": "^7.27.6",
"@toruslabs/config": "^3.1.0",
"@toruslabs/eslint-config-typescript": "4.1.4",
"@toruslabs/torus-scripts": "^7.1.6",
"@types/lodash.clonedeep": "^4.5.9",
"@types/lodash.merge": "^4.6.9",
"@types/lodash.unionby": "^4.8.9",
"@types/node": "^22",
"@types/react": "^19.1.10",
"@types/react-native": "^0.73.0",
"@types/urijs": "^1.19.25",
"eslint": "^9.29.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.1",
"react": "^19.1.1",
"react-native": "~0.80.0",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"vue": "^3.x"
},
"engines": {
"node": ">=22.x",
"npm": ">=10.x"
}
}