morpha-studio-sdk 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,81 @@
1
+ {
2
+ "name": "morpha-studio-sdk",
3
+ "version": "0.1.0",
4
+ "description": "Agentic video editor client — build, caption & render short-form video in code. Frames + MP4 via headless Chrome, no ffmpeg. The Morpha SDK.",
5
+ "keywords": [
6
+ "video",
7
+ "video-editor",
8
+ "video-editing",
9
+ "agentic",
10
+ "ai-agent",
11
+ "agent",
12
+ "mcp",
13
+ "llm",
14
+ "captions",
15
+ "auto-caption",
16
+ "mp4",
17
+ "render",
18
+ "video-rendering",
19
+ "thumbnail",
20
+ "poster",
21
+ "ffmpeg",
22
+ "remotion",
23
+ "headless-chrome",
24
+ "playwright",
25
+ "short-form",
26
+ "reels",
27
+ "tiktok",
28
+ "shorts",
29
+ "sdk",
30
+ "cli",
31
+ "typescript",
32
+ "morpha"
33
+ ],
34
+ "type": "module",
35
+ "license": "MIT",
36
+ "author": "Morpha Studio (https://morphastudio.ai)",
37
+ "homepage": "https://morphastudio.ai",
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "git+https://github.com/morphastudio/morpha-agentic-video-editor-client.git"
41
+ },
42
+ "bugs": "https://github.com/morphastudio/morpha-agentic-video-editor-client/issues",
43
+ "engines": {
44
+ "node": ">=20"
45
+ },
46
+ "main": "./dist/index.cjs",
47
+ "module": "./dist/index.js",
48
+ "types": "./dist/index.d.ts",
49
+ "exports": {
50
+ ".": {
51
+ "types": "./dist/index.d.ts",
52
+ "import": "./dist/index.js",
53
+ "require": "./dist/index.cjs"
54
+ }
55
+ },
56
+ "files": [
57
+ "dist",
58
+ "README.md",
59
+ "LICENSE"
60
+ ],
61
+ "scripts": {
62
+ "build": "tsup",
63
+ "prepublishOnly": "tsup"
64
+ },
65
+ "dependencies": {
66
+ "zod": "4.3.6"
67
+ },
68
+ "peerDependencies": {
69
+ "playwright": ">=1.40.0"
70
+ },
71
+ "peerDependenciesMeta": {
72
+ "playwright": {
73
+ "optional": true
74
+ }
75
+ },
76
+ "devDependencies": {
77
+ "playwright": "^1.60.0",
78
+ "tsup": "^8.3.0",
79
+ "typescript": "^5.6.0"
80
+ }
81
+ }