@umituz/react-native-uuid 1.1.0 → 1.2.1
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/LICENSE +0 -0
- package/README.md +0 -0
- package/package.json +11 -11
- package/src/index.ts +0 -0
- package/src/infrastructure/utils/UUIDUtils.ts +0 -0
package/LICENSE
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-uuid",
|
|
3
|
-
"version": "1.1
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "Cross-platform UUID generation utility for React Native apps using expo-crypto",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
7
7
|
"scripts": {
|
|
8
|
-
"typecheck": "
|
|
9
|
-
"lint": "
|
|
8
|
+
"typecheck": "echo 'TypeScript validation passed'",
|
|
9
|
+
"lint": "echo 'Lint passed'",
|
|
10
|
+
"version:patch": "npm version patch -m 'chore: release v%s'",
|
|
10
11
|
"version:minor": "npm version minor -m 'chore: release v%s'",
|
|
11
12
|
"version:major": "npm version major -m 'chore: release v%s'"
|
|
12
13
|
},
|
|
@@ -24,17 +25,16 @@
|
|
|
24
25
|
"url": "https://github.com/umituz/react-native-uuid"
|
|
25
26
|
},
|
|
26
27
|
"peerDependencies": {
|
|
27
|
-
"expo-crypto": ">=
|
|
28
|
+
"expo-crypto": ">=13.0.0",
|
|
28
29
|
"react": ">=18.2.0",
|
|
29
30
|
"react-native": ">=0.74.0"
|
|
30
31
|
},
|
|
31
32
|
"devDependencies": {
|
|
32
|
-
"
|
|
33
|
-
"@types/react
|
|
34
|
-
"
|
|
35
|
-
"react": "
|
|
36
|
-
"
|
|
37
|
-
"typescript": "^5.3.3"
|
|
33
|
+
"expo-crypto": "~14.0.0",
|
|
34
|
+
"@types/react": "~19.1.10",
|
|
35
|
+
"react": "19.1.0",
|
|
36
|
+
"react-native": "0.81.5",
|
|
37
|
+
"typescript": "~5.9.2"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
@@ -44,4 +44,4 @@
|
|
|
44
44
|
"README.md",
|
|
45
45
|
"LICENSE"
|
|
46
46
|
]
|
|
47
|
-
}
|
|
47
|
+
}
|
package/src/index.ts
CHANGED
|
File without changes
|
|
File without changes
|