-
-
Notifications
You must be signed in to change notification settings - Fork 114
/
package.json
75 lines (75 loc) · 2.16 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": "react-native-mmkv-storage",
"version": "0.11.2",
"description": "This library aims to provide a fast & reliable solution for you data storage needs in react-native apps. It uses [MMKV](https://github.com/Tencent/MMKV) by Tencent under the hood on Android and iOS both that is used by their WeChat app(more than 1 Billion users). Unlike other storage solutions for React Native, this library lets you store any kind of data type, in any number of database instances, with or without encryption in a very fast and efficient way.",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"watch": "tsc --watch"
},
"bin": {
"mmkv-link": "./autolink/postlink/run.js"
},
"keywords": [
"react-native",
"fast-storage",
"react",
"native",
"asyncstorage",
"async-storage",
"mmkv-database",
"mmkv-storage",
"encrypted-storage",
"encryption",
"mmkv",
"android",
"ios",
"key-value-storage",
"database",
"fast",
"storage",
"persist-storage",
"secure-storage",
"redux-persist-storage",
"react-native-mmkv-storage"
],
"repository": {
"type": "git",
"url": "https://github.com/ammarahm-ed/react-native-mmkv-storage"
},
"author": "Ammar Ahmed for @ammarahm-ed",
"license": "MIT",
"peerDependencies": {
"react-native": "*"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@types/react": "18.3.1",
"@types/react-native": "0.73.0",
"babel-jest": "^29.6.3",
"babel-plugin-module-resolver": "^5.0.0",
"jest": "^29.2.1",
"metro": "0.76.1",
"metro-react-native-babel-preset": "0.76.1",
"react": "18.3.1",
"react-native": "0.76.1",
"typescript": "^5.1.6",
"eslint": "^8.57.1",
"@react-native-community/eslint-config": "^3.2.0"
},
"codegenConfig": {
"name": "MMKVStorageSpec",
"type": "modules",
"jsSrcsDir": "./",
"outputDir": {
"ios": "ios/generated",
"android": "android/generated"
},
"android": {
"javaPackageName": "com.ammarahmed.mmkv"
},
"includesGeneratedCode": true
}
}