create-avalon 0.1.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 (3) hide show
  1. package/README.md +59 -0
  2. package/dist/cli.js +1407 -0
  3. package/package.json +29 -0
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "create-avalon",
3
+ "version": "0.1.0",
4
+ "description": "Scaffold a new Avalon project with multi-framework islands architecture",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/useAvalon/Avalon.git",
10
+ "directory": "packages/create-avalon"
11
+ },
12
+ "homepage": "https://useavalon.dev",
13
+ "keywords": ["avalon", "create", "scaffold", "cli", "islands", "vite"],
14
+ "bin": {
15
+ "create-avalon": "dist/cli.js"
16
+ },
17
+ "files": ["dist", "README.md"],
18
+ "scripts": {
19
+ "build": "bun build src/cli.ts --outdir dist --target node --format esm",
20
+ "prepublishOnly": "bun run build"
21
+ },
22
+ "dependencies": {
23
+ "@clack/prompts": "^0.10.0"
24
+ },
25
+ "devDependencies": {
26
+ "fast-check": "^4.6.0",
27
+ "vitest": "^4.1.0"
28
+ }
29
+ }