expo-storage
Version:
Simple way to store persistent data, which does not have size limitations of react-native async-storage.
56 lines • 1.55 kB
JSON
{
"name": "expo-storage",
"version": "54.0.9",
"description": "Simple way to store persistent data, which does not have size limitations of react-native async-storage.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf lib",
"prepublishOnly": "npm run clean && npm run build",
"test": "jest",
"lint": "npx ts-standard",
"lint:fix": "npx ts-standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/echowaves/expo-storage.git"
},
"keywords": [
"expo",
"react-native",
"asynch-storage",
"persistance"
],
"author": "echowaves.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/echowaves/expo-storage/issues"
},
"homepage": "https://github.com/echowaves/expo-storage#readme",
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@babel/preset-typescript": "^7.27.1",
"@types/react": "^19.0.0",
"@types/react-native": "0.72.0",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"eslint": "^9.38.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.6.0",
"expo-file-system": "19.0.17",
"jest": "29.7.0",
"ts-standard": "^12.0.2",
"typescript": "5.7.2"
},
"peerDependencies": {
"expo-file-system": ">19.0.0 <20.0.0"
}
}