@umituz/react-native-storage 2.6.14 → 2.6.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@umituz/react-native-storage",
3
- "version": "2.6.14",
3
+ "version": "2.6.17",
4
4
  "description": "Unified storage solution with AsyncStorage persistence, Zustand state management, and in-memory caching for React Native",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
7
7
  "scripts": {
8
- "typecheck": "echo 'TypeScript validation passed'",
9
- "lint": "echo 'Lint passed'",
8
+ "typecheck": "tsc --noEmit",
9
+ "lint": "eslint src --ext .ts,.tsx --max-warnings 0",
10
+ "lint:fix": "eslint src --ext .ts,.tsx --fix",
10
11
  "version:patch": "npm version patch -m 'chore: release v%s'",
11
12
  "version:minor": "npm version minor -m 'chore: release v%s'",
12
13
  "version:major": "npm version major -m 'chore: release v%s'"
@@ -43,7 +44,13 @@
43
44
  "@types/react": "~19.1.10",
44
45
  "react": "19.1.0",
45
46
  "react-native": "0.81.5",
46
- "typescript": "~5.9.2"
47
+ "typescript": "~5.9.2",
48
+ "eslint": "^9.39.2",
49
+ "@typescript-eslint/eslint-plugin": "^8.50.1",
50
+ "@typescript-eslint/parser": "^8.50.1",
51
+ "eslint-plugin-react": "^7.37.5",
52
+ "eslint-plugin-react-hooks": "^7.0.1",
53
+ "eslint-plugin-react-native": "^5.0.0"
47
54
  },
48
55
  "publishConfig": {
49
56
  "access": "public"
@@ -58,6 +58,6 @@ export function createStore<
58
58
  },
59
59
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
60
60
  migrate: config.migrate as any,
61
- })
61
+ }) as any
62
62
  );
63
63
  }