pellicule 0.0.0
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 +19 -0
- package/dist/index.cjs +6 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/package.json +42 -0
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Pellicule
|
|
2
|
+
|
|
3
|
+
> Deterministic video rendering with Vue.
|
|
4
|
+
|
|
5
|
+
Pellicule is a Vue-native engine for generating videos programmatically. It renders Vue components frame-by-frame into production-ready video files.
|
|
6
|
+
|
|
7
|
+
**Coming soon.**
|
|
8
|
+
|
|
9
|
+
## Philosophy
|
|
10
|
+
|
|
11
|
+
- Video is frames, not time
|
|
12
|
+
- Given the same frame number, Pellicule produces the same pixels
|
|
13
|
+
- No timelines. No clocks. Just math.
|
|
14
|
+
|
|
15
|
+
If your UI can be written in Vue, Pellicule can render it into video.
|
|
16
|
+
|
|
17
|
+
## License
|
|
18
|
+
|
|
19
|
+
MIT
|
package/dist/index.cjs
ADDED
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pellicule",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Deterministic video rendering with Vue",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"vue",
|
|
7
|
+
"video",
|
|
8
|
+
"rendering",
|
|
9
|
+
"animation",
|
|
10
|
+
"frames",
|
|
11
|
+
"remotion",
|
|
12
|
+
"programmatic-video"
|
|
13
|
+
],
|
|
14
|
+
"author": "",
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": ""
|
|
19
|
+
},
|
|
20
|
+
"homepage": "",
|
|
21
|
+
"type": "module",
|
|
22
|
+
"main": "./dist/index.cjs",
|
|
23
|
+
"module": "./dist/index.js",
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"exports": {
|
|
26
|
+
".": {
|
|
27
|
+
"import": "./dist/index.js",
|
|
28
|
+
"require": "./dist/index.cjs",
|
|
29
|
+
"types": "./dist/index.d.ts"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist"
|
|
34
|
+
],
|
|
35
|
+
"peerDependencies": {
|
|
36
|
+
"vue": "^3.0.0"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"vue": "^3.4.0",
|
|
40
|
+
"typescript": "^5.0.0"
|
|
41
|
+
}
|
|
42
|
+
}
|