This repository was archived by the owner on Dec 25, 2023. It is now read-only.
forked from Web3Auth/web3auth-react-native-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.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
{
"name": "@web3auth/react-native-sdk",
"version": "3.2.1",
"description": "Web3Auth SDK that supports Bare (Standalone) and Expo React Native apps.",
"main": "dist/reactNativeSdk.cjs.js",
"module": "dist/reactNativeSdk.esm.js",
"source": "src/index.ts",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"src"
],
"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 install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web3auth/web3auth-react-native-sdk.git"
},
"author": "michaellee8",
"license": "MIT",
"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",
"openlogin",
"web3auth"
],
"dependencies": {
"base64url": "^3.0.1",
"buffer": "^6.0.3",
"loglevel": "^1.8.0",
"react-native-url-polyfill": "^1.3.0"
},
"peerDependencies": {
"react-native": "*",
"@babel/runtime": "^7.x"
},
"devDependencies": {
"react-native": "~0.68.2",
"@babel/runtime": "^7.19.0",
"@toruslabs/openlogin": "^2.6.1",
"@toruslabs/torus-scripts": "^1.2.2",
"@toruslabs/eslint-config-typescript": "1.1.2",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@types/node": "^16",
"@types/react-native": "^0.69.3",
"eslint": "^8.25.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
}
}