@mediacubeco/expo-template-fsd 2.1.0 → 2.1.2

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.
@@ -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,34 @@
1
+ # dependencies
2
+ node_modules/
3
+ yarn-debug.*
4
+ yarn-error.*
5
+
6
+ # build
7
+ /ios
8
+ /android
9
+ dist/
10
+ web-build/
11
+ .expo/
12
+ .kotlin/
13
+ .DS_Store
14
+ .metro-health-check*
15
+ *.orig.*
16
+ *.pem
17
+ *.jks
18
+ *.p8
19
+ *.p12
20
+ *.key
21
+ *.mobileprovision
22
+
23
+ # typescript
24
+ *.tsbuildinfo
25
+
26
+ # secret
27
+ /.secret/*
28
+ !/.secret/README.md
29
+
30
+ # env
31
+ .env*.local
32
+
33
+ # ai
34
+ .agents/skills/
@@ -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
@@ -1,4 +1,4 @@
1
- # `.secret` Folder
1
+ # `.secret`
2
2
 
3
3
  This folder stores **secret and sensitive** files that must never be committed to the repository. The folder is included in `.gitignore`.
4
4
 
package/package.json CHANGED
@@ -1,11 +1,40 @@
1
1
  {
2
2
  "private": false,
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
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",
@@ -54,14 +83,14 @@
54
83
  "typescript": "^6.0.3",
55
84
  "@mediacubeco/eslint-config": "2.1.0",
56
85
  "@mediacubeco/eslint-config-fsd": "2.1.0",
57
- "@mediacubeco/eslint-config-react": "2.1.0",
58
- "@mediacubeco/prettier-config": "2.1.0",
86
+ "@mediacubeco/eslint-config-react-native": "2.1.0",
59
87
  "@mediacubeco/prettier-config-fsd": "2.1.0",
60
88
  "@mediacubeco/typescript-config": "2.1.0",
89
+ "@mediacubeco/prettier-config": "2.1.0",
90
+ "@mediacubeco/eslint-config-react": "2.1.0",
61
91
  "@mediacubeco/typescript-config-react": "2.1.0",
62
- "@mediacubeco/typescript-config-react-native": "2.1.0",
63
92
  "@mediacubeco/typescript-config-fsd": "2.1.0",
64
- "@mediacubeco/eslint-config-react-native": "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",