@mediacubeco/expo-template-fsd 1.1.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/.env.example +1 -0
- package/AGENTS.md +1 -0
- package/CLAUDE.md +1 -0
- package/app.json +52 -0
- package/package.json +14 -14
- package/app.config.js +0 -54
package/.env.example
CHANGED
package/AGENTS.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!-- -->
|
package/CLAUDE.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@AGENTS.md
|
package/app.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"expo": {
|
|
3
|
+
"name": "expo-template-fsd",
|
|
4
|
+
"slug": "expo-template-fsd",
|
|
5
|
+
"scheme": "expotemplatefsd",
|
|
6
|
+
"version": "1.0.0",
|
|
7
|
+
"orientation": "portrait",
|
|
8
|
+
"userInterfaceStyle": "automatic",
|
|
9
|
+
"web": {
|
|
10
|
+
"output": "static",
|
|
11
|
+
"favicon": "./src/shared/assets/images/logo-web.png"
|
|
12
|
+
},
|
|
13
|
+
"ios": {
|
|
14
|
+
"supportsTablet": true,
|
|
15
|
+
"bundleIdentifier": "com.mediacube.expotemplatefsd",
|
|
16
|
+
"icon": "./src/shared/assets/images/logo-ios.png"
|
|
17
|
+
},
|
|
18
|
+
"android": {
|
|
19
|
+
"predictiveBackGestureEnabled": false,
|
|
20
|
+
"package": "com.mediacube.expotemplatefsd",
|
|
21
|
+
"adaptiveIcon": {
|
|
22
|
+
"backgroundColor": "#E6F4FE",
|
|
23
|
+
"foregroundImage": "./src/shared/assets/images/logo-android-foreground.png",
|
|
24
|
+
"backgroundImage": "./src/shared/assets/images/logo-android-background.png",
|
|
25
|
+
"monochromeImage": "./src/shared/assets/images/logo-android-monochrome.png"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"plugins": [
|
|
29
|
+
["expo-font", {}],
|
|
30
|
+
["expo-image", {}],
|
|
31
|
+
["expo-router", {}],
|
|
32
|
+
["expo-system-ui", {}],
|
|
33
|
+
["expo-web-browser", {}],
|
|
34
|
+
["expo-localization", {}],
|
|
35
|
+
["expo-secure-store", {}],
|
|
36
|
+
[
|
|
37
|
+
"expo-splash-screen",
|
|
38
|
+
{
|
|
39
|
+
"backgroundColor": "#208AEF",
|
|
40
|
+
"android": {
|
|
41
|
+
"image": "./assets/images/splash-icon.png",
|
|
42
|
+
"imageWidth": 76
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
]
|
|
46
|
+
],
|
|
47
|
+
"experiments": {
|
|
48
|
+
"typedRoutes": true,
|
|
49
|
+
"reactCompiler": true
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"private": false,
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"name": "@mediacubeco/expo-template-fsd",
|
|
5
5
|
"description": "Application by Mediacube developers",
|
|
6
6
|
"license": "MIT",
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"react-native-svg": "15.15.3",
|
|
41
41
|
"react-native-web": "^0.21.0",
|
|
42
42
|
"react-native-worklets": "0.7.2",
|
|
43
|
-
"@mediacubeco/base": "1.
|
|
44
|
-
"@mediacubeco/base-react": "1.
|
|
45
|
-
"@mediacubeco/base-react-native": "1.
|
|
43
|
+
"@mediacubeco/base": "1.2.0",
|
|
44
|
+
"@mediacubeco/base-react": "1.2.0",
|
|
45
|
+
"@mediacubeco/base-react-native": "1.2.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/react": "^19.2.0",
|
|
@@ -51,16 +51,16 @@
|
|
|
51
51
|
"husky": "^9.1.7",
|
|
52
52
|
"prettier": "^3.8.1",
|
|
53
53
|
"typescript": "^5.9.3",
|
|
54
|
-
"@mediacubeco/eslint-config": "1.
|
|
55
|
-
"@mediacubeco/eslint-config
|
|
56
|
-
"@mediacubeco/eslint-config-react": "1.
|
|
57
|
-
"@mediacubeco/
|
|
58
|
-
"@mediacubeco/
|
|
59
|
-
"@mediacubeco/
|
|
60
|
-
"@mediacubeco/
|
|
61
|
-
"@mediacubeco/typescript-config-
|
|
62
|
-
"@mediacubeco/typescript-config-react
|
|
63
|
-
"@mediacubeco/typescript-config-
|
|
54
|
+
"@mediacubeco/eslint-config-fsd": "1.2.0",
|
|
55
|
+
"@mediacubeco/eslint-config": "1.2.0",
|
|
56
|
+
"@mediacubeco/eslint-config-react": "1.2.0",
|
|
57
|
+
"@mediacubeco/prettier-config-fsd": "1.2.0",
|
|
58
|
+
"@mediacubeco/typescript-config": "1.2.0",
|
|
59
|
+
"@mediacubeco/eslint-config-react-native": "1.2.0",
|
|
60
|
+
"@mediacubeco/prettier-config": "1.2.0",
|
|
61
|
+
"@mediacubeco/typescript-config-react-native": "1.2.0",
|
|
62
|
+
"@mediacubeco/typescript-config-react": "1.2.0",
|
|
63
|
+
"@mediacubeco/typescript-config-fsd": "1.2.0"
|
|
64
64
|
},
|
|
65
65
|
"scripts": {
|
|
66
66
|
"prebuild": "expo prebuild",
|
package/app.config.js
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
const config = {
|
|
2
|
-
expo: {
|
|
3
|
-
name: 'expo-template-fsd',
|
|
4
|
-
slug: 'expo-template-fsd',
|
|
5
|
-
scheme: 'expotemplatefsd',
|
|
6
|
-
version: '1.0.0',
|
|
7
|
-
orientation: 'portrait',
|
|
8
|
-
userInterfaceStyle: 'automatic',
|
|
9
|
-
web: {
|
|
10
|
-
output: 'static',
|
|
11
|
-
favicon: './src/shared/assets/images/logo-web.png',
|
|
12
|
-
},
|
|
13
|
-
ios: {
|
|
14
|
-
supportsTablet: true,
|
|
15
|
-
bundleIdentifier: 'com.mediacube.expotemplatefsd',
|
|
16
|
-
icon: './src/shared/assets/images/logo-ios.png',
|
|
17
|
-
},
|
|
18
|
-
android: {
|
|
19
|
-
predictiveBackGestureEnabled: false,
|
|
20
|
-
package: 'com.mediacube.expotemplatefsd',
|
|
21
|
-
adaptiveIcon: {
|
|
22
|
-
backgroundColor: '#E6F4FE',
|
|
23
|
-
foregroundImage: './src/shared/assets/images/logo-android-foreground.png',
|
|
24
|
-
backgroundImage: './src/shared/assets/images/logo-android-background.png',
|
|
25
|
-
monochromeImage: './src/shared/assets/images/logo-android-monochrome.png',
|
|
26
|
-
},
|
|
27
|
-
},
|
|
28
|
-
plugins: [
|
|
29
|
-
['expo-font', {}],
|
|
30
|
-
['expo-image', {}],
|
|
31
|
-
['expo-router', {}],
|
|
32
|
-
['expo-system-ui', {}],
|
|
33
|
-
['expo-web-browser', {}],
|
|
34
|
-
['expo-localization', {}],
|
|
35
|
-
['expo-secure-store', {}],
|
|
36
|
-
[
|
|
37
|
-
'expo-splash-screen',
|
|
38
|
-
{
|
|
39
|
-
backgroundColor: '#208AEF',
|
|
40
|
-
android: {
|
|
41
|
-
image: './assets/images/splash-icon.png',
|
|
42
|
-
imageWidth: 76,
|
|
43
|
-
},
|
|
44
|
-
},
|
|
45
|
-
],
|
|
46
|
-
],
|
|
47
|
-
experiments: {
|
|
48
|
-
typedRoutes: true,
|
|
49
|
-
reactCompiler: true,
|
|
50
|
-
},
|
|
51
|
-
},
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
export default config
|