-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.56 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
{
"name": "zustand-mmkv-storage",
"version": "2.0.0",
"description": "Fast MMKV storage adapter for Zustand persist middleware in React Native",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"build": "tsc && rollup -c",
"prepublishOnly": "npm run test && npm run build"
},
"keywords": [
"zustand",
"mmkv",
"react-native",
"persist",
"storage",
"zustand-persist",
"react-native-storage",
"persistent-storage",
"offline-storage",
"android",
"ios",
"fast-storage",
"mmkv-storage"
],
"license": "MIT",
"author": "Mehdi Faraji <mahdifarajideveloper@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/1mehdifaraji/zustand-mmkv-storage.git"
},
"homepage": "https://github.com/1mehdifaraji/zustand-mmkv-storage#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"@vitest/ui": "^4.0.16",
"jest": "^30.2.0",
"jsdom": "^27.4.0",
"rollup": "^4.54.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"peerDependencies": {
"react-native-mmkv": "^4.0.0",
"zustand": "^5.0.0",
"react-native-nitro-modules": "*"
},
"dependencies": {
"tslib": "^2.8.1"
}
}