@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 +9 -8
- package/index.js +28 -10
- package/package.json +1 -1
- package/template/LICENSE +1 -1
- package/template/package.json +5 -3
- package/template/vite.config.ts +1 -3
package/README.md
CHANGED
|
@@ -2,21 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@ramme-io/create-app) [](https://opensource.org/licenses/MIT)
|
|
4
4
|
|
|
5
|
-
The easiest way to start a new **Ramme** project.
|
|
6
|
-
|
|
7
|
-
|
|
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:**
|
|
10
|
-
- **TypeScript:**
|
|
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@
|
|
18
|
+
npm create @ramme-io/app@alpha my-app
|
|
18
19
|
# or
|
|
19
|
-
|
|
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 ©
|
|
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('
|
|
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 = "^
|
|
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(
|
|
60
|
-
console.log(
|
|
61
|
-
console.log(
|
|
62
|
-
console.log(
|
|
63
|
-
console.log(
|
|
64
|
-
|
|
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
package/template/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
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
|
package/template/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ramme-starter",
|
|
3
3
|
"private": true,
|
|
4
|
-
"version": "2.0.0-alpha.
|
|
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.
|
|
17
|
-
"@ramme-io/ui": "^2.0.0-alpha.
|
|
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"
|