onda-engine 0.1.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/package.json ADDED
@@ -0,0 +1,112 @@
1
+ {
2
+ "name": "onda-engine",
3
+ "version": "0.1.0",
4
+ "description": "The source-available motion graphics engine — GPU-native, scene-graph-first, framework-agnostic. One install for the whole engine: React renderer, motion-language components, player, renderer, and the wasm core.",
5
+ "keywords": [
6
+ "onda",
7
+ "motion-graphics",
8
+ "programmatic-video",
9
+ "video",
10
+ "gpu",
11
+ "vello",
12
+ "wasm",
13
+ "scene-graph",
14
+ "remotion-alternative",
15
+ "react",
16
+ "animation"
17
+ ],
18
+ "homepage": "https://onda.video",
19
+ "bugs": "https://github.com/onda-engine/onda-engine/issues",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/onda-engine/onda-engine.git",
23
+ "directory": "packages/umbrella"
24
+ },
25
+ "license": "FSL-1.1-ALv2",
26
+ "author": "Rodrigo Botelho",
27
+ "type": "module",
28
+ "main": "./dist/index.js",
29
+ "types": "./dist/index.d.ts",
30
+ "exports": {
31
+ ".": {
32
+ "types": "./dist/index.d.ts",
33
+ "default": "./dist/index.js"
34
+ },
35
+ "./react": {
36
+ "types": "./dist/react.d.ts",
37
+ "default": "./dist/react.js"
38
+ },
39
+ "./components": {
40
+ "types": "./dist/components.d.ts",
41
+ "default": "./dist/components.js"
42
+ },
43
+ "./components/manifest": {
44
+ "types": "./dist/components-manifest.d.ts",
45
+ "default": "./dist/components-manifest.js"
46
+ },
47
+ "./player": {
48
+ "types": "./dist/player.d.ts",
49
+ "default": "./dist/player.js"
50
+ },
51
+ "./render": {
52
+ "types": "./dist/render.d.ts",
53
+ "default": "./dist/render.js"
54
+ },
55
+ "./cinema": {
56
+ "types": "./dist/cinema.d.ts",
57
+ "default": "./dist/cinema.js"
58
+ },
59
+ "./wasm": {
60
+ "types": "./dist/wasm/pkg/onda_wasm.d.ts",
61
+ "default": "./dist/wasm/pkg/onda_wasm.js"
62
+ },
63
+ "./wasm/*": "./dist/wasm/*",
64
+ "./wasm-audio": {
65
+ "types": "./dist/wasm-audio/pkg/onda_wasm_audio.d.ts",
66
+ "default": "./dist/wasm-audio/pkg/onda_wasm_audio.js"
67
+ },
68
+ "./wasm-audio/*": "./dist/wasm-audio/*",
69
+ "./wasm-vello": {
70
+ "types": "./dist/wasm-vello/index.d.ts",
71
+ "default": "./dist/wasm-vello/index.js"
72
+ },
73
+ "./wasm-vello/*": "./dist/wasm-vello/*"
74
+ },
75
+ "files": [
76
+ "dist",
77
+ "README.md",
78
+ "LICENSE",
79
+ "LICENSE-APACHE"
80
+ ],
81
+ "dependencies": {
82
+ "flubber": "^0.4.2",
83
+ "react-reconciler": "^0.33.0",
84
+ "zod": "^3.25.76"
85
+ },
86
+ "peerDependencies": {
87
+ "react": "^19.2.0"
88
+ },
89
+ "devDependencies": {
90
+ "@types/flubber": "^0.4.0",
91
+ "@types/node": "^22.10.2",
92
+ "@types/react": "^19.2.0",
93
+ "@types/react-reconciler": "^0.33.0",
94
+ "tsup": "^8.3.5",
95
+ "typescript": "^5.7.2",
96
+ "@onda-engine/player": "0.1.1",
97
+ "@onda-engine/react": "0.1.1",
98
+ "@onda-engine/components": "0.3.0",
99
+ "@onda-engine/render": "0.1.1",
100
+ "@onda-engine/cinema": "0.1.3",
101
+ "@onda-engine/wasm-audio": "0.1.1",
102
+ "@onda-engine/wasm-vello": "0.1.1",
103
+ "@onda-engine/wasm": "0.1.1"
104
+ },
105
+ "publishConfig": {
106
+ "access": "public"
107
+ },
108
+ "scripts": {
109
+ "build": "tsup",
110
+ "clean": "rm -rf dist"
111
+ }
112
+ }