UNPKG

react-native-mmkv

Version:

⚡️ The fastest key/value storage for React Native.

114 lines (113 loc) 2.84 kB
{ "name": "react-native-mmkv", "version": "4.3.2", "description": "⚡️ The fastest key/value storage for React Native.", "main": "lib/index", "module": "lib/index", "types": "lib/index.d.ts", "react-native": "src/index", "source": "src/index", "files": [ "src", "react-native.config.js", "lib", "nitrogen", "android/build.gradle", "android/gradle.properties", "android/fix-prefab.gradle", "android/CMakeLists.txt", "android/src", "ios/**/*.h", "ios/**/*.m", "ios/**/*.mm", "ios/**/*.cpp", "ios/**/*.swift", "cpp/**/*.h", "cpp/**/*.hpp", "cpp/**/*.cpp", "app.plugin.js", "nitro.json", "*.podspec", "README.md" ], "scripts": { "typecheck": "tsc --noEmit", "clean": "rm -rf android/build node_modules/**/android/build lib", "lint": "eslint \"**/*.{js,ts,tsx}\" --fix && prettier --write \"**/*.{js,ts,tsx}\"", "lint-ci": "eslint \"**/*.{js,ts,tsx}\" --max-warnings=0 -f @jamesacarr/github-actions && prettier --check \"**/*.{js,ts,tsx}\"", "typescript": "tsc", "specs": "tsc && nitrogen --logLevel=\"debug\"", "build": "tsc --noEmit false", "release": "release-it", "test": "jest" }, "keywords": [ "react-native", "nitro" ], "repository": { "type": "git", "url": "git+https://github.com/mrousavy/react-native-mmkv.git" }, "author": "Marc Rousavy <me@mrousavy.com> (https://github.com/mrousavy)", "license": "MIT", "bugs": { "url": "https://github.com/mrousavy/react-native-mmkv/issues" }, "homepage": "https://github.com/mrousavy/react-native-mmkv#readme", "publishConfig": { "registry": "https://registry.npmjs.org/" }, "devDependencies": { "@react-native/eslint-config": "0.85.3", "@react-native/jest-preset": "0.85.3", "@testing-library/react-native": "^13.3.1", "@types/jest": "^29.5.14", "@types/react": "^19.2.15", "eslint": "^8.57.1", "eslint-config-prettier": "^10.1.8", "nitrogen": "0.35.9", "prettier": "^3.8.3", "react": "19.2.6", "react-native": "0.85.3", "react-native-nitro-modules": "0.35.9", "typescript": "^6.0.3" }, "peerDependencies": { "react": "*", "react-native": "*", "react-native-nitro-modules": "*" }, "eslintConfig": { "root": true, "extends": [ "@react-native", "prettier" ] }, "eslintIgnore": [ "node_modules/", "lib/" ], "release-it": { "npm": { "publish": true }, "git": false, "github": { "release": false }, "hooks": { "before:init": "bun typecheck", "after:bump": "bun run build" } }, "prettier": { "quoteProps": "consistent", "singleQuote": true, "tabWidth": 2, "trailingComma": "es5", "useTabs": false, "semi": false } }