@vibecuting/video-project-core 0.1.5 → 0.1.7
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 +7 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ NPM 地址:
|
|
|
8
8
|
|
|
9
9
|
职责:
|
|
10
10
|
|
|
11
|
-
- 提供 `src/core/*` 下的 demo 组件
|
|
11
|
+
- 提供 `src/base` 下的 Remotion 场景基类和 `src/core/*` 下的 demo 组件
|
|
12
12
|
- `intro`
|
|
13
13
|
- `outro`
|
|
14
14
|
- `scene`
|
|
@@ -18,8 +18,14 @@ NPM 地址:
|
|
|
18
18
|
- `scene/utils`
|
|
19
19
|
- 复用 `@vibecuting/component-project-helper` 的注解和元数据模型
|
|
20
20
|
- 只保留基础场景模板,不再承载本地 `manifest` / `decorators` 协议层
|
|
21
|
+
- 供 `project-templates/video-project` 和主工程中的视频场景模板复用
|
|
21
22
|
|
|
22
23
|
常用命令:
|
|
23
24
|
|
|
24
25
|
- `pnpm typecheck`
|
|
25
26
|
- `pnpm test`
|
|
27
|
+
|
|
28
|
+
发布与安装:
|
|
29
|
+
|
|
30
|
+
- 发布到 npm 时使用 `@vibecuting/video-project-core`
|
|
31
|
+
- 视频模板工程通过 npm 依赖引入,不依赖 workspace 软链接
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibecuting/video-project-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "src/index.ts",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"test": "node ../../../node_modules/vitest/vitest.mjs run"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@vibecuting/component-project-helper": "1.
|
|
20
|
+
"@vibecuting/component-project-helper": "0.1.7",
|
|
21
21
|
"react": "^19.0.0"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|