@mediacubeco/expo-template-fsd 2.1.0 → 2.1.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/.agents/README.md +8 -0
- package/.claude/README.md +8 -0
- package/.gitignore +36 -0
- package/.husky/README.md +8 -0
- package/.secret/README.md +1 -1
- package/package.json +37 -8
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# `.agents`
|
|
2
|
+
|
|
3
|
+
This folder stores independent agent definitions and related assets. They must stay isolated and should not pollute the main project context.
|
|
4
|
+
|
|
5
|
+
## What should be stored here
|
|
6
|
+
|
|
7
|
+
- Agent-specific skills, rules, prompts, and helper files.
|
|
8
|
+
- Context-isolated assets that are not part of the app runtime flow.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# `.claude`
|
|
2
|
+
|
|
3
|
+
This folder stores Claude-specific independent agents and related configuration. They must stay isolated and should not pollute the main project context.
|
|
4
|
+
|
|
5
|
+
## What should be stored here
|
|
6
|
+
|
|
7
|
+
- Claude rules, settings, skills, and supporting files.
|
|
8
|
+
- Context-isolated configuration that is separate from app runtime logic.
|
package/.gitignore
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# dependencies
|
|
2
|
+
node_modules/
|
|
3
|
+
yarn-debug.*
|
|
4
|
+
yarn-error.*
|
|
5
|
+
|
|
6
|
+
# expo
|
|
7
|
+
.expo/
|
|
8
|
+
dist/
|
|
9
|
+
web-build/
|
|
10
|
+
|
|
11
|
+
# native
|
|
12
|
+
/ios
|
|
13
|
+
/android
|
|
14
|
+
.kotlin/
|
|
15
|
+
.DS_Store
|
|
16
|
+
.metro-health-check*
|
|
17
|
+
*.orig.*
|
|
18
|
+
*.pem
|
|
19
|
+
*.jks
|
|
20
|
+
*.p8
|
|
21
|
+
*.p12
|
|
22
|
+
*.key
|
|
23
|
+
*.mobileprovision
|
|
24
|
+
|
|
25
|
+
# typescript
|
|
26
|
+
*.tsbuildinfo
|
|
27
|
+
|
|
28
|
+
# secret
|
|
29
|
+
/.secret/*
|
|
30
|
+
!/.secret/README.md
|
|
31
|
+
|
|
32
|
+
# env
|
|
33
|
+
.env*.local
|
|
34
|
+
|
|
35
|
+
# ai
|
|
36
|
+
.agents/skills/
|
package/.husky/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# `.husky`
|
|
2
|
+
|
|
3
|
+
This folder stores Git hooks used to enforce repository checks before commit or push.
|
|
4
|
+
|
|
5
|
+
## What should be stored here
|
|
6
|
+
|
|
7
|
+
- Husky hook scripts (for example, `pre-commit`, `commit-msg`, `pre-push`).
|
|
8
|
+
- Hook-related helper scripts that validate code quality and commit hygiene.
|
package/.secret/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,40 @@
|
|
|
1
1
|
{
|
|
2
2
|
"private": false,
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"name": "@mediacubeco/expo-template-fsd",
|
|
5
5
|
"description": "Application by Mediacube developers",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "expo-router/entry",
|
|
9
|
+
"files": [
|
|
10
|
+
".agents",
|
|
11
|
+
".claude",
|
|
12
|
+
".husky",
|
|
13
|
+
".secret",
|
|
14
|
+
"src",
|
|
15
|
+
".env",
|
|
16
|
+
".env.example",
|
|
17
|
+
".gitignore",
|
|
18
|
+
"AGENTS.md",
|
|
19
|
+
"app.json",
|
|
20
|
+
"CLAUDE.md",
|
|
21
|
+
"env.d.ts",
|
|
22
|
+
"eslint.config.js",
|
|
23
|
+
"expo-env.d.ts",
|
|
24
|
+
"i18next.d.ts",
|
|
25
|
+
"package-lock.json",
|
|
26
|
+
"package.json",
|
|
27
|
+
"prettier.config.js",
|
|
28
|
+
"README.md",
|
|
29
|
+
"skills-lock.json",
|
|
30
|
+
"svg.d.ts",
|
|
31
|
+
"tsconfig.json"
|
|
32
|
+
],
|
|
33
|
+
"keywords": [
|
|
34
|
+
"mediacube",
|
|
35
|
+
"mediacubeco",
|
|
36
|
+
"application"
|
|
37
|
+
],
|
|
9
38
|
"dependencies": {
|
|
10
39
|
"@tanstack/query-async-storage-persister": "^5.99.0",
|
|
11
40
|
"@tanstack/react-query": "^5.99.0",
|
|
@@ -41,9 +70,9 @@
|
|
|
41
70
|
"react-native-svg": "15.15.4",
|
|
42
71
|
"react-native-web": "^0.21.0",
|
|
43
72
|
"react-native-worklets": "0.8.3",
|
|
73
|
+
"@mediacubeco/base-react-native": "2.1.0",
|
|
44
74
|
"@mediacubeco/base": "2.1.0",
|
|
45
|
-
"@mediacubeco/base-react": "2.1.0"
|
|
46
|
-
"@mediacubeco/base-react-native": "2.1.0"
|
|
75
|
+
"@mediacubeco/base-react": "2.1.0"
|
|
47
76
|
},
|
|
48
77
|
"devDependencies": {
|
|
49
78
|
"@types/react": "^19.2.0",
|
|
@@ -52,16 +81,16 @@
|
|
|
52
81
|
"husky": "^9.1.7",
|
|
53
82
|
"prettier": "^3.8.1",
|
|
54
83
|
"typescript": "^6.0.3",
|
|
55
|
-
"@mediacubeco/eslint-config": "2.1.0",
|
|
56
84
|
"@mediacubeco/eslint-config-fsd": "2.1.0",
|
|
85
|
+
"@mediacubeco/eslint-config": "2.1.0",
|
|
57
86
|
"@mediacubeco/eslint-config-react": "2.1.0",
|
|
58
|
-
"@mediacubeco/
|
|
87
|
+
"@mediacubeco/eslint-config-react-native": "2.1.0",
|
|
59
88
|
"@mediacubeco/prettier-config-fsd": "2.1.0",
|
|
89
|
+
"@mediacubeco/prettier-config": "2.1.0",
|
|
60
90
|
"@mediacubeco/typescript-config": "2.1.0",
|
|
61
|
-
"@mediacubeco/typescript-config-react": "2.1.0",
|
|
62
|
-
"@mediacubeco/typescript-config-react-native": "2.1.0",
|
|
63
91
|
"@mediacubeco/typescript-config-fsd": "2.1.0",
|
|
64
|
-
"@mediacubeco/
|
|
92
|
+
"@mediacubeco/typescript-config-react": "2.1.0",
|
|
93
|
+
"@mediacubeco/typescript-config-react-native": "2.1.0"
|
|
65
94
|
},
|
|
66
95
|
"scripts": {
|
|
67
96
|
"postinstall": "npx husky && npx skills update",
|