create-ampless 1.0.0-alpha.44 → 1.0.0-alpha.47
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.
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
- `themes-registry.ts` — 自動生成ファイル。手動で編集しない。
|
|
12
12
|
- `amplify/` — TypeScript で定義された Amplify Gen 2 バックエンド(Cognito / DynamoDB / S3 / AppSync / Lambda)。
|
|
13
13
|
- `amplify_outputs.json` — `npm run sandbox` / Amplify Hosting が生成するファイル。編集しない。
|
|
14
|
-
- `app/` — Next.js
|
|
14
|
+
- `app/` — Next.js 16 App Router(公開サイト + `/admin` UI)。
|
|
15
15
|
- `components/` — 共有 UI コンポーネント。
|
|
16
16
|
- `lib/` — 共有ユーティリティ(データアクセス、認証など)。
|
|
17
17
|
- `cms.config.ts` — サイト、プラグイン、デフォルト設定。
|
|
@@ -11,7 +11,7 @@ This file is written for AI coding agents (Claude Code, Cursor, Codex, etc.). Fo
|
|
|
11
11
|
- `themes-registry.ts` — auto-generated, do not hand-edit.
|
|
12
12
|
- `amplify/` — Amplify Gen 2 backend (Cognito / DynamoDB / S3 / AppSync / Lambda) defined in TypeScript.
|
|
13
13
|
- `amplify_outputs.json` — generated by `npm run sandbox` / Amplify Hosting. Do not edit.
|
|
14
|
-
- `app/` — Next.js
|
|
14
|
+
- `app/` — Next.js 16 App Router (public site + `/admin` UI).
|
|
15
15
|
- `components/` — shared UI components.
|
|
16
16
|
- `lib/` — shared utilities (data access, auth, etc.).
|
|
17
17
|
- `cms.config.ts` — site, plugins, defaults.
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
>
|
|
3
3
|
# {{siteName}}
|
|
4
4
|
|
|
5
|
-
このサイトは [ampless](https://github.com/heavymoons/ampless) で構築されています — AWS Amplify Gen 2(Cognito + DynamoDB + S3 + AppSync + Lambda)上で動くサーバーレス CMS、フロントエンドは Next.js
|
|
5
|
+
このサイトは [ampless](https://github.com/heavymoons/ampless) で構築されています — AWS Amplify Gen 2(Cognito + DynamoDB + S3 + AppSync + Lambda)上で動くサーバーレス CMS、フロントエンドは Next.js 16。
|
|
6
6
|
|
|
7
7
|
この README は、サイト運営者として日常的に知っておくべき内容をまとめたものです。たまにやる運用手順(API キーのローテーション、バックアップ復元など)は [RUNBOOK.ja.md](./RUNBOOK.ja.md) に置いています。テーマごとのカスタマイズ詳細は `themes/<name>/README.ja.md` を参照してください。
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
>
|
|
3
3
|
# {{siteName}}
|
|
4
4
|
|
|
5
|
-
Your site is built with [ampless](https://github.com/heavymoons/ampless) — a serverless CMS that runs on AWS Amplify Gen 2 (Cognito + DynamoDB + S3 + AppSync + Lambda) with a Next.js
|
|
5
|
+
Your site is built with [ampless](https://github.com/heavymoons/ampless) — a serverless CMS that runs on AWS Amplify Gen 2 (Cognito + DynamoDB + S3 + AppSync + Lambda) with a Next.js 16 frontend.
|
|
6
6
|
|
|
7
7
|
This README covers what you, the site owner, need to know day-to-day. Operational recipes (rotating keys, restoring backups, etc.) live in [RUNBOOK.md](./RUNBOOK.md). Per-theme customization details live in `themes/<name>/README.md`.
|
|
8
8
|
|
|
@@ -13,53 +13,53 @@
|
|
|
13
13
|
"copy-theme": "npx create-ampless@latest copy-theme"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@aws-amplify/adapter-nextjs": "^1.
|
|
17
|
-
"@radix-ui/react-dialog": "^1.1.
|
|
18
|
-
"@radix-ui/react-label": "^2.1.
|
|
19
|
-
"@radix-ui/react-slot": "^1.
|
|
20
|
-
"@tiptap/extension-image": "^3.23.
|
|
21
|
-
"@tiptap/extension-link": "^3.23.
|
|
22
|
-
"@tiptap/pm": "^3.23.
|
|
23
|
-
"@tiptap/react": "^3.23.
|
|
24
|
-
"@tiptap/starter-kit": "^3.23.
|
|
25
|
-
"@ampless/plugin-og-image": "^0.2.0-alpha.
|
|
26
|
-
"@ampless/plugin-rss": "^0.2.0-alpha.
|
|
27
|
-
"@ampless/plugin-seo": "^0.2.0-alpha.
|
|
28
|
-
"@ampless/plugin-webhook": "^0.2.0-alpha.
|
|
29
|
-
"@ampless/admin": "^1.0.0-alpha.
|
|
30
|
-
"@ampless/backend": "^1.0.0-alpha.
|
|
31
|
-
"@ampless/runtime": "^1.0.0-alpha.
|
|
16
|
+
"@aws-amplify/adapter-nextjs": "^1.7.3",
|
|
17
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
18
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
19
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
20
|
+
"@tiptap/extension-image": "^3.23.6",
|
|
21
|
+
"@tiptap/extension-link": "^3.23.6",
|
|
22
|
+
"@tiptap/pm": "^3.23.6",
|
|
23
|
+
"@tiptap/react": "^3.23.6",
|
|
24
|
+
"@tiptap/starter-kit": "^3.23.6",
|
|
25
|
+
"@ampless/plugin-og-image": "^0.2.0-alpha.12",
|
|
26
|
+
"@ampless/plugin-rss": "^0.2.0-alpha.12",
|
|
27
|
+
"@ampless/plugin-seo": "^0.2.0-alpha.12",
|
|
28
|
+
"@ampless/plugin-webhook": "^0.2.0-alpha.12",
|
|
29
|
+
"@ampless/admin": "^1.0.0-alpha.30",
|
|
30
|
+
"@ampless/backend": "^1.0.0-alpha.23",
|
|
31
|
+
"@ampless/runtime": "^1.0.0-alpha.16",
|
|
32
32
|
"@digital-go-jp/tailwind-theme-plugin": "^0.3.4",
|
|
33
|
-
"ampless": "^1.0.0-alpha.
|
|
34
|
-
"aws-amplify": "^6.
|
|
33
|
+
"ampless": "^1.0.0-alpha.12",
|
|
34
|
+
"aws-amplify": "^6.17.0",
|
|
35
35
|
"class-variance-authority": "^0.7.1",
|
|
36
36
|
"clsx": "^2.1.1",
|
|
37
37
|
"lucide-react": "^1.16.0",
|
|
38
38
|
"next": "^16.2.6",
|
|
39
|
-
"react": "^19.
|
|
40
|
-
"react-dom": "^19.
|
|
41
|
-
"react-image-crop": "^11.0.
|
|
39
|
+
"react": "^19.2.6",
|
|
40
|
+
"react-dom": "^19.2.6",
|
|
41
|
+
"react-image-crop": "^11.0.10",
|
|
42
42
|
"tailwind-merge": "^3.6.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@aws-amplify/backend": "^1.
|
|
46
|
-
"@aws-amplify/backend-cli": "^1.
|
|
47
|
-
"@aws-sdk/client-appsync": "^3.
|
|
48
|
-
"@aws-sdk/client-cognito-identity-provider": "^3.
|
|
49
|
-
"@aws-sdk/client-dynamodb": "^3.
|
|
50
|
-
"@aws-sdk/client-s3": "^3.
|
|
51
|
-
"@aws-sdk/client-sqs": "^3.
|
|
52
|
-
"@aws-sdk/lib-dynamodb": "^3.
|
|
53
|
-
"@aws-sdk/util-dynamodb": "^3.
|
|
54
|
-
"@tailwindcss/postcss": "^4.
|
|
55
|
-
"@tailwindcss/typography": "^0.5.
|
|
56
|
-
"@types/aws-lambda": "^8.10.
|
|
57
|
-
"@types/node": "^22.
|
|
58
|
-
"@types/react": "^19.
|
|
59
|
-
"@types/react-dom": "^19.
|
|
60
|
-
"aws-cdk-lib": "^2.
|
|
61
|
-
"postcss": "^8.
|
|
62
|
-
"tailwindcss": "^4.
|
|
45
|
+
"@aws-amplify/backend": "^1.22.0",
|
|
46
|
+
"@aws-amplify/backend-cli": "^1.8.2",
|
|
47
|
+
"@aws-sdk/client-appsync": "^3.1053.0",
|
|
48
|
+
"@aws-sdk/client-cognito-identity-provider": "^3.1053.0",
|
|
49
|
+
"@aws-sdk/client-dynamodb": "^3.1053.0",
|
|
50
|
+
"@aws-sdk/client-s3": "^3.1053.0",
|
|
51
|
+
"@aws-sdk/client-sqs": "^3.1053.0",
|
|
52
|
+
"@aws-sdk/lib-dynamodb": "^3.1053.0",
|
|
53
|
+
"@aws-sdk/util-dynamodb": "^3.996.2",
|
|
54
|
+
"@tailwindcss/postcss": "^4.3.0",
|
|
55
|
+
"@tailwindcss/typography": "^0.5.19",
|
|
56
|
+
"@types/aws-lambda": "^8.10.161",
|
|
57
|
+
"@types/node": "^22.19.19",
|
|
58
|
+
"@types/react": "^19.2.15",
|
|
59
|
+
"@types/react-dom": "^19.2.3",
|
|
60
|
+
"aws-cdk-lib": "^2.257.0",
|
|
61
|
+
"postcss": "^8.5.15",
|
|
62
|
+
"tailwindcss": "^4.3.0",
|
|
63
63
|
"typescript": "^6.0.3"
|
|
64
64
|
}
|
|
65
65
|
}
|