create-sonamu 0.1.12 → 0.1.14

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/catalog.json CHANGED
@@ -1,4 +1,5 @@
1
1
  {
2
+ "@uiw/react-json-view": "2.0.0-alpha.41",
2
3
  "@adonisjs/ace": "^13.3.0",
3
4
  "@adonisjs/tsconfig": "^1.4.1",
4
5
  "@ai-sdk/anthropic": "^3.0.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-sonamu",
3
- "version": "0.1.12",
3
+ "version": "0.1.14",
4
4
  "description": "Create a new Sonamu project",
5
5
  "keywords": [
6
6
  "sonamu",
@@ -61,5 +61,5 @@ Thumbs.db
61
61
  .slack-confirm-*
62
62
 
63
63
  # Claude
64
- .claude/skills/sonamu/
64
+ .claude/skills/sonamu
65
65
  .claude/CLAUDE.md
@@ -39,7 +39,7 @@
39
39
  "knex": "^3.1.0",
40
40
  "pg": "^8.16.3",
41
41
  "radashi": "^12.2.0",
42
- "sonamu": "^0.8.8",
42
+ "sonamu": "^0.8.10",
43
43
  "zod": "^4.3.6"
44
44
  },
45
45
  "devDependencies": {
@@ -10,7 +10,7 @@
10
10
  "preview": "vite preview"
11
11
  },
12
12
  "dependencies": {
13
- "@sonamu-kit/react-components": "^0.2.2",
13
+ "@sonamu-kit/react-components": "^0.2.3",
14
14
  "@tanstack/react-query": "^5.90.12",
15
15
  "@tanstack/react-router": "1.143.11",
16
16
  "axios": "^1.13.2",
@@ -48,6 +48,11 @@ axios.defaults.transformResponse = [
48
48
  },
49
49
  ];
50
50
 
51
+ axios.interceptors.request.use((config) => {
52
+ config.headers["Accept-Language"] = getCurrentLocale();
53
+ return config;
54
+ });
55
+
51
56
  export async function fetch(options: AxiosRequestConfig) {
52
57
  try {
53
58
  const res = await axios({