-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.69 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
{
"name": "mst-persistent-store",
"version": "3.1.1",
"description": "Mobx State Tree Persistant Store Provider Component and Consumer Hook writen in TypeScript",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"package.json",
"LICENSE"
],
"repository": "https://github.com/kuasha420/mst-persistent-store",
"keywords": [
"mst-persist",
"mobx-state-tree-hook",
"mst-provider",
"mst-hook",
"mst-react-native",
"mobx-state-tree"
],
"author": "Arafat Zahan",
"license": "MIT",
"peerDependencies": {
"@react-native-async-storage/async-storage": ">=1.20",
"localforage": ">=1.10",
"mobx-state-tree": ">=5",
"react": ">=18.2"
},
"peerDependenciesMeta": {
"@react-native-async-storage/async-storage": {
"optional": true
},
"localforage": {
"optional": true
}
},
"scripts": {
"lint": "eslint",
"prepare": "rm -rf ./dist/* && tsc -p tsconfig.build.json",
"test": "vitest",
"type-check": "tsc"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@eslint/js": "^9.11.1",
"@react-native-async-storage/async-storage": "2.0.0",
"@types/node": "22.7.5",
"@types/react": "18.3.11",
"eslint": "^9.11.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"localforage": "1.10.0",
"mobx": "6.13.3",
"mobx-state-tree": "6.0.1",
"prettier": "3.3.3",
"react": "18.3.1",
"typescript": "5.6.3",
"typescript-eslint": "^8.7.0",
"vitest": "2.1.3"
},
"dependencies": {
"@hyperjump/json-pointer": "1.1.0",
"mobx-devtools-mst": "0.9.30",
"use-async-effect": "2.2.7"
}
}