@motion-script/vite-plugin 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/README.md ADDED
@@ -0,0 +1,60 @@
1
+ # @motion-script/vite-plugin
2
+
3
+ Vite plugin for [Motion Script](https://motionscript.dev) projects. It runs a
4
+ preview app around your scene during development and produces a self-contained
5
+ `dist/` when you build.
6
+
7
+ ```ts
8
+ // vite.config.ts
9
+ import { defineConfig } from 'vite';
10
+ import motionScript from '@motion-script/vite-plugin';
11
+
12
+ export default defineConfig({
13
+ plugins: [motionScript()],
14
+ });
15
+ ```
16
+
17
+ ## What it does
18
+
19
+ - Resolves your project's entry script (`src/index.ts`, `src/main.tsx`, etc.,
20
+ or an explicit `entry` option) and project file (`src/project.ts`) and wires
21
+ them into the bundled preview app.
22
+ - Serves the preview app and its static assets in dev, including
23
+ `canvaskit.wasm` from `@motion-script/canvaskit`, and watches your `public/`
24
+ folder so the asset manifest stays current.
25
+ - Emits `canvaskit.wasm` and the preview app's default assets into the build
26
+ output so production builds work without extra setup.
27
+
28
+ ## Options
29
+
30
+ ```ts
31
+ motionScript({
32
+ // Explicitly point at the entry file instead of relying on auto-detection.
33
+ entry: 'src/index.tsx',
34
+ });
35
+ ```
36
+
37
+ ## Usage
38
+
39
+ ```bash
40
+ npm install @motion-script/vite-plugin
41
+ ```
42
+
43
+ For a guided setup, scaffold a project instead with:
44
+
45
+ ```bash
46
+ npm create motion-script@latest
47
+ ```
48
+
49
+ See the [docs](https://motionscript.dev/docs) for the full feature set and API
50
+ reference.
51
+
52
+ ## Development
53
+
54
+ From the monorepo root:
55
+
56
+ ```bash
57
+ pnpm --filter @motion-script/vite-plugin build
58
+ pnpm --filter @motion-script/vite-plugin dev
59
+ ```
60
+
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Public entry point for `@motion-script/vite-plugin`.
3
+ *
4
+ * Kept as a thin barrel so the package's export surface stays stable and
5
+ * minimal — the actual plugin implementation lives in `src/plugin.ts`.
6
+ */
7
+ export { default, type MotionScriptOptions } from './src/plugin';
package/dist/index.js ADDED
@@ -0,0 +1,261 @@
1
+ import e from "node:path";
2
+ import t from "node:fs";
3
+ import { fileURLToPath as n } from "node:url";
4
+ import { createRequire as r } from "node:module";
5
+ import i from "@vitejs/plugin-react";
6
+ import { openSync as a } from "fontkit";
7
+ import { imageSize as o } from "image-size";
8
+ import { parseFile as s } from "music-metadata";
9
+ //#region src/asset-manifest.ts
10
+ var c = new Set([
11
+ ".png",
12
+ ".jpg",
13
+ ".jpeg",
14
+ ".gif",
15
+ ".webp",
16
+ ".bmp",
17
+ ".svg",
18
+ ".avif"
19
+ ]), l = new Set([
20
+ ".mp4",
21
+ ".webm",
22
+ ".mov",
23
+ ".mkv",
24
+ ".m4v"
25
+ ]), u = new Set([
26
+ ".mp3",
27
+ ".wav",
28
+ ".ogg",
29
+ ".flac",
30
+ ".aac",
31
+ ".m4a",
32
+ ".opus"
33
+ ]), d = new Set([
34
+ ".ttf",
35
+ ".otf",
36
+ ".woff",
37
+ ".woff2"
38
+ ]);
39
+ function f(e) {
40
+ let t = e.toLowerCase();
41
+ return c.has(t) ? "image" : l.has(t) ? "video" : u.has(t) ? "audio" : d.has(t) ? "font" : null;
42
+ }
43
+ function p() {
44
+ return {
45
+ image: {},
46
+ video: {},
47
+ audio: {},
48
+ font: {}
49
+ };
50
+ }
51
+ function m(n, r = n) {
52
+ let i = [];
53
+ for (let a of t.readdirSync(n, { withFileTypes: !0 })) {
54
+ let t = e.join(n, a.name);
55
+ a.isDirectory() ? i.push(...m(t, r)) : a.isFile() && i.push(t);
56
+ }
57
+ return i;
58
+ }
59
+ async function h(e, n, r) {
60
+ try {
61
+ let { width: i = 0, height: a = 0 } = o(t.readFileSync(e));
62
+ return {
63
+ src: n,
64
+ sizeBytes: r,
65
+ width: i,
66
+ height: a
67
+ };
68
+ } catch {
69
+ return {
70
+ src: n,
71
+ sizeBytes: r,
72
+ width: 0,
73
+ height: 0
74
+ };
75
+ }
76
+ }
77
+ async function g(e, t, n) {
78
+ try {
79
+ let r = await s(e, { duration: !0 }), i = r.format.trackInfo.find((e) => e.video)?.video;
80
+ return {
81
+ src: t,
82
+ sizeBytes: n,
83
+ duration: r.format.duration ?? 0,
84
+ width: i?.displayWidth ?? i?.pixelWidth ?? 0,
85
+ height: i?.displayHeight ?? i?.pixelHeight ?? 0
86
+ };
87
+ } catch {
88
+ return {
89
+ src: t,
90
+ sizeBytes: n,
91
+ duration: 0,
92
+ width: 0,
93
+ height: 0
94
+ };
95
+ }
96
+ }
97
+ async function _(e, t, n) {
98
+ try {
99
+ return {
100
+ src: t,
101
+ sizeBytes: n,
102
+ duration: (await s(e, { duration: !0 })).format.duration ?? 0
103
+ };
104
+ } catch {
105
+ return {
106
+ src: t,
107
+ sizeBytes: n,
108
+ duration: 0
109
+ };
110
+ }
111
+ }
112
+ function v(t, n, r) {
113
+ try {
114
+ let i = a(t), o = i.name?.records?.preferredFamily, s = (o && Object.values(o)[0]) ?? i.familyName ?? e.parse(t).name, c = i["OS/2"]?.usWeightClass ?? 400;
115
+ return {
116
+ key: `${s}@${c}${i["OS/2"]?.fsSelection?.italic ?? !1 ? "i" : ""}`,
117
+ meta: {
118
+ fontFamily: s,
119
+ fontWeight: c,
120
+ src: n,
121
+ sizeBytes: r
122
+ }
123
+ };
124
+ } catch {
125
+ let i = e.parse(t).name;
126
+ return {
127
+ key: `${i}@400`,
128
+ meta: {
129
+ fontFamily: i,
130
+ fontWeight: 400,
131
+ src: n,
132
+ sizeBytes: r
133
+ }
134
+ };
135
+ }
136
+ }
137
+ async function y(n, r, i) {
138
+ if (!t.existsSync(r)) return;
139
+ let a = m(r);
140
+ await Promise.all(a.map(async (a) => {
141
+ let o = f(e.extname(a));
142
+ if (!o) return;
143
+ let s = `${i}${e.relative(r, a).split(e.sep).join("/")}`, c = e.basename(a), l = t.statSync(a).size;
144
+ if (o === "image") n.image[c] = await h(a, s, l);
145
+ else if (o === "video") n.video[c] = await g(a, s, l);
146
+ else if (o === "audio") n.audio[c] = await _(a, s, l);
147
+ else if (o === "font") {
148
+ let { key: e, meta: t } = v(a, s, l);
149
+ n.font[e] = t;
150
+ }
151
+ }));
152
+ }
153
+ async function b(e, t = []) {
154
+ let n = p();
155
+ for (let e of t) await y(n, e, "/");
156
+ return await y(n, e, "./"), n;
157
+ }
158
+ //#endregion
159
+ //#region src/plugin.ts
160
+ var x = e.dirname(n(import.meta.url)), S = [
161
+ "react",
162
+ "react-dom",
163
+ "react/jsx-runtime",
164
+ "react/jsx-dev-runtime"
165
+ ], C = "~asset-manifest", w = "\0~asset-manifest", T = e.resolve(x, "plugin-app", "public");
166
+ function E() {
167
+ let n = r(import.meta.url);
168
+ try {
169
+ let r = e.join(e.dirname(n.resolve("@motion-script/canvaskit/package.json")), "canvaskit.wasm");
170
+ return t.existsSync(r) ? r : null;
171
+ } catch {
172
+ return null;
173
+ }
174
+ }
175
+ function D(n) {
176
+ let r = null;
177
+ return [i(), {
178
+ name: "vite-plugin-motion-script",
179
+ resolveId(e) {
180
+ return e === C ? w : null;
181
+ },
182
+ async load(t) {
183
+ if (t !== w) return null;
184
+ let n = await b(e.resolve(process.cwd(), "public"), [T]);
185
+ return `export default ${JSON.stringify(n)};`;
186
+ },
187
+ configureServer(n) {
188
+ let r = process.cwd(), i = e.resolve(x, "plugin-app"), a = e.resolve(r, "public");
189
+ t.existsSync(a) && n.watcher.add(a);
190
+ let o = () => {
191
+ let e = n.moduleGraph.getModuleById(w);
192
+ e && (n.moduleGraph.invalidateModule(e), n.ws.send({ type: "full-reload" }));
193
+ }, s = (e) => {
194
+ e.startsWith(a) && o();
195
+ };
196
+ n.watcher.on("add", s), n.watcher.on("change", s), n.watcher.on("unlink", s);
197
+ let c = E();
198
+ if (c) {
199
+ let e = c;
200
+ n.middlewares.use("/canvaskit.wasm", (n, r) => {
201
+ r.setHeader("Content-Type", "application/wasm"), t.createReadStream(e).pipe(r);
202
+ });
203
+ }
204
+ let l = [e.resolve(i, "public"), e.resolve(r, "public")];
205
+ for (let r of l) t.existsSync(r) && n.middlewares.use((n, i, a) => {
206
+ let o = n.url ?? "/", s = e.join(r, o.split("?")[0]);
207
+ t.existsSync(s) && t.statSync(s).isFile() ? i.end(t.readFileSync(s)) : a();
208
+ });
209
+ },
210
+ config(r) {
211
+ let i = process.cwd(), a = e.resolve(x, "plugin-app"), o = n?.entry ?? [
212
+ "src/index.ts",
213
+ "src/index.tsx",
214
+ "src/index.js",
215
+ "src/index.jsx",
216
+ "src/main.ts",
217
+ "src/main.tsx",
218
+ "src/main.js",
219
+ "src/main.jsx"
220
+ ].find((n) => t.existsSync(e.resolve(i, n))), s = ["src/project.ts", "src/project.js"].find((n) => t.existsSync(e.resolve(i, n))), c = e.resolve(x, "..", "node_modules"), l = e.resolve(x, "..", "..", "player", "dist"), u = Object.fromEntries(S.map((t) => [t, e.resolve(c, t)]));
221
+ return {
222
+ root: a,
223
+ envDir: i,
224
+ publicDir: !1,
225
+ server: { fs: { allow: [
226
+ i,
227
+ a,
228
+ c,
229
+ l
230
+ ] } },
231
+ resolve: { alias: {
232
+ ...u,
233
+ "@motion-script/player/style.css": e.resolve(l, "motion-script-player.css"),
234
+ "@motion-script/player": e.resolve(l, "motion-script-player.js"),
235
+ "~user-script": o ? e.resolve(i, o) : e.resolve(a, "src/empty-fallback.js"),
236
+ "~user-project": s ? e.resolve(i, s) : e.resolve(a, "src/empty-project.ts")
237
+ } },
238
+ optimizeDeps: { include: ["@motion-script/canvaskit"] },
239
+ build: {
240
+ outDir: e.resolve(i, "dist"),
241
+ emptyOutDir: !0
242
+ }
243
+ };
244
+ },
245
+ configResolved(e) {
246
+ r = e.build.outDir;
247
+ },
248
+ closeBundle() {
249
+ if (!r) return;
250
+ t.mkdirSync(r, { recursive: !0 });
251
+ let n = E();
252
+ n && t.copyFileSync(n, e.join(r, "canvaskit.wasm")), t.existsSync(T) && t.cpSync(T, r, {
253
+ recursive: !0,
254
+ force: !1,
255
+ errorOnExist: !1
256
+ });
257
+ }
258
+ }];
259
+ }
260
+ //#endregion
261
+ export { D as default };
@@ -0,0 +1,75 @@
1
+ # React + TypeScript + Vite
2
+
3
+ This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
4
+
5
+ Currently, two official plugins are available:
6
+
7
+ - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Oxc](https://oxc.rs)
8
+ - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/)
9
+
10
+ ## React Compiler
11
+
12
+ The React Compiler is enabled on this template. See [this documentation](https://react.dev/learn/react-compiler) for more information.
13
+
14
+ Note: This will impact Vite dev & build performances.
15
+
16
+ ## Expanding the ESLint configuration
17
+
18
+ If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:
19
+
20
+ ```js
21
+ export default defineConfig([
22
+ globalIgnores(['dist']),
23
+ {
24
+ files: ['**/*.{ts,tsx}'],
25
+ extends: [
26
+ // Other configs...
27
+
28
+ // Remove tseslint.configs.recommended and replace with this
29
+ tseslint.configs.recommendedTypeChecked,
30
+ // Alternatively, use this for stricter rules
31
+ tseslint.configs.strictTypeChecked,
32
+ // Optionally, add this for stylistic rules
33
+ tseslint.configs.stylisticTypeChecked,
34
+
35
+ // Other configs...
36
+ ],
37
+ languageOptions: {
38
+ parserOptions: {
39
+ project: ['./tsconfig.node.json', './tsconfig.app.json'],
40
+ tsconfigRootDir: import.meta.dirname,
41
+ },
42
+ // other options...
43
+ },
44
+ },
45
+ ])
46
+ ```
47
+
48
+ You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:
49
+
50
+ ```js
51
+ // eslint.config.js
52
+ import reactX from 'eslint-plugin-react-x'
53
+ import reactDom from 'eslint-plugin-react-dom'
54
+
55
+ export default defineConfig([
56
+ globalIgnores(['dist']),
57
+ {
58
+ files: ['**/*.{ts,tsx}'],
59
+ extends: [
60
+ // Other configs...
61
+ // Enable lint rules for React
62
+ reactX.configs['recommended-typescript'],
63
+ // Enable lint rules for React DOM
64
+ reactDom.configs.recommended,
65
+ ],
66
+ languageOptions: {
67
+ parserOptions: {
68
+ project: ['./tsconfig.node.json', './tsconfig.app.json'],
69
+ tsconfigRootDir: import.meta.dirname,
70
+ },
71
+ // other options...
72
+ },
73
+ },
74
+ ])
75
+ ```
@@ -0,0 +1,22 @@
1
+ import js from '@eslint/js'
2
+ import globals from 'globals'
3
+ import reactHooks from 'eslint-plugin-react-hooks'
4
+ import reactRefresh from 'eslint-plugin-react-refresh'
5
+ import tseslint from 'typescript-eslint'
6
+ import { defineConfig, globalIgnores } from 'eslint/config'
7
+
8
+ export default defineConfig([
9
+ globalIgnores(['dist']),
10
+ {
11
+ files: ['**/*.{ts,tsx}'],
12
+ extends: [
13
+ js.configs.recommended,
14
+ tseslint.configs.recommended,
15
+ reactHooks.configs.flat.recommended,
16
+ reactRefresh.configs.vite,
17
+ ],
18
+ languageOptions: {
19
+ globals: globals.browser,
20
+ },
21
+ },
22
+ ])
@@ -0,0 +1,16 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="UTF-8" />
6
+ <link rel="icon" type="image/x-icon" href="/favicon.ico" />
7
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
8
+ <title>Motion Script</title>
9
+ </head>
10
+
11
+ <body>
12
+ <div id="root"></div>
13
+ <script type="module" src="/src/main.tsx"></script>
14
+ </body>
15
+
16
+ </html>
@@ -0,0 +1,12 @@
1
+ import config from '~user-project'
2
+ import assets from '~asset-manifest'
3
+ import { PlayerApp } from '@motion-script/player';
4
+ import '@motion-script/player/style.css';
5
+
6
+
7
+ function App() {
8
+
9
+ return <PlayerApp config={config} wasmUrl="/canvaskit.wasm" assets={assets} />
10
+ }
11
+
12
+ export default App
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="35.93" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 228"><path fill="#00D8FF" d="M210.483 73.824a171.49 171.49 0 0 0-8.24-2.597c.465-1.9.893-3.777 1.273-5.621c6.238-30.281 2.16-54.676-11.769-62.708c-13.355-7.7-35.196.329-57.254 19.526a171.23 171.23 0 0 0-6.375 5.848a155.866 155.866 0 0 0-4.241-3.917C100.759 3.829 77.587-4.822 63.673 3.233C50.33 10.957 46.379 33.89 51.995 62.588a170.974 170.974 0 0 0 1.892 8.48c-3.28.932-6.445 1.924-9.474 2.98C17.309 83.498 0 98.307 0 113.668c0 15.865 18.582 31.778 46.812 41.427a145.52 145.52 0 0 0 6.921 2.165a167.467 167.467 0 0 0-2.01 9.138c-5.354 28.2-1.173 50.591 12.134 58.266c13.744 7.926 36.812-.22 59.273-19.855a145.567 145.567 0 0 0 5.342-4.923a168.064 168.064 0 0 0 6.92 6.314c21.758 18.722 43.246 26.282 56.54 18.586c13.731-7.949 18.194-32.003 12.4-61.268a145.016 145.016 0 0 0-1.535-6.842c1.62-.48 3.21-.974 4.76-1.488c29.348-9.723 48.443-25.443 48.443-41.52c0-15.417-17.868-30.326-45.517-39.844Zm-6.365 70.984c-1.4.463-2.836.91-4.3 1.345c-3.24-10.257-7.612-21.163-12.963-32.432c5.106-11 9.31-21.767 12.459-31.957c2.619.758 5.16 1.557 7.61 2.4c23.69 8.156 38.14 20.213 38.14 29.504c0 9.896-15.606 22.743-40.946 31.14Zm-10.514 20.834c2.562 12.94 2.927 24.64 1.23 33.787c-1.524 8.219-4.59 13.698-8.382 15.893c-8.067 4.67-25.32-1.4-43.927-17.412a156.726 156.726 0 0 1-6.437-5.87c7.214-7.889 14.423-17.06 21.459-27.246c12.376-1.098 24.068-2.894 34.671-5.345a134.17 134.17 0 0 1 1.386 6.193ZM87.276 214.515c-7.882 2.783-14.16 2.863-17.955.675c-8.075-4.657-11.432-22.636-6.853-46.752a156.923 156.923 0 0 1 1.869-8.499c10.486 2.32 22.093 3.988 34.498 4.994c7.084 9.967 14.501 19.128 21.976 27.15a134.668 134.668 0 0 1-4.877 4.492c-9.933 8.682-19.886 14.842-28.658 17.94ZM50.35 144.747c-12.483-4.267-22.792-9.812-29.858-15.863c-6.35-5.437-9.555-10.836-9.555-15.216c0-9.322 13.897-21.212 37.076-29.293c2.813-.98 5.757-1.905 8.812-2.773c3.204 10.42 7.406 21.315 12.477 32.332c-5.137 11.18-9.399 22.249-12.634 32.792a134.718 134.718 0 0 1-6.318-1.979Zm12.378-84.26c-4.811-24.587-1.616-43.134 6.425-47.789c8.564-4.958 27.502 2.111 47.463 19.835a144.318 144.318 0 0 1 3.841 3.545c-7.438 7.987-14.787 17.08-21.808 26.988c-12.04 1.116-23.565 2.908-34.161 5.309a160.342 160.342 0 0 1-1.76-7.887Zm110.427 27.268a347.8 347.8 0 0 0-7.785-12.803c8.168 1.033 15.994 2.404 23.343 4.08c-2.206 7.072-4.956 14.465-8.193 22.045a381.151 381.151 0 0 0-7.365-13.322Zm-45.032-43.861c5.044 5.465 10.096 11.566 15.065 18.186a322.04 322.04 0 0 0-30.257-.006c4.974-6.559 10.069-12.652 15.192-18.18ZM82.802 87.83a323.167 323.167 0 0 0-7.227 13.238c-3.184-7.553-5.909-14.98-8.134-22.152c7.304-1.634 15.093-2.97 23.209-3.984a321.524 321.524 0 0 0-7.848 12.897Zm8.081 65.352c-8.385-.936-16.291-2.203-23.593-3.793c2.26-7.3 5.045-14.885 8.298-22.6a321.187 321.187 0 0 0 7.257 13.246c2.594 4.48 5.28 8.868 8.038 13.147Zm37.542 31.03c-5.184-5.592-10.354-11.779-15.403-18.433c4.902.192 9.899.29 14.978.29c5.218 0 10.376-.117 15.453-.343c-4.985 6.774-10.018 12.97-15.028 18.486Zm52.198-57.817c3.422 7.8 6.306 15.345 8.596 22.52c-7.422 1.694-15.436 3.058-23.88 4.071a382.417 382.417 0 0 0 7.859-13.026a347.403 347.403 0 0 0 7.425-13.565Zm-16.898 8.101a358.557 358.557 0 0 1-12.281 19.815a329.4 329.4 0 0 1-23.444.823c-7.967 0-15.716-.248-23.178-.732a310.202 310.202 0 0 1-12.513-19.846h.001a307.41 307.41 0 0 1-10.923-20.627a310.278 310.278 0 0 1 10.89-20.637l-.001.001a307.318 307.318 0 0 1 12.413-19.761c7.613-.576 15.42-.876 23.31-.876H128c7.926 0 15.743.303 23.354.883a329.357 329.357 0 0 1 12.335 19.695a358.489 358.489 0 0 1 11.036 20.54a329.472 329.472 0 0 1-11 20.722Zm22.56-122.124c8.572 4.944 11.906 24.881 6.52 51.026c-.344 1.668-.73 3.367-1.15 5.09c-10.622-2.452-22.155-4.275-34.23-5.408c-7.034-10.017-14.323-19.124-21.64-27.008a160.789 160.789 0 0 1 5.888-5.4c18.9-16.447 36.564-22.941 44.612-18.3ZM128 90.808c12.625 0 22.86 10.235 22.86 22.86s-10.235 22.86-22.86 22.86s-22.86-10.235-22.86-22.86s10.235-22.86 22.86-22.86Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="77" height="47" fill="none" aria-labelledby="vite-logo-title" viewBox="0 0 77 47"><title id="vite-logo-title">Vite</title><style>.parenthesis{fill:#000}@media (prefers-color-scheme:dark){.parenthesis{fill:#fff}}</style><path fill="#9135ff" d="M40.151 45.71c-.663.844-2.02.374-2.02-.699V34.708a2.26 2.26 0 0 0-2.262-2.262H24.493c-.92 0-1.457-1.04-.92-1.788l7.479-10.471c1.07-1.498 0-3.578-1.842-3.578H15.443c-.92 0-1.456-1.04-.92-1.788l9.696-13.576c.213-.297.556-.474.92-.474h28.894c.92 0 1.456 1.04.92 1.788l-7.48 10.472c-1.07 1.497 0 3.578 1.842 3.578h11.376c.944 0 1.474 1.087.89 1.83L40.153 45.712z"/><mask id="a" width="48" height="47" x="14" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"><path fill="#000" d="M40.047 45.71c-.663.843-2.02.374-2.02-.699V34.708a2.26 2.26 0 0 0-2.262-2.262H24.389c-.92 0-1.457-1.04-.92-1.788l7.479-10.472c1.07-1.497 0-3.578-1.842-3.578H15.34c-.92 0-1.456-1.04-.92-1.788l9.696-13.575c.213-.297.556-.474.92-.474H53.93c.92 0 1.456 1.04.92 1.788L47.37 13.03c-1.07 1.498 0 3.578 1.842 3.578h11.376c.944 0 1.474 1.088.89 1.831L40.049 45.712z"/></mask><g mask="url(#a)"><g filter="url(#b)"><ellipse cx="5.508" cy="14.704" fill="#eee6ff" rx="5.508" ry="14.704" transform="rotate(269.814 20.96 11.29)scale(-1 1)"/></g><g filter="url(#c)"><ellipse cx="10.399" cy="29.851" fill="#eee6ff" rx="10.399" ry="29.851" transform="rotate(89.814 -16.902 -8.275)scale(1 -1)"/></g><g filter="url(#d)"><ellipse cx="5.508" cy="30.487" fill="#8900ff" rx="5.508" ry="30.487" transform="rotate(89.814 -19.197 -7.127)scale(1 -1)"/></g><g filter="url(#e)"><ellipse cx="5.508" cy="30.599" fill="#8900ff" rx="5.508" ry="30.599" transform="rotate(89.814 -25.928 4.177)scale(1 -1)"/></g><g filter="url(#f)"><ellipse cx="5.508" cy="30.599" fill="#8900ff" rx="5.508" ry="30.599" transform="rotate(89.814 -25.738 5.52)scale(1 -1)"/></g><g filter="url(#g)"><ellipse cx="14.072" cy="22.078" fill="#eee6ff" rx="14.072" ry="22.078" transform="rotate(93.35 31.245 55.578)scale(-1 1)"/></g><g filter="url(#h)"><ellipse cx="3.47" cy="21.501" fill="#8900ff" rx="3.47" ry="21.501" transform="rotate(89.009 35.419 55.202)scale(-1 1)"/></g><g filter="url(#i)"><ellipse cx="3.47" cy="21.501" fill="#8900ff" rx="3.47" ry="21.501" transform="rotate(89.009 35.419 55.202)scale(-1 1)"/></g><g filter="url(#j)"><ellipse cx="14.592" cy="9.743" fill="#8900ff" rx="4.407" ry="29.108" transform="rotate(39.51 14.592 9.743)"/></g><g filter="url(#k)"><ellipse cx="61.728" cy="-5.321" fill="#8900ff" rx="4.407" ry="29.108" transform="rotate(37.892 61.728 -5.32)"/></g><g filter="url(#l)"><ellipse cx="55.618" cy="7.104" fill="#00c2ff" rx="5.971" ry="9.665" transform="rotate(37.892 55.618 7.104)"/></g><g filter="url(#m)"><ellipse cx="12.326" cy="39.103" fill="#8900ff" rx="4.407" ry="29.108" transform="rotate(37.892 12.326 39.103)"/></g><g filter="url(#n)"><ellipse cx="12.326" cy="39.103" fill="#8900ff" rx="4.407" ry="29.108" transform="rotate(37.892 12.326 39.103)"/></g><g filter="url(#o)"><ellipse cx="49.857" cy="30.678" fill="#8900ff" rx="4.407" ry="29.108" transform="rotate(37.892 49.857 30.678)"/></g><g filter="url(#p)"><ellipse cx="52.623" cy="33.171" fill="#00c2ff" rx="5.971" ry="15.297" transform="rotate(37.892 52.623 33.17)"/></g></g><path d="M6.919 0c-9.198 13.166-9.252 33.575 0 46.789h6.215c-9.25-13.214-9.196-33.623 0-46.789zm62.424 0h-6.215c9.198 13.166 9.252 33.575 0 46.789h6.215c9.25-13.214 9.196-33.623 0-46.789" class="parenthesis"/><defs><filter id="b" width="60.045" height="41.654" x="-5.564" y="16.92" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="7.659"/></filter><filter id="c" width="90.34" height="51.437" x="-40.407" y="-6.762" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="7.659"/></filter><filter id="d" width="79.355" height="29.4" x="-35.435" y="2.801" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="e" width="79.579" height="29.4" x="-30.84" y="20.8" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="f" width="79.579" height="29.4" x="-29.307" y="21.949" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="g" width="74.749" height="58.852" x="29.961" y="-17.13" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="7.659"/></filter><filter id="h" width="61.377" height="25.362" x="37.754" y="3.055" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="i" width="61.377" height="25.362" x="37.754" y="3.055" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="j" width="56.045" height="63.649" x="-13.43" y="-22.082" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="k" width="54.814" height="64.646" x="34.321" y="-37.644" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="l" width="33.541" height="35.313" x="38.847" y="-10.552" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="m" width="54.814" height="64.646" x="-15.081" y="6.78" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="n" width="54.814" height="64.646" x="-15.081" y="6.78" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="o" width="54.814" height="64.646" x="22.45" y="-1.645" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="p" width="39.409" height="43.623" x="32.919" y="11.36" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter></defs></svg>
@@ -0,0 +1,6 @@
1
+ export default {
2
+ name: 'Empty',
3
+ scenes: [],
4
+ fps: 60,
5
+ viewport: { width: 1920, height: 1080 }
6
+ };
@@ -0,0 +1,9 @@
1
+ import { StrictMode } from 'react'
2
+ import { createRoot } from 'react-dom/client'
3
+ import App from './App.tsx'
4
+
5
+ createRoot(document.getElementById('root')!).render(
6
+ <StrictMode>
7
+ <App />
8
+ </StrictMode>,
9
+ )
@@ -0,0 +1,12 @@
1
+
2
+ declare module '~user-project' {
3
+ import type { ProjectConfig } from '@motion-script/player';
4
+ const project: ProjectConfig;
5
+ export default project;
6
+ }
7
+
8
+ declare module '~asset-manifest' {
9
+ import type { AssetManifest } from '@motion-script/player';
10
+ const assets: AssetManifest;
11
+ export default assets;
12
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "compilerOptions": {
3
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
4
+ "target": "es2023",
5
+ "lib": [
6
+ "ES2023",
7
+ "DOM"
8
+ ],
9
+ "module": "esnext",
10
+ "types": [
11
+ "vite/client"
12
+ ],
13
+ "skipLibCheck": true,
14
+ /* Bundler mode */
15
+ "moduleResolution": "bundler",
16
+ "allowImportingTsExtensions": true,
17
+ "verbatimModuleSyntax": true,
18
+ "moduleDetection": "force",
19
+ "noEmit": true,
20
+ "jsx": "react-jsx",
21
+ /* Linting */
22
+ "noUnusedLocals": true,
23
+ "noUnusedParameters": true,
24
+ "erasableSyntaxOnly": true,
25
+ "noFallthroughCasesInSwitch": true
26
+ },
27
+ "include": [
28
+ "src",
29
+ ]
30
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "files": [],
3
+ "references": [
4
+ { "path": "./tsconfig.app.json" },
5
+ { "path": "./tsconfig.node.json" }
6
+ ]
7
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "compilerOptions": {
3
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
4
+ "target": "es2023",
5
+ "lib": ["ES2023"],
6
+ "module": "esnext",
7
+ "types": ["node"],
8
+ "skipLibCheck": true,
9
+
10
+ /* Bundler mode */
11
+ "moduleResolution": "bundler",
12
+ "allowImportingTsExtensions": true,
13
+ "verbatimModuleSyntax": true,
14
+ "moduleDetection": "force",
15
+ "noEmit": true,
16
+
17
+ /* Linting */
18
+ "noUnusedLocals": true,
19
+ "noUnusedParameters": true,
20
+ "erasableSyntaxOnly": true,
21
+ "noFallthroughCasesInSwitch": true
22
+ },
23
+ "include": ["vite.config.ts"]
24
+ }
@@ -0,0 +1,11 @@
1
+ import { defineConfig } from 'vite'
2
+ import react, { reactCompilerPreset } from '@vitejs/plugin-react'
3
+ import babel from '@rolldown/plugin-babel'
4
+
5
+ // https://vite.dev/config/
6
+ export default defineConfig({
7
+ plugins: [
8
+ react(),
9
+ babel({ presets: [reactCompilerPreset()] })
10
+ ],
11
+ })
@@ -0,0 +1,38 @@
1
+ export interface ImageMeta {
2
+ width: number;
3
+ height: number;
4
+ sizeBytes: number;
5
+ src: string;
6
+ }
7
+ export interface VideoMeta {
8
+ width: number;
9
+ height: number;
10
+ duration: number;
11
+ sizeBytes: number;
12
+ src: string;
13
+ }
14
+ export interface AudioMeta {
15
+ duration: number;
16
+ sizeBytes: number;
17
+ src: string;
18
+ }
19
+ export interface FontMeta {
20
+ fontFamily: string;
21
+ fontWeight: number;
22
+ src: string;
23
+ sizeBytes: number;
24
+ }
25
+ export interface AssetManifest {
26
+ image: Record<string, ImageMeta>;
27
+ video: Record<string, VideoMeta>;
28
+ audio: Record<string, AudioMeta>;
29
+ font: Record<string, FontMeta>;
30
+ }
31
+ /**
32
+ * Build an AssetManifest by scanning the user's public folder, plus any built-in
33
+ * default folders (e.g. plugin-app's bundled fonts) scanned first so the user's
34
+ * own assets override them on key collision. Defaults are served from the site
35
+ * root (`/file.ttf`), so their manifest `src` is an absolute path; the user's
36
+ * assets stay relative (`./file.ttf`). Returns an empty manifest if nothing exists.
37
+ */
38
+ export declare function buildAssetManifest(publicDir: string, defaultDirs?: string[]): Promise<AssetManifest>;
@@ -0,0 +1,30 @@
1
+ import { PluginOption } from 'vite';
2
+ /**
3
+ * Options accepted by the {@link motionScript} Vite plugin.
4
+ */
5
+ export interface MotionScriptOptions {
6
+ /** Optional: Explicitly define the entry file for the animation script. */
7
+ entry?: string;
8
+ }
9
+ /**
10
+ * Motion Script Vite plugin.
11
+ *
12
+ * Bootstraps a Motion Script project by running an internal preview app
13
+ * ("plugin-app") with the user's animation script and project config wired in
14
+ * as virtual aliases. It also takes care of everything the preview/build needs
15
+ * that a plain Vite setup wouldn't provide:
16
+ *
17
+ * - Resolves the user's entry script (`~user-script`) and project config
18
+ * (`~user-project`) by convention, or from {@link MotionScriptOptions.entry}.
19
+ * - Serves and ships `canvaskit.wasm` (CanvasKit has no bundler-friendly way
20
+ * to be loaded as an asset, so the plugin locates and copies it manually).
21
+ * - Generates a virtual asset manifest (`~asset-manifest`) describing the
22
+ * user's `public/` directory plus plugin-app's bundled defaults, with HMR
23
+ * invalidation when the user's assets change.
24
+ * - Aliases React to the plugin's own `node_modules` so plugin-app resolves
25
+ * correctly even when the user's project doesn't depend on React directly.
26
+ *
27
+ * Returns a `PluginOption[]` (rather than a single plugin object) because it
28
+ * also needs `@vitejs/plugin-react` to be active for plugin-app's JSX.
29
+ */
30
+ export default function motionScript(options?: MotionScriptOptions): PluginOption[];
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@motion-script/vite-plugin",
3
+ "description": "Vite plugin that bootstraps a Motion Script project: it serves a preview app, resolves the user's scene as the entry point, and ships CanvasKit assets with the build.",
4
+ "license": "Apache-2.0",
5
+ "version": "0.1.0",
6
+ "type": "module",
7
+ "main": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "publishConfig": {
10
+ "access": "public"
11
+ },
12
+ "exports": {
13
+ ".": {
14
+ "import": "./dist/index.js",
15
+ "types": "./dist/index.d.ts"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist"
20
+ ],
21
+ "scripts": {
22
+ "build": "vite build",
23
+ "clean": "rimraf dist .turbo && tsc -b --clean"
24
+ },
25
+ "dependencies": {
26
+ "@vitejs/plugin-react": "^6.0.0",
27
+ "fontkit": "^2.0.4",
28
+ "image-size": "^2.0.2",
29
+ "music-metadata": "^11.8.3",
30
+ "react": "catalog:",
31
+ "react-dom": "catalog:"
32
+ },
33
+ "peerDependencies": {
34
+ "vite": "catalog:"
35
+ },
36
+ "devDependencies": {
37
+ "@types/node": "catalog:",
38
+ "@types/react": "^19.0.0",
39
+ "@types/react-dom": "^19.0.0",
40
+ "typescript": "catalog:",
41
+ "vite": "catalog:",
42
+ "vite-plugin-dts": "catalog:"
43
+ }
44
+ }