@crystin001/theme-settings-lib 1.0.0 → 1.2.0

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,56 +1,69 @@
1
- {
2
- "name": "@crystin001/theme-settings-lib",
3
- "version": "1.0.0",
4
- "description": "Reusable theme and settings library for mobile apps",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
7
- "files": [
8
- "dist",
9
- "README.md"
10
- ],
11
- "scripts": {
12
- "build": "tsc",
13
- "prepublishOnly": "npm run build",
14
- "test": "echo \"Error: no test specified\" && exit 1"
15
- },
16
- "keywords": [
17
- "theme",
18
- "settings",
19
- "i18n",
20
- "react-native",
21
- "expo"
22
- ],
23
- "author": "",
24
- "license": "MIT",
25
- "repository": {
26
- "type": "git",
27
- "url": "https://github.com/trial-and-code/theme-settings-lib.git"
28
- },
29
- "peerDependencies": {
30
- "react": "*",
31
- "react-native": "*",
32
- "i18next": "^23.11.5",
33
- "react-i18next": "^15.1.1",
34
- "expo-localization": "~17.0.0",
35
- "@react-native-async-storage/async-storage": "~2.2.0",
36
- "color": "^4.2.3"
37
- },
38
- "peerDependenciesMeta": {
39
- "color": {
40
- "optional": true
41
- }
42
- },
43
- "devDependencies": {
44
- "typescript": "^5.0.0",
45
- "@types/react": "^19.0.0",
46
- "@types/color": "^3.0.0",
47
- "color": "^4.2.3",
48
- "react": "^18.0.0",
49
- "react-native": "*",
50
- "i18next": "^23.11.5",
51
- "react-i18next": "^15.1.1",
52
- "expo-localization": "~17.0.0",
53
- "@react-native-async-storage/async-storage": "~2.2.0"
54
- }
55
- }
56
-
1
+ {
2
+ "name": "@crystin001/theme-settings-lib",
3
+ "version": "1.2.0",
4
+ "description": "Reusable theme and settings library for mobile apps",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "react-native": "dist/index.js",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "default": "./dist/index.js"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "README.md"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsc",
20
+ "prepare": "npm run build",
21
+ "prepublishOnly": "npm run build",
22
+ "test": "echo \"Error: no test specified\" && exit 1",
23
+ "start": "cd example-app && npm start",
24
+ "app:install": "cd example-app && npm install",
25
+ "app:start": "cd example-app && npm start",
26
+ "app:ios": "cd example-app && npm run ios",
27
+ "app:android": "cd example-app && npm run android"
28
+ },
29
+ "keywords": [
30
+ "theme",
31
+ "settings",
32
+ "i18n",
33
+ "react-native",
34
+ "expo"
35
+ ],
36
+ "author": "",
37
+ "license": "MIT",
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "https://github.com/trial-and-code/theme-settings-lib.git"
41
+ },
42
+ "peerDependencies": {
43
+ "@react-native-async-storage/async-storage": "~2.2.0",
44
+ "color": "^4.2.3",
45
+ "expo-localization": "~17.0.0",
46
+ "i18next": "^23.11.5",
47
+ "react": "*",
48
+ "react-i18next": "^15.1.1",
49
+ "react-native": "*"
50
+ },
51
+ "peerDependenciesMeta": {
52
+ "color": {
53
+ "optional": true
54
+ }
55
+ },
56
+ "devDependencies": {
57
+ "@react-native-async-storage/async-storage": "~2.2.0",
58
+ "@types/color": "^3.0.0",
59
+ "@types/react": "^19.0.0",
60
+ "color": "^4.2.3",
61
+ "expo-localization": "~17.0.0",
62
+ "i18next": "^23.11.5",
63
+ "react": "*",
64
+ "react-i18next": "^15.1.1",
65
+ "react-native": "*",
66
+ "typescript": "^5.0.0"
67
+ }
68
+ }
69
+