@motion-script/player 0.1.0 → 0.2.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/LICENSE +201 -0
- package/README.md +45 -46
- package/dist/components/layout/scene-panel.d.ts.map +1 -1
- package/dist/motion-script-player.js +14288 -7496
- package/dist/motion-script-player.js.map +1 -1
- package/package.json +24 -22
package/package.json
CHANGED
|
@@ -1,23 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@motion-script/player",
|
|
3
3
|
"description": "Visual editor and preview app for Motion Script projects, with timeline scrubbing, scene inspection, and video export.",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Motion Script",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"publishConfig": {
|
|
9
9
|
"access": "public"
|
|
10
10
|
},
|
|
11
|
-
"scripts": {
|
|
12
|
-
"postinstall": "node ../../scripts/copy-wasm.js",
|
|
13
|
-
"dev": "vite",
|
|
14
|
-
"clean": "rimraf dist .turbo && tsc -b --clean",
|
|
15
|
-
"predev": "node ../../scripts/copy-wasm.js",
|
|
16
|
-
"build": "tsc -b && vite build",
|
|
17
|
-
"build:app": "vite build --config vite.config.app.ts",
|
|
18
|
-
"lint": "eslint .",
|
|
19
|
-
"preview": "vite preview"
|
|
20
|
-
},
|
|
21
11
|
"files": [
|
|
22
12
|
"dist"
|
|
23
13
|
],
|
|
@@ -28,18 +18,19 @@
|
|
|
28
18
|
"types": "./dist/motion-script-player.d.ts",
|
|
29
19
|
"import": "./dist/motion-script-player.js"
|
|
30
20
|
},
|
|
31
|
-
"./style.css": "./dist/motion-script-player.css"
|
|
21
|
+
"./style.css": "./dist/motion-script-player.css",
|
|
22
|
+
"./package.json": "./package.json"
|
|
32
23
|
},
|
|
33
24
|
"peerDependencies": {
|
|
25
|
+
"@motion-script/core": "*",
|
|
26
|
+
"@motion-script/react": "*",
|
|
27
|
+
"@motion-script/web": "*",
|
|
34
28
|
"react": "^19.2.0",
|
|
35
29
|
"react-dom": "^19.2.0"
|
|
36
30
|
},
|
|
37
31
|
"dependencies": {
|
|
38
32
|
"@base-ui/react": "^1.4.1",
|
|
39
33
|
"@fontsource-variable/geist": "^5.2.9",
|
|
40
|
-
"@motion-script/core": "workspace:*",
|
|
41
|
-
"@motion-script/react": "workspace:*",
|
|
42
|
-
"@motion-script/web": "workspace:*",
|
|
43
34
|
"@tailwindcss/forms": "^0.5.11",
|
|
44
35
|
"@tailwindcss/typography": "^0.5.19",
|
|
45
36
|
"class-variance-authority": "^0.7.1",
|
|
@@ -57,20 +48,31 @@
|
|
|
57
48
|
},
|
|
58
49
|
"devDependencies": {
|
|
59
50
|
"@eslint/js": "^9.39.1",
|
|
51
|
+
"@motion-script/core": "*",
|
|
52
|
+
"@motion-script/react": "*",
|
|
53
|
+
"@motion-script/web": "*",
|
|
60
54
|
"@tailwindcss/vite": "^4.3.0",
|
|
61
|
-
"@types/node": "
|
|
55
|
+
"@types/node": "^25.6.2",
|
|
62
56
|
"@types/react": "^19.2.0",
|
|
63
57
|
"@types/react-dom": "^19.2.0",
|
|
64
|
-
"@vitejs/plugin-react": "
|
|
58
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
65
59
|
"eslint": "^9.39.1",
|
|
66
60
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
67
61
|
"eslint-plugin-react-refresh": "^0.4.24",
|
|
68
62
|
"globals": "^16.5.0",
|
|
69
|
-
"react": "
|
|
70
|
-
"react-dom": "
|
|
71
|
-
"typescript": "
|
|
63
|
+
"react": "^19.2.3",
|
|
64
|
+
"react-dom": "^19.2.3",
|
|
65
|
+
"typescript": "^6.0.3",
|
|
72
66
|
"typescript-eslint": "^8.48.0",
|
|
73
|
-
"vite": "
|
|
74
|
-
"vite-plugin-dts": "
|
|
67
|
+
"vite": "^8.0.11",
|
|
68
|
+
"vite-plugin-dts": "5.0.0"
|
|
69
|
+
},
|
|
70
|
+
"scripts": {
|
|
71
|
+
"dev": "vite",
|
|
72
|
+
"clean": "rimraf dist .turbo && tsc -b --clean",
|
|
73
|
+
"build": "tsc -b && vite build",
|
|
74
|
+
"build:app": "vite build --config vite.config.app.ts",
|
|
75
|
+
"lint": "eslint .",
|
|
76
|
+
"preview": "vite preview"
|
|
75
77
|
}
|
|
76
78
|
}
|