@ramme-io/create-app 2.0.0-alpha.2 → 2.0.0-alpha.4

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/README.md CHANGED
@@ -2,21 +2,22 @@
2
2
 
3
3
  [![NPM Version](https://img.shields.io/npm/v/@ramme-io/create-app.svg)](https://www.npmjs.com/package/@ramme-io/create-app) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
4
4
 
5
- The easiest way to start a new **Ramme** project.
6
- This CLI tool scaffolds a production-ready React application configured with:
7
- - **@ramme/ui:** Our pre-built component library.
5
+ The easiest way to start a new **Ramme** project — designed for creators, not just developers.
6
+
7
+ This CLI scaffolds a production-ready React application with:
8
+ - **@ramme-io/ui:** Pre-built, accessible components that just work.
8
9
  - **Tailwind CSS:** Fully configured for the Ramme design system.
9
- - **Vite:** For lightning-fast development.
10
- - **TypeScript:** For type-safe code.
10
+ - **Vite:** Lightning-fast development with instant hot-reload.
11
+ - **TypeScript:** Your safety net — catch mistakes before they ship.
11
12
 
12
13
  ## 🚀 Quick Start
13
14
 
14
15
  Get started in seconds. No global installation required.
15
16
 
16
17
  ```bash
17
- npm create @ramme-io/app@latest
18
+ npm create @ramme-io/app@alpha my-app
18
19
  # or
19
- npm init @ramme-io/app@latest
20
+ npx @ramme-io/create-app@alpha my-app
20
21
  ```
21
22
 
22
23
  You will be prompted to name your project.
@@ -62,5 +63,5 @@ This starter kit is an opinionated selection of the best open-source tools avail
62
63
 
63
64
  ## License
64
65
 
65
- Copyright © 2025 Excesspool Limited Liability Company.
66
+ Copyright © 2026 Ramme Framework.
66
67
  This project is licensed under the [MIT License](LICENSE).
package/index.js CHANGED
@@ -6,10 +6,20 @@ import { fileURLToPath } from 'url';
6
6
  const __filename = fileURLToPath(import.meta.url);
7
7
  const __dirname = path.dirname(__filename);
8
8
 
9
+ // Welcome Header
10
+ console.log('\n╔═══════════════════════════════════════╗');
11
+ console.log('║ ║');
12
+ console.log('║ ✨ Welcome to Ramme Framework ✨ ║');
13
+ console.log('║ ║');
14
+ console.log('║ The AI-Native App Builder ║');
15
+ console.log('║ ║');
16
+ console.log('╚═══════════════════════════════════════╝\n');
17
+
9
18
  const projectName = process.argv[2];
10
19
  if (!projectName) {
11
- console.error('Error: Please specify the project directory.');
12
- console.log(' Usage: npx @ramme-io/create-app <project-name>');
20
+ console.error('Error: Please specify the project directory.');
21
+ console.log('\n📖 Usage:');
22
+ console.log(' npm create @ramme-io/app@alpha <project-name>\n');
13
23
  process.exit(1);
14
24
  }
15
25
 
@@ -17,7 +27,7 @@ const templatePath = path.resolve(__dirname, 'template');
17
27
  const destinationPath = path.resolve(process.cwd(), projectName);
18
28
 
19
29
  // THE STABILITY PACT: Hardcoded target versions for the public release
20
- const RELEASE_VERSION = "^1.4.5";
30
+ const RELEASE_VERSION = "^2.0.0-alpha.4";
21
31
 
22
32
  try {
23
33
  console.log(`\n🚀 Creating new Ramme app in: ${destinationPath}`);
@@ -55,13 +65,21 @@ try {
55
65
  fs.renameSync(gitignorePath, path.join(destinationPath, '.gitignore'));
56
66
  }
57
67
 
58
- // 5. ONBOARDING INSTRUCTIONS
59
- console.log(`\n✨ Success! Your Ramme project is ready.`);
60
- console.log(`\nNext steps:`);
61
- console.log(` 1. cd ${projectName}`);
62
- console.log(` 2. pnpm install`);
63
- console.log(` 3. pnpm dev`);
64
- console.log(`\nHappy building! 🛠️\n`);
68
+ // 5. ONBOARDING INSTRUCTIONS — Premium Unboxing Experience
69
+ console.log('\n╔═══════════════════════════════════════╗');
70
+ console.log('║ ║');
71
+ console.log('║ ✨ Your project is ready! ║');
72
+ console.log('║ ║');
73
+ console.log('╚═══════════════════════════════════════╝\n');
74
+
75
+ console.log('📋 What\'s Next? (Copy & Paste)\n');
76
+ console.log(` cd ${projectName}`);
77
+ console.log(' pnpm install');
78
+ console.log(' pnpm run dev\n');
79
+
80
+ console.log('🎨 Happy Creating!\n');
81
+ console.log('📚 Docs: https://ramme.io/docs');
82
+ console.log('� Discord: https://ramme.io/discord\n');
65
83
 
66
84
  } catch (err) {
67
85
  console.error('\n❌ Critical Failure:', err.message);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ramme-io/create-app",
3
- "version": "2.0.0-alpha.2",
3
+ "version": "2.0.0-alpha.4",
4
4
  "description": "The official CLI to create Ramme applications.",
5
5
  "type": "module",
6
6
  "private": false,
package/template/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 Excesspool Limited Liability Company
3
+ Copyright (c) 2026 Ramme Framework
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ramme-starter",
3
3
  "private": true,
4
- "version": "2.0.0-alpha.2",
4
+ "version": "2.0.0-alpha.4",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
@@ -13,8 +13,8 @@
13
13
  "@ai-sdk/google": "^0.0.10",
14
14
  "@google/generative-ai": "^0.24.1",
15
15
  "@radix-ui/react-slot": "^1.2.4",
16
- "@ramme-io/kernel": "^2.0.0-alpha.2",
17
- "@ramme-io/ui": "^2.0.0-alpha.2",
16
+ "@ramme-io/kernel": "^2.0.0-alpha.4",
17
+ "@ramme-io/ui": "^2.0.0-alpha.4",
18
18
  "ag-charts-community": "^13.0.0",
19
19
  "ag-charts-react": "^13.0.0",
20
20
  "ag-grid-community": "^31.3.1",
@@ -31,9 +31,11 @@
31
31
  "react-datepicker": "^7.3.0",
32
32
  "react-dom": "^18.3.1",
33
33
  "react-router-dom": "6.22.3",
34
+ "react-markdown": "^10.1.0",
34
35
  "react-select": "^5.8.0",
35
36
  "react-syntax-highlighter": "^16.1.0",
36
37
  "recharts": "^2.12.7",
38
+ "remark-gfm": "^4.0.1",
37
39
  "tailwind-merge": "^2.5.2",
38
40
  "zod": "^3.23.8",
39
41
  "zustand": "^5.0.0"
@@ -80,9 +80,7 @@ export default defineConfig(() => {
80
80
 
81
81
  optimizeDeps: {
82
82
  include: [
83
- 'recharts',
84
- 'lodash',
85
- 'prop-types',
83
+ 'recharts',
86
84
  'react-syntax-highlighter'
87
85
  ],
88
86
  // Exclude local packages so they hot-reload