-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "tfjs-react-native-mmkv-storage",
"version": "3.0.0",
"description": "MMKV storage IO for tfjs react native based on react-native-mmkv",
"main": "dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"compile": "tsup src/index.ts --dts --format esm,cjs",
"prepublishOnly": "rm -rf ./dist && npm run compile"
},
"author": "paradite",
"license": "MIT",
"keywords": [
"mmkv",
"tfjs",
"react-native",
"storage"
],
"devDependencies": {
"@types/jest": "^29.0.0",
"jest": "^28.0.1",
"ts-jest": "^28.0.8",
"tsup": "^6.2.2",
"typescript": "^4.5.4",
"@tensorflow/tfjs-core": "^4.2.0",
"react-native-mmkv": "^2.10.1"
},
"peerDependencies": {
"@tensorflow/tfjs-core": "^4.2.0",
"react-native-mmkv": "^2.10.1"
},
"dependencies": {
"base64-js": "^1.5.1"
}
}