@revideo/create 0.5.11-alpha.1103 → 0.5.11-alpha.1104

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.
@@ -0,0 +1,19 @@
1
+ # Revideo Minimal Starter Template
2
+
3
+ This is a minimal Revideo starter project. It can be bootstrapped using
4
+ `npm init @revideo@latest` and selecting the minimal template.
5
+
6
+ It includes a simple scene with a background video, music and the Revideo logo.
7
+ You can get started by editing the `project.tsx` file in the `src` folder.
8
+
9
+ You can run the Revideo editor using `npm start` and render the final video
10
+ using `npm run render`.
11
+
12
+ If you want to see what's possible with Revideo, check out the other templates
13
+ in the [Revideo Examples repository](https://github.com/redotvideo/examples), or
14
+ the [Revideo documentation](https://docs.re.video).
15
+
16
+ If you want to include your Revideo project in a website, you can use the
17
+ Next.js template. It can be found in the Revideo Examples repository or
18
+ bootstrapped using `npm init @revideo@latest` and selecting the Next.js
19
+ template.
@@ -3,9 +3,7 @@
3
3
  "private": true,
4
4
  "version": "0.0.0",
5
5
  "scripts": {
6
- "start": "vite",
7
- "serve": "vite",
8
- "build": "tsc && vite build",
6
+ "start": "revideo editor --projectFile ./src/project.tsx",
9
7
  "render": "tsc && node dist/render.js"
10
8
  },
11
9
  "dependencies": {
@@ -5,24 +5,22 @@ project bootstrapped with `npm init @revideo@latest`.
5
5
 
6
6
  ## Getting Started
7
7
 
8
- First, install the dependencies both in the next/ and the revideo/ directories:
8
+ First, install the dependencies:
9
9
 
10
10
  ```bash
11
- (cd next && npm install) &&
12
- (cd revideo && npm install)
11
+ npm install
13
12
  ```
14
13
 
15
- Then, serve the Revideo project using the CLI:
14
+ This project comes with the following commands:
16
15
 
17
- ```bash
18
- (cd revideo && npx revideo serve)
19
- ```
20
-
21
- Now you can start your NextJS app using the following command:
16
+ - `npm run dev` - Start the Next.js development server
17
+ - `npm run build` - Build the Next.js project
18
+ - `npm run start` - Start the Next.js production server
19
+ - `npm run revideo:serve` - Start the Revideo render api (required for the render button on the Next.js page to work)
20
+ - `npm run revideo:editor` - Start the Revideo editor, which you can use to inspect and preview your Revideo code
22
21
 
23
- ```bash
24
- (cd next && npm run dev)
25
- ```
22
+ ## Building with Revideo
26
23
 
27
- Open [http://localhost:3000](http://localhost:3000) with your browser to see the
28
- result. Happy developing!
24
+ If you want to see what's possible with Revideo, check out the other templates
25
+ in the [Revideo Examples repository](https://github.com/redotvideo/examples), or
26
+ the [Revideo documentation](https://docs.re.video).
@@ -7,8 +7,8 @@
7
7
  "build": "next build",
8
8
  "start": "next start",
9
9
  "lint": "next lint",
10
- "revideo": "revideo serve --projectFile ./revideo/project.ts",
11
- "editor": "revideo editor --projectFile ./revideo/project.ts"
10
+ "revideo:serve": "revideo serve --projectFile ./revideo/project.ts",
11
+ "revideo:editor": "revideo editor --projectFile ./revideo/project.ts"
12
12
  },
13
13
  "dependencies": {
14
14
  "@radix-ui/react-navigation-menu": "^1.1.4",
@@ -26,6 +26,7 @@
26
26
  },
27
27
  "devDependencies": {
28
28
  "@revideo/cli": "^0.6.0",
29
+ "@revideo/ui": "^0.6.0",
29
30
  "@types/node": "^20",
30
31
  "@types/react": "^18",
31
32
  "@types/react-dom": "^18",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revideo/create",
3
- "version": "0.5.11-alpha.1103+c4c8247b",
3
+ "version": "0.5.11-alpha.1104+bde9632d",
4
4
  "description": "Quickly scaffold revideo projects",
5
5
  "main": "index.js",
6
6
  "author": "revideo",
@@ -20,17 +20,17 @@
20
20
  "url": "https://github.com/havenhq/revideo.git"
21
21
  },
22
22
  "devDependencies": {
23
- "@revideo/2d": "^0.5.11-alpha.1103+c4c8247b",
24
- "@revideo/core": "^0.5.11-alpha.1103+c4c8247b",
25
- "@revideo/ffmpeg": "^0.5.11-alpha.1103+c4c8247b",
26
- "@revideo/renderer": "^0.5.11-alpha.1103+c4c8247b",
27
- "@revideo/ui": "^0.5.11-alpha.1103+c4c8247b",
28
- "@revideo/vite-plugin": "^0.5.11-alpha.1103+c4c8247b"
23
+ "@revideo/2d": "^0.5.11-alpha.1104+bde9632d",
24
+ "@revideo/core": "^0.5.11-alpha.1104+bde9632d",
25
+ "@revideo/ffmpeg": "^0.5.11-alpha.1104+bde9632d",
26
+ "@revideo/renderer": "^0.5.11-alpha.1104+bde9632d",
27
+ "@revideo/ui": "^0.5.11-alpha.1104+bde9632d",
28
+ "@revideo/vite-plugin": "^0.5.11-alpha.1104+bde9632d"
29
29
  },
30
30
  "dependencies": {
31
- "@revideo/telemetry": "^0.5.11-alpha.1103+c4c8247b",
31
+ "@revideo/telemetry": "^0.5.11-alpha.1104+bde9632d",
32
32
  "minimist": "^1.2.8",
33
33
  "prompts": "^2.4.2"
34
34
  },
35
- "gitHead": "c4c8247b6df4285e5f3a9893efe56946a5205f06"
35
+ "gitHead": "bde9632d22c56cf625242c5ea2136a83fd39b952"
36
36
  }