create-noxion 0.0.2 → 0.0.3

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
+ NOTION_PAGE_ID={{NOTION_PAGE_ID}}
2
+ NOTION_TOKEN=
3
+ NOTION_SPACE_ID=
4
+ SITE_NAME={{SITE_NAME}}
5
+ SITE_DOMAIN={{DOMAIN}}
6
+ SITE_AUTHOR={{AUTHOR}}
7
+ SITE_DESCRIPTION={{SITE_DESCRIPTION}}
8
+ REVALIDATE_SECRET=
@@ -8,9 +8,9 @@
8
8
  "start": "next start"
9
9
  },
10
10
  "dependencies": {
11
- "@noxion/core": "^0.0.1",
12
- "@noxion/renderer": "^0.0.1",
13
- "@noxion/adapter-nextjs": "^0.0.1",
11
+ "@noxion/core": "^0.0.2",
12
+ "@noxion/renderer": "^0.0.2",
13
+ "@noxion/adapter-nextjs": "^0.0.2",
14
14
  "next": "^16.1.6",
15
15
  "react": "^19.1.0",
16
16
  "react-dom": "^19.1.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-noxion",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "CLI scaffolding tool for Noxion projects",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 Jiwon
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
package/README.md DELETED
@@ -1,38 +0,0 @@
1
- # create-noxion
2
-
3
- CLI scaffolding tool for [Noxion](https://github.com/jiwonme/noxion) — a Notion-powered blog builder.
4
-
5
- ## Usage
6
-
7
- ```bash
8
- bun create noxion my-blog
9
- # or
10
- npx create-noxion my-blog
11
- ```
12
-
13
- This scaffolds a complete Next.js blog project in seconds, pre-configured with:
14
-
15
- - Next.js App Router
16
- - Notion as CMS (via `@noxion/core`)
17
- - SEO automation (via `@noxion/adapter-nextjs`)
18
- - React components (via `@noxion/renderer`)
19
- - ISR with on-demand revalidation
20
- - Docker support
21
-
22
- ## After Scaffolding
23
-
24
- ```bash
25
- cd my-blog
26
- # Edit .env with your Notion page ID
27
- bun run dev
28
- ```
29
-
30
- Open `http://localhost:3000` — your blog is live.
31
-
32
- ## Documentation
33
-
34
- See the [full documentation](https://github.com/jiwonme/noxion) for Notion setup, configuration, deployment guides, and more.
35
-
36
- ## License
37
-
38
- MIT