zerostart-cli 0.0.13 → 0.0.15

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.
@@ -241,7 +241,6 @@ add_executable(${config.name} main.cpp)`;
241
241
  if (!fs.existsSync(src))
242
242
  fs.mkdirSync(src);
243
243
  fs.writeFileSync(path.join(src, 'App.tsx'), `
244
- import React from 'react';
245
244
 
246
245
  function App() {
247
246
  return (
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "zerostart": "./out/cli.js"
6
6
  },
7
7
  "description": "Create and deploy a complete project with one command.",
8
- "version": "0.0.13",
8
+ "version": "0.0.15",
9
9
  "engines": {
10
10
  "vscode": "^1.85.0"
11
11
  },
@@ -0,0 +1,31 @@
1
+ # test111
2
+
3
+ ## Description
4
+ A Web App project in React
5
+
6
+ ## Tech Stack
7
+ - Language: React
8
+ - Type: Web App
9
+
10
+ ## Installation
11
+ ```bash
12
+ # Clone the repository
13
+ git clone <repo-url>
14
+ cd test111
15
+
16
+ # Install dependencies
17
+ npm install # or pip install -r requirements.txt / mvn install
18
+ ```
19
+
20
+ ## Usage
21
+ ```bash
22
+ npm start # or python main.py / java -jar target/app.jar
23
+ ```
24
+
25
+ ## Future Scope
26
+ - Add more features
27
+ - Improve UI/UX
28
+ - optimize performance
29
+
30
+
31
+ Project initialized by ZeroStart CLI
@@ -0,0 +1,13 @@
1
+
2
+ <!doctype html>
3
+ <html lang="en">
4
+ <head>
5
+ <meta charset="UTF-8" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>test111</title>
8
+ </head>
9
+ <body>
10
+ <div id="root"></div>
11
+ <script type="module" src="/src/main.tsx"></script>
12
+ </body>
13
+ </html>
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "test111",
3
+ "private": true,
4
+ "version": "0.0.0",
5
+ "type": "module",
6
+ "scripts": {
7
+ "dev": "vite",
8
+ "build": "tsc && vite build",
9
+ "preview": "vite preview"
10
+ },
11
+ "dependencies": {
12
+ "react": "^18.2.0",
13
+ "react-dom": "^18.2.0"
14
+ },
15
+ "devDependencies": {
16
+ "@types/react": "^18.2.43",
17
+ "@types/react-dom": "^18.2.17",
18
+ "@vitejs/plugin-react": "^4.2.1",
19
+ "typescript": "^5.2.2",
20
+ "vite": "^5.0.8"
21
+ }
22
+ }
@@ -0,0 +1,7 @@
1
+ # Roadmap for test111
2
+
3
+ - [ ] Initial Setup
4
+ - [ ] Core Features Implementation
5
+ - [ ] Testing & Debugging
6
+ - [ ] Documentation
7
+ - [ ] Deployment
@@ -0,0 +1,11 @@
1
+
2
+ {
3
+ "compilerOptions": {
4
+ "composite": true,
5
+ "skipLibCheck": true,
6
+ "module": "ESNext",
7
+ "moduleResolution": "bundler",
8
+ "allowSyntheticDefaultImports": true
9
+ },
10
+ "include": ["vite.config.ts"]
11
+ }