-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.88 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@tkey/react-native-storage",
"version": "12.0.0",
"description": "TKey React Native Storage Module",
"author": "Torus Labs",
"homepage": "https://github.com/tkey/tkey-react-native-storage-module#readme",
"license": "MIT",
"main": "dist/reactNativeStorage.cjs.js",
"module": "dist/reactNativeStorage.esm.js",
"unpkg": "dist/reactNativeStorage.umd.min.js",
"jsdelivr": "dist/reactNativeStorage.umd.min.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"src"
],
"keywords": [
"expo",
"react-native",
"torus",
"openlogin",
"web3auth"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tkey/tkey-react-native-storage-module.git"
},
"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"
},
"bugs": {
"url": "https://github.com/tkey/tkey-react-native-storage-module/issues"
},
"peerDependencies": {
"@babel/runtime": "^7.x",
"react-native": "*",
"@tkey/core": "^12.x"
},
"dependencies": {
"@tkey/common-types": "^12.0.0"
},
"devDependencies": {
"@babel/runtime": "^7.23.8",
"@toruslabs/eslint-config-typescript": "3.0.3",
"@toruslabs/torus-scripts": "^5.1.0",
"@types/node": "^20",
"@types/react-native": "^0.72.8",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.2.2",
"react-native": "~0.73.2",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"lint-staged": {
"!(*d).ts": [
"yarn run lint --",
"prettier --write 'src/**/*.ts'"
]
},
"engines": {
"node": ">=18.x",
"npm": ">=9.x"
},
"gitHead": "9967ce9f795f495f28ef0da1fc50acde31dcc258"
}