create-murasaki 0.0.0

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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +31 -0
  3. package/index.mjs +11 -0
  4. package/package.json +33 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 ichi
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 ADDED
@@ -0,0 +1,31 @@
1
+ # create-murasaki
2
+
3
+ > Scaffolder for [Murasaki](https://github.com/murasakijs/murasaki) apps.
4
+
5
+ ## Usage
6
+
7
+ ```bash
8
+ npm create murasaki@latest my-app
9
+ # or
10
+ pnpm create murasaki@latest my-app
11
+ # or
12
+ yarn create murasaki my-app
13
+ ```
14
+
15
+ ## What it does
16
+
17
+ Scaffolds a new Murasaki desktop app with:
18
+
19
+ - Next.js App Router (configured for Murasaki)
20
+ - `murasaki` runtime + native API hooks
21
+ - TypeScript, Biome (configurable)
22
+ - `npm run dev` opens a native WebView window with HMR
23
+ - `npm run build` produces a signed binary for your platform
24
+
25
+ ## Status
26
+
27
+ 🌱 **Pre-alpha**. The template doesn't actually scaffold anything yet.
28
+
29
+ ## License
30
+
31
+ MIT.
package/index.mjs ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env node
2
+ // create-murasaki — Scaffolder for Murasaki apps.
3
+ // 🌱 Pre-alpha: not implemented yet.
4
+
5
+ console.log(`
6
+ 🟣 Murasaki — desktop framework for Next.js developers
7
+
8
+ create-murasaki is not implemented yet.
9
+ Follow progress at https://github.com/murasakijs/murasaki
10
+ `)
11
+ process.exit(0)
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "create-murasaki",
3
+ "version": "0.0.0",
4
+ "description": "Scaffolder for Murasaki apps. Run with `npm create murasaki@latest`.",
5
+ "keywords": [
6
+ "murasaki",
7
+ "create",
8
+ "scaffold",
9
+ "starter",
10
+ "desktop",
11
+ "nextjs"
12
+ ],
13
+ "homepage": "https://github.com/murasakijs/create-murasaki",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/murasakijs/create-murasaki.git"
17
+ },
18
+ "bugs": {
19
+ "url": "https://github.com/murasakijs/create-murasaki/issues"
20
+ },
21
+ "license": "MIT",
22
+ "author": "ichi",
23
+ "type": "module",
24
+ "bin": {
25
+ "create-murasaki": "./index.mjs"
26
+ },
27
+ "files": [
28
+ "index.mjs",
29
+ "templates",
30
+ "README.md",
31
+ "LICENSE"
32
+ ]
33
+ }