-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.42 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
{
"name": "foca-mmkv-storage",
"version": "0.0.2",
"repository": "[email protected]:foca-js/foca-mmkv-storage.git",
"keywords": [
"redux-persist",
"react-native-persist"
],
"description": "react-native端的持久化引擎,基于react-native-mmkv",
"contributors": [
"夜葬 <[email protected]> (https://github.com/geekact)"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"prepublishOnly": "tsup",
"prepare": "husky install"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"volta": {
"node": "18.16.0",
"pnpm": "8.10.0"
},
"packageManager": "[email protected]",
"files": [
"dist",
"LICENSE",
"package.json",
"README.md",
"CHANGELOG.md"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"peerDependencies": {
"foca": ">=3.1.0"
},
"dependencies": {
"react-native-mmkv": "^2.11.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@swc/core": "^1.3.100",
"@types/node": "^20.10.4",
"foca": "^3.2.0",
"husky": "^8.0.3",
"prettier": "^3.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}