create-sonamu 0.1.17 → 0.1.18

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
@@ -45,6 +45,11 @@
45
45
  "@logtape/logtape": "2.0.0",
46
46
  "@logtape/pretty": "2.0.0",
47
47
  "@logtape/redaction": "2.0.0",
48
+ "@storybook/addon-a11y": "^10.2.19",
49
+ "@storybook/addon-docs": "^10.2.19",
50
+ "@storybook/react-vite": "^10.2.19",
51
+ "agentation": "^2.3.0",
52
+ "storybook": "^10.2.19",
48
53
  "@radix-ui/react-accordion": "^1.2.12",
49
54
  "@radix-ui/react-alert-dialog": "^1.1.15",
50
55
  "@radix-ui/react-aspect-ratio": "^1.1.8",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-sonamu",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "description": "Create a new Sonamu project",
5
5
  "keywords": [
6
6
  "sonamu",
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://biomejs.dev/schemas/2.4.3/schema.json",
2
+ "$schema": "https://biomejs.dev/schemas/2.4.10/schema.json",
3
3
  "linter": {
4
4
  "enabled": true,
5
5
  "rules": {
@@ -62,4 +62,5 @@ Thumbs.db
62
62
 
63
63
  # Claude
64
64
  .claude/skills/sonamu
65
- .claude/CLAUDE.md
65
+ .claude/CLAUDE.md
66
+ .claude/settings.local.json
@@ -19,7 +19,8 @@
19
19
  "seed": "pnpm seedOnly && sonamu fixture sync",
20
20
  "sync:dump": "pnpm seed && pnpm sonamu migrate run && pnpm dump",
21
21
  "docker:up": "docker compose --env-file .env -f database/docker-compose.yml up -d",
22
- "docker:down": "docker compose --env-file .env -f database/docker-compose.yml down"
22
+ "docker:down": "docker compose --env-file .env -f database/docker-compose.yml down",
23
+ "cdd": "cdd"
23
24
  },
24
25
  "dependencies": {
25
26
  "@ai-sdk/anthropic": "^3.0.0",
@@ -39,7 +40,8 @@
39
40
  "knex": "^3.1.0",
40
41
  "pg": "^8.16.3",
41
42
  "radashi": "^12.2.0",
42
- "sonamu": "^0.8.13",
43
+ "@sonamu-kit/cdd": "workspace:^",
44
+ "sonamu": "^0.8.25",
43
45
  "zod": "^4.3.6"
44
46
  },
45
47
  "devDependencies": {
@@ -19,7 +19,8 @@
19
19
  "seed": "pnpm seedOnly && sonamu fixture sync",
20
20
  "sync:dump": "pnpm seed && pnpm sonamu migrate run && pnpm dump",
21
21
  "docker:up": "docker compose --env-file .env -f database/docker-compose.yml up -d",
22
- "docker:down": "docker compose --env-file .env -f database/docker-compose.yml down"
22
+ "docker:down": "docker compose --env-file .env -f database/docker-compose.yml down",
23
+ "cdd":"cdd"
23
24
  },
24
25
  "dependencies": {
25
26
  "@ai-sdk/anthropic": "catalog:",
@@ -39,6 +40,7 @@
39
40
  "knex": "catalog:",
40
41
  "pg": "catalog:",
41
42
  "radashi": "catalog:",
43
+ "@sonamu-kit/cdd": "workspace:^",
42
44
  "sonamu": "workspace:^",
43
45
  "zod": "catalog:"
44
46
  },
@@ -4,6 +4,7 @@
4
4
  "target": "esnext",
5
5
  "module": "esnext",
6
6
  "outDir": "dist",
7
+ "rootDir": "./src",
7
8
  "sourceMap": true,
8
9
  "lib": ["esnext", "dom"],
9
10
 
@@ -10,7 +10,7 @@
10
10
  "preview": "vite preview"
11
11
  },
12
12
  "dependencies": {
13
- "@sonamu-kit/react-components": "^0.2.3",
13
+ "@sonamu-kit/react-components": "^0.2.5",
14
14
  "@tanstack/react-query": "^5.90.12",
15
15
  "@tanstack/react-router": "1.143.11",
16
16
  "axios": "^1.13.2",
@@ -0,0 +1,23 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ESNext",
4
+ "useDefineForClassFields": true,
5
+ "lib": ["DOM", "DOM.Iterable", "ESNext"],
6
+ "allowJs": false,
7
+ "skipLibCheck": true,
8
+ "allowSyntheticDefaultImports": true,
9
+ "strict": true,
10
+ "forceConsistentCasingInFileNames": true,
11
+ "module": "ESNext",
12
+ "moduleResolution": "Bundler",
13
+ "resolveJsonModule": true,
14
+ "isolatedModules": true,
15
+ "noEmit": true,
16
+ "jsx": "react-jsx",
17
+ "composite": true,
18
+ "paths": {
19
+ "@/*": ["./src/*"]
20
+ }
21
+ },
22
+ "include": ["src", "src/routeTree.gen.ts"]
23
+ }
@@ -1,24 +1,7 @@
1
1
  {
2
- "compilerOptions": {
3
- "target": "ESNext",
4
- "useDefineForClassFields": true,
5
- "lib": ["DOM", "DOM.Iterable", "ESNext"],
6
- "allowJs": false,
7
- "skipLibCheck": true,
8
- "esModuleInterop": false,
9
- "allowSyntheticDefaultImports": true,
10
- "strict": true,
11
- "forceConsistentCasingInFileNames": true,
12
- "module": "ESNext",
13
- "moduleResolution": "Bundler",
14
- "resolveJsonModule": true,
15
- "isolatedModules": true,
16
- "noEmit": true,
17
- "jsx": "react-jsx",
18
- "paths": {
19
- "@/*": ["./src/*"]
20
- }
21
- },
22
- "include": ["src", "src/routeTree.gen.ts"],
23
- "references": [{ "path": "./tsconfig.node.json" }]
2
+ "files": [],
3
+ "references": [
4
+ { "path": "./tsconfig.app.json" },
5
+ { "path": "./tsconfig.node.json" }
6
+ ]
24
7
  }